Patch level : 12.0 686

Files correlati     : ca3.exe ca3900a.rep
Commento            :
L'esportazione della stampa stima ricavi perdeva aclune colonne.
Può influire anche su :
  1) stampa pagato per CdC/Commessa/Fase
  2) stampa rendiconto
  3) stampa bilancio di commessa per esercizio
This commit is contained in:
AlexBonazzi 2019-01-29 00:07:33 +01:00
parent ecd0680a82
commit ef90d87c0c

View File

@ -1849,7 +1849,7 @@ bool TBook::export_excel(TFilename& fname, bool signature)
while (!ifs.eof()) while (!ifs.eof())
{ {
ifs.getline(str.get_buffer(), str.size()); ifs.getline(str.get_buffer(), str.size());
if (str == "</text>") if (str == "</text>")
break; break;
if (do_export && str.full()) if (do_export && str.full())
{ {
@ -1863,8 +1863,8 @@ bool TBook::export_excel(TFilename& fname, bool signature)
page.add(line, row); page.add(line, row);
} }
reformat_excel(str); reformat_excel(str);
line->add(str, pos); line->add(str, idx);// come mai ?? pos);
} }
} }
} }
} else } else