Explorar el Código

[backend] Rapports : correction calcul montant total global

refactoring
Guillaume Bourgeois hace 5 años
padre
commit
a8af425dbd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      backend/controllers/ReportController.php

+ 1
- 1
backend/controllers/ReportController.php Ver fichero

@@ -153,7 +153,7 @@ class ReportController extends BackendController
'quantity' => $line['quantity'],
'total' => $total,
] ;
$totalGlobal += $total ;
$totalGlobal += $line['total'] ;
}
}

Cargando…
Cancelar
Guardar