unknown 1 mese fa
parent
commit
d071bfcd34
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      application/service/UnifiedCostCalculationService.php

+ 1 - 1
application/service/UnifiedCostCalculationService.php

@@ -1059,7 +1059,7 @@ class UnifiedCostCalculationService
     {
         $fixedRow = [];
         foreach ($columnNames as $column) {
-            $fixedRow[$column] = $row[$column] ?? null;
+            $fixedRow[$column] = $row[$column] ?? 0;
         }
 
         $this->monthlyCostDetails[$index] = $fixedRow;