Patch level : 12.0 no-patch

Files correlati     : tc
Commento            : In Esportazione PayLine aggiunta scrittura ultimi due campi a vuoto sotto richiesta
This commit is contained in:
Mattia Tollari 2019-07-02 17:54:00 +02:00
parent 4ec46ed229
commit 920a6a5639

View File

@ -184,6 +184,11 @@ long TPayLine_app::export_clifo(long codcf, TPayLine_recset& clienti, TLog_repor
row.add(TR("Fallimento"), 9); // Status legale
row.add(TR("Bloccato"), 10); // Status bloccato
}
else
{
row.add("", 9); // Status legale
row.add("", 10); // Status bloccato
}
clienti.new_rec(row);
return codcf;