🤖 Auto commit for release 'develop' on 2025-06-09

This commit is contained in:
JC5
2025-06-09 05:32:04 +02:00
parent 14622329a8
commit a20601ea85
3 changed files with 5 additions and 5 deletions

View File

@@ -61,7 +61,7 @@ class ReportsSums extends Command
$foreign = (string) $user->transactions()->selectRaw('SUM(foreign_amount) as total')->value('total');
$sum = '' === $sum ? '0' : $sum;
$foreign = '' === $foreign ? '0' : $foreign;
$sum = Steam::floatalize($sum);
$sum = Steam::floatalize($sum);
$foreign = Steam::floatalize($foreign);
$total = bcadd($sum, $foreign);