Patch level : 12.0 922

Files correlati     : ve6.exe
Commento            :
- Corretta posizione graffa nel if has_valid_plafond nella fatturazione bolle. Scrieva le fatture solo se il cliente aveva un plafond valido.
This commit is contained in:
Alessandro Bonazzi 2020-01-14 23:06:51 +01:00
parent ba8b703674
commit fe6165a6c2

View File

@ -74,6 +74,8 @@ bool TFatturazione_bolle_app::process(TProgress_monitor& iw, TElaborazione & eld
// return error_box("Errore durante la generazione del plafond, le fatture non son state create"); // return error_box("Errore durante la generazione del plafond, le fatture non son state create");
//} //}
}
int err = dout.write(); // Scrive documenti di output int err = dout.write(); // Scrive documenti di output
if (err == NOERR) if (err == NOERR)
{ {
@ -84,8 +86,6 @@ bool TFatturazione_bolle_app::process(TProgress_monitor& iw, TElaborazione & eld
else else
ok = error_box("Errore %d durante l'aggiornamento dei documenti da raggruppare!", err); ok = error_box("Errore %d durante l'aggiornamento dei documenti da raggruppare!", err);
} }
}
return ok; return ok;
} }