🤖 Auto commit for release 'branch-adminlte' on 2026-06-19

This commit is contained in:
JC5
2026-06-19 05:50:27 +02:00
parent d09e8398b3
commit c6992e6740
53 changed files with 625 additions and 544 deletions
@@ -539,7 +539,13 @@ final class BudgetController extends Controller
}
// get spent amount in this period for this currency.
$sum = $this->opsRepository->sumExpenses($currentStart, $currentEnd, $accounts, new Collection()->push($budget), $currency);
$sum = $this->opsRepository->sumExpenses(
$currentStart,
$currentEnd,
$accounts,
new Collection()->push($budget),
$currency
);
$amount = Steam::positive($sum[$currency->id]['sum'] ?? '0');
$chartData[0]['entries'][$title] = Steam::bcround($amount, $currency->decimal_places);