mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Update tests, fixes some bugs.
This commit is contained in:
@@ -113,8 +113,8 @@ class JournalTasker implements JournalTaskerInterface
|
||||
|
||||
/** @var Transaction $entry */
|
||||
foreach ($set as $entry) {
|
||||
$sourceBalance = $this->getBalance($entry->id);
|
||||
$destinationBalance = $this->getBalance($entry->destination_id);
|
||||
$sourceBalance = $this->getBalance(intval($entry->id));
|
||||
$destinationBalance = $this->getBalance(intval($entry->destination_id));
|
||||
$budget = $entry->budgets->first();
|
||||
$category = $entry->categories->first();
|
||||
$transaction = [
|
||||
|
Reference in New Issue
Block a user