Ver código fonte

[backend] Rapports : correction calcul montant total global

refactoring
Guillaume Bourgeois 5 anos atrás
pai
commit
a8af425dbd
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      backend/controllers/ReportController.php

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

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

Carregando…
Cancelar
Salvar