1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-16 19:40:44 +01:00

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

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;