Fix calcolo importo tra fattura e xml

This commit is contained in:
MatteoPistorello 2021-12-23 09:07:49 +01:00
parent 2faf0cc1cf
commit 17a6fdf6aa
1 changed files with 2 additions and 2 deletions

View File

@ -261,8 +261,8 @@ switch (post('op')) {
}
echo json_encode([
'stored' => $totale_documento,
'calculated' => $fattura->totale,
'stored' => round($totale_documento,2),
'calculated' => round($fattura->totale,2),
]);
break;