Patch level : 12.0 826

Files correlati     : cg5.exe

la visualizzazione della liquidazione -> Prospetto complessivo -> Versamenti e valorizza i campi il programma si blocca.
This commit is contained in:
AlexBonazzi 2019-06-19 11:13:48 +02:00
parent 36b04c72ec
commit 79fb38da25

View File

@ -1639,13 +1639,14 @@ void Visliq_app::read_general(TMask& m)
// set sheet
for (int i = step; i < 13; i+=step)
{
if (!is_month_ok(i))
TToken_string & t = sh.row(i);
if (!is_month_ok(i))
continue;
const int row = (i/step) - 1;
if (!look_lim(i))
{
TToken_string & t = sh.row(row);
t.cut(0);
sh.disable_cell(row, -1);
@ -1750,7 +1751,9 @@ void Visliq_app::read_general(TMask& m)
TString nomemese;
sv.destroy();
for (int i = 1; i <= 13; i++)
{
{
const TString & t = sv.row(i);
if (!is_month_ok(i) && i != 13)
continue;
nomemese = itoname(i == 13 ? 12 : i);