refactored widgets
This commit is contained in:
44
app/Widgets/TotalIncome.php
Normal file
44
app/Widgets/TotalIncome.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace App\Widgets;
|
||||
|
||||
use App\Abstracts\Widget;
|
||||
use App\Models\Banking\Transaction;
|
||||
use App\Models\Income\Invoice;
|
||||
|
||||
class TotalIncome extends Widget
|
||||
{
|
||||
public function show()
|
||||
{
|
||||
$current = $open = $overdue = 0;
|
||||
|
||||
Transaction::type('income')->isNotTransfer()->each(function ($transaction) use (&$current) {
|
||||
$current += $transaction->getAmountConvertedToDefault();
|
||||
});
|
||||
|
||||
Invoice::accrued()->notPaid()->each(function ($invoice) use (&$open, &$overdue) {
|
||||
list($open_tmp, $overdue_tmp) = $this->calculateDocumentTotals($invoice);
|
||||
|
||||
$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 view('widgets.total_income', [
|
||||
'config' => (object) $this->config,
|
||||
'totals' => $totals,
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user