52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Widgets;
 | |
| 
 | |
| use App\Abstracts\Widget;
 | |
| use App\Models\Banking\Transaction;
 | |
| use App\Models\Purchase\Bill;
 | |
| 
 | |
| class TotalExpenses extends Widget
 | |
| {
 | |
|     public $default_name = 'widgets.total_expenses';
 | |
| 
 | |
|     public $views = [
 | |
|         'header' => 'partials.widgets.stats_header',
 | |
|     ];
 | |
| 
 | |
|     public function show()
 | |
|     {
 | |
|         $current = $open = $overdue = 0;
 | |
| 
 | |
|         $this->applyFilters(Transaction::expense()->isNotTransfer())->each(function ($transaction) use (&$current) {
 | |
|             $current += $transaction->getAmountConvertedToDefault();
 | |
|         });
 | |
| 
 | |
|         $this->applyFilters(Bill::with('transactions')->accrued()->notPaid(), ['date_field' => 'created_at'])->each(function ($bill) use (&$open, &$overdue) {
 | |
|             list($open_tmp, $overdue_tmp) = $this->calculateDocumentTotals($bill);
 | |
| 
 | |
|             $open += $open_tmp;
 | |
|             $overdue += $overdue_tmp;
 | |
|         });
 | |
| 
 | |
|         $grand = $current + $open + $overdue;
 | |
| 
 | |
|         $progress = 100;
 | |
| 
 | |
|         if (!empty($open) && !empty($overdue)) {
 | |
|             $progress = (int) ($open * 100) / ($open + $overdue);
 | |
|         }
 | |
| 
 | |
|         $totals = [
 | |
|             'grand'         => money($grand, setting('default.currency'), true),
 | |
|             'open'          => money($open, setting('default.currency'), true),
 | |
|             'overdue'       => money($overdue, setting('default.currency'), true),
 | |
|             'progress'      => $progress,
 | |
|         ];
 | |
| 
 | |
|         return $this->view('widgets.total_expenses', [
 | |
|             'totals' => $totals,
 | |
|         ]);
 | |
|     }
 | |
| }
 |