42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Jobs\Banking;
 | |
| 
 | |
| use App\Abstracts\Job;
 | |
| use App\Interfaces\Job\ShouldUpdate;
 | |
| use App\Models\Banking\Reconciliation;
 | |
| use App\Models\Banking\Transaction;
 | |
| 
 | |
| class UpdateReconciliation extends Job implements ShouldUpdate
 | |
| {
 | |
|     public function handle(): Reconciliation
 | |
|     {
 | |
|         \DB::transaction(function () {
 | |
|             $reconcile = (int) $this->request->get('reconcile');
 | |
|             $transactions = $this->request->get('transactions');
 | |
| 
 | |
|             $this->model->transactions = $transactions;
 | |
|             $this->model->reconciled = $reconcile;
 | |
|             $this->model->save();
 | |
| 
 | |
|             if ($transactions) {
 | |
|                 foreach ($transactions as $key => $value) {
 | |
|                     $transaction_reconcile = $reconcile;
 | |
| 
 | |
|                     if (empty($value) || $value === 'false') {
 | |
|                         $transaction_reconcile = 0;
 | |
|                     }
 | |
| 
 | |
|                     $t = explode('_', $key);
 | |
| 
 | |
|                     $transaction = Transaction::find($t[1]);
 | |
|                     $transaction->reconciled = $transaction_reconcile;
 | |
|                     $transaction->save();
 | |
|                 }
 | |
|             }
 | |
|         });
 | |
| 
 | |
|         return $this->model;
 | |
|     }
 | |
| }
 |