mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-19 08:00:19 +00:00
Merge branch 'develop' into 5.8-dev
# Conflicts: # composer.lock
This commit is contained in:
@@ -126,7 +126,7 @@ class ConvertToDeposit implements ActionInterface
|
||||
|
||||
DB::table('transaction_journals')
|
||||
->where('id', '=', $journal['transaction_journal_id'])
|
||||
->update(['transaction_type_id' => $newType->id]);
|
||||
->update(['transaction_type_id' => $newType->id, 'bill_id' => null]);
|
||||
|
||||
Log::debug('Converted withdrawal to deposit.');
|
||||
|
||||
@@ -168,7 +168,7 @@ class ConvertToDeposit implements ActionInterface
|
||||
|
||||
DB::table('transaction_journals')
|
||||
->where('id', '=', $journal['transaction_journal_id'])
|
||||
->update(['transaction_type_id' => $newType->id]);
|
||||
->update(['transaction_type_id' => $newType->id, 'bill_id' => null]);
|
||||
|
||||
Log::debug('Converted transfer to deposit.');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user