Patch level : 12.0 952

Files correlati     : ve0.exe
Commento            :

Aggiunta conversione sottocategorie alla conversione  CONAI documenti
Velocizzata la conversione CONAI documenti
This commit is contained in:
Alessandro Bonazzi 2020-02-24 00:03:00 +01:00
parent e80cbcaaf4
commit 7cc3513bb8
2 changed files with 14 additions and 3 deletions

View File

@ -256,9 +256,19 @@ bool TCSC_mask::on_field_event(TOperable_field& o, TField_event e, long jolly)
{
case fe_button:
{
TExternal_app app("bacnv -26");
long e = 0;
app.run();
{
TExternal_app app("bacnv -26");
e = app.run();
}
if (e != 1)
{
TExternal_app app("bacnv -24");
app.run();
}
}
break;
default: break;

View File

@ -493,7 +493,8 @@ public:
bool is_prestazione() const { return tipo() == RIGA_PRESTAZIONI;}
bool is_risorsa() const { return tipo() == RIGA_RISORSE;}
bool is_attrezzatura() const { return tipo() == RIGA_ATTREZZATURE;}
bool is_sconto() const {return tipo() == RIGA_SCONTI;}
bool is_sconto() const { return tipo() == RIGA_SCONTI; }
bool is_omaggio() const { return tipo() == RIGA_OMAGGI; }
const TString& imponibile() const { return _imponibile;}
const TString& imposta() const { return _field_imposta;}