97 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\BulkActions\Banking;
 | |
| 
 | |
| use App\Abstracts\BulkAction;
 | |
| use App\Models\Banking\Reconciliation;
 | |
| use App\Models\Banking\Transaction;
 | |
| 
 | |
| class Reconciliations extends BulkAction
 | |
| {
 | |
|     public $model = Reconciliation::class;
 | |
| 
 | |
|     public $text = 'general.reconciliations';
 | |
| 
 | |
|     public $path = [
 | |
|         'group' => 'banking',
 | |
|         'type' => 'reconciliations',
 | |
|     ];
 | |
| 
 | |
|     public $actions = [
 | |
|         'reconcile'     => [
 | |
|             'icon'          => 'published_with_changes',
 | |
|             'name'          => 'reconciliations.reconcile',
 | |
|             'message'       => 'bulk_actions.message.reconcile',
 | |
|             'permission'    => 'update-banking-reconciliations',
 | |
|         ],
 | |
|         'unreconcile'   => [
 | |
|             'icon'          => 'layers_clear',
 | |
|             'name'          => 'reconciliations.unreconcile',
 | |
|             'message'       => 'bulk_actions.message.unreconcile',
 | |
|             'permission'    => 'update-banking-reconciliations',
 | |
|         ],
 | |
|         'delete'        => [
 | |
|             'icon'          => 'delete',
 | |
|             'name'          => 'general.delete',
 | |
|             'message'       => 'bulk_actions.message.delete',
 | |
|             'permission'    => 'delete-banking-reconciliations',
 | |
|         ],
 | |
|     ];
 | |
| 
 | |
|     public function reconcile($request)
 | |
|     {
 | |
|         $reconciliations = $this->getSelectedRecords($request);
 | |
| 
 | |
|         foreach ($reconciliations as $reconciliation) {
 | |
|             \DB::transaction(function () use ($reconciliation) {
 | |
|                 $reconciliation->reconciled = 1;
 | |
|                 $reconciliation->save();
 | |
| 
 | |
|                 Transaction::where('account_id', $reconciliation->account_id)
 | |
|                     ->isNotReconciled()
 | |
|                     ->whereBetween('paid_at', [$reconciliation->started_at, $reconciliation->ended_at])->each(function ($item) {
 | |
|                         $item->reconciled = 1;
 | |
|                         $item->save();
 | |
|                     });
 | |
|             });
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function unreconcile($request)
 | |
|     {
 | |
|         $reconciliations = $this->getSelectedRecords($request);
 | |
| 
 | |
|         foreach ($reconciliations as $reconciliation) {
 | |
|             \DB::transaction(function () use ($reconciliation) {
 | |
|                 $reconciliation->reconciled = 0;
 | |
|                 $reconciliation->save();
 | |
| 
 | |
|                 Transaction::where('account_id', $reconciliation->account_id)
 | |
|                     ->isReconciled()
 | |
|                     ->whereBetween('paid_at', [$reconciliation->started_at, $reconciliation->ended_at])->each(function ($item) {
 | |
|                         $item->reconciled = 0;
 | |
|                         $item->save();
 | |
|                     });
 | |
|             });
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     public function destroy($request)
 | |
|     {
 | |
|         $reconciliations = $this->getSelectedRecords($request);
 | |
| 
 | |
|         foreach ($reconciliations as $reconciliation) {
 | |
|             \DB::transaction(function () use ($reconciliation) {
 | |
|                 $reconciliation->delete();
 | |
| 
 | |
|                 Transaction::where('account_id', $reconciliation->account_id)
 | |
|                     ->isReconciled()
 | |
|                     ->whereBetween('paid_at', [$reconciliation->started_at, $reconciliation->ended_at])->each(function ($item) {
 | |
|                         $item->reconciled = 0;
 | |
|                         $item->save();
 | |
|                     });
 | |
|             });
 | |
|         }
 | |
|     }
 | |
| }
 |