mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| declare(strict_types = 1);
 | |
| 
 | |
| namespace FireflyIII\Handlers\Events;
 | |
| 
 | |
| use Auth;
 | |
| use FireflyIII\Events\TransactionJournalStored;
 | |
| use FireflyIII\Models\PiggyBank;
 | |
| use FireflyIII\Models\PiggyBankEvent;
 | |
| use FireflyIII\Models\TransactionJournal;
 | |
| 
 | |
| /**
 | |
|  * Class ConnectJournalToPiggyBank
 | |
|  *
 | |
|  * @package FireflyIII\Handlers\Events
 | |
|  */
 | |
| class ConnectJournalToPiggyBank
 | |
| {
 | |
| 
 | |
|     /**
 | |
|      * Connect a new transaction journal to any related piggy banks.
 | |
|      *
 | |
|      * @param  TransactionJournalStored $event
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     public function handle(TransactionJournalStored $event): bool
 | |
|     {
 | |
|         /** @var TransactionJournal $journal */
 | |
|         $journal     = $event->journal;
 | |
|         $piggyBankId = $event->piggyBankId;
 | |
|         bcscale(2);
 | |
| 
 | |
|         /** @var PiggyBank $piggyBank */
 | |
|         $piggyBank = Auth::user()->piggybanks()->where('piggy_banks.id', $piggyBankId)->first(['piggy_banks.*']);
 | |
| 
 | |
|         if (is_null($piggyBank)) {
 | |
|             return true;
 | |
|         }
 | |
|         // update piggy bank rep for date of transaction journal.
 | |
|         $repetition = $piggyBank->piggyBankRepetitions()->relevantOnDate($journal->date)->first();
 | |
|         if (is_null($repetition)) {
 | |
|             return true;
 | |
|         }
 | |
|         bcscale(2);
 | |
| 
 | |
|         $amount = $journal->amount_positive; // TODO TransactionJournal cannot deliver "amount_positive".
 | |
|         // if piggy account matches source account, the amount is positive
 | |
|         if ($piggyBank->account_id == $journal->source_account->id) {// TODO TransactionJournal cannot deliver "source_account"
 | |
|             $amount = bcmul($amount, '-1');
 | |
|         }
 | |
| 
 | |
| 
 | |
|         $repetition->currentamount = bcadd($repetition->currentamount, $amount);
 | |
|         $repetition->save();
 | |
| 
 | |
|         PiggyBankEvent::create(['piggy_bank_id' => $piggyBank->id, 'transaction_journal_id' => $journal->id, 'date' => $journal->date, 'amount' => $amount]);
 | |
| 
 | |
|         return true;
 | |
| 
 | |
|     }
 | |
| 
 | |
| 
 | |
| }
 |