James Cole
2025-02-01 21:14:28 +01:00
parent c5188c503e
commit 5bed081ab9
5 changed files with 5 additions and 0 deletions

View File

@@ -52,6 +52,7 @@ class PiggyBankEventObserver
$event->native_amount = null;
if ($event->piggyBank->transactionCurrency->id !== $userCurrency->id) {
$converter = new ExchangeRateConverter();
$converter->setUserGroup($event->piggyBank->accounts()->first()->user->userGroup);
$converter->setIgnoreSettings(true);
$event->native_amount = $converter->convert($event->piggyBank->transactionCurrency, $userCurrency, today(), $event->amount);
}