1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-27 08:12:47 +01:00

Bugfix: sistemato calcolo stato fattura in aggiunta prima nota

This commit is contained in:
Bacca97 2018-04-17 18:24:02 +02:00
parent f691f585de
commit 87f8e80fb9

View File

@ -61,7 +61,7 @@ switch (post('op')) {
$rs = $dbo->fetchArray($query);
// Aggiorno lo stato della fattura
if ($rs[0]['tot_pagato'] == $rs[0]['tot_da_pagare']) {
if (abs($rs[0]['tot_pagato']) == abs($rs[0]['tot_da_pagare'])) {
$dbo->query("UPDATE co_documenti SET idstatodocumento=(SELECT id FROM co_statidocumento WHERE descrizione='Pagato') WHERE id=".prepare($iddocumento));
} else {
$dbo->query("UPDATE co_documenti SET idstatodocumento=(SELECT id FROM co_statidocumento WHERE descrizione='Parzialmente pagato') WHERE id=".prepare($iddocumento));