Patch level : 12.0 1066

Files correlati     : cg2.exe cg4.exe
Commento        :

Le note di credito per cassa non legate a fattura non venivano liquidate dopo un anno.
Corretto errore entrando nel saldaconto

Interno :

Diana
Le note di credito 40177 40178 40179 sono state sganciate per liquidarle ma non venivano liquidate ugualmente dopo un anno.
La registrazione 40178 dava un errore entrando nel saldaconto (cg2)
This commit is contained in:
Alessandro Bonazzi 2021-07-15 23:44:51 +02:00
parent fd9bb94481
commit 426aa60c8b

View File

@ -48,7 +48,11 @@ extern const real VENTIDUE;
extern const real CINQUANTA;
extern const real CENTO;
#define UN_CENTESIMO PUNTO_ZERO_UNO
#define UN_CENTESIMO PUNTO_ZERO_UNO
#define REALE_ZERO(r) (abs(r) < UN_CENTESIMO)
#define REALE_NON_ZERO(r) (abs(r) > UN_CENTESIMO)
#define IMPORTO_ZERO(i) (abs(i.valore()) < UN_CENTESIMO)
#define IMPORTO_NON_ZERO(i) (abs(i.valore()) > UN_CENTESIMO)
#ifndef INCSTR_H
#include <incstr.h>