50 lines
1.4 KiB
PHP
50 lines
1.4 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::type('expense')->isNotTransfer())->each(function ($transaction) use (&$current) {
|
|
$current += $transaction->getAmountConvertedToDefault();
|
|
});
|
|
|
|
$this->applyFilters(Bill::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;
|
|
});
|
|
|
|
$progress = 100;
|
|
|
|
if (!empty($open) && !empty($overdue)) {
|
|
$progress = (int) ($open * 100) / ($open + $overdue);
|
|
}
|
|
|
|
$totals = [
|
|
'current' => $current,
|
|
'open' => money($open, setting('default.currency'), true),
|
|
'overdue' => money($overdue, setting('default.currency'), true),
|
|
'progress' => $progress,
|
|
];
|
|
|
|
return $this->view('widgets.total_expenses', [
|
|
'totals' => $totals,
|
|
]);
|
|
}
|
|
}
|