mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Won’t set budget for anything other then withdrawals. #916
This commit is contained in:
@@ -65,8 +65,8 @@ class SetBudget implements ActionInterface
|
||||
return true;
|
||||
}
|
||||
|
||||
if ($journal->transactionType->type === TransactionType::TRANSFER) {
|
||||
Log::debug(sprintf('RuleAction SetBudget could not set budget of journal #%d to "%s" because journal is a transfer.', $journal->id, $search));
|
||||
if ($journal->transactionType->type !== TransactionType::WITHDRAWAL) {
|
||||
Log::debug(sprintf('RuleAction SetBudget could not set budget of journal #%d to "%s" because journal is a %s.', $journal->id, $search, $journal->transactionType->type));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user