mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-22 20:16:22 +00:00
Fix budget limit test, and a bug in the other currencies corrector.
This commit is contained in:
@@ -205,7 +205,7 @@ class OtherCurrenciesCorrections extends Command
|
||||
if (null === $transaction->transaction_currency_id) {
|
||||
$transaction->transaction_currency_id = $currency->id;
|
||||
$transaction->save();
|
||||
$this->count++;
|
||||
//$this->count++;
|
||||
}
|
||||
|
||||
// when mismatch in transaction:
|
||||
@@ -214,7 +214,7 @@ class OtherCurrenciesCorrections extends Command
|
||||
$transaction->foreign_amount = $transaction->amount;
|
||||
$transaction->transaction_currency_id = $currency->id;
|
||||
$transaction->save();
|
||||
$this->count++;
|
||||
//$this->count++;
|
||||
}
|
||||
}
|
||||
);
|
||||
|
Reference in New Issue
Block a user