Patch level : at

Files correlati     : at5.exe
Ricompilazione Demo : [ ]
Commento            : uso della cache()


git-svn-id: svn://10.65.10.50/trunk@10571 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
cris 2002-10-24 09:23:45 +00:00
parent bdfa575570
commit 598a220f54

View File

@ -202,10 +202,7 @@ void TFogliDonazione::header_stampa(const TDate data, const TString16 luogo, con
intestazione << "PER PUNTO DI PRELIEVO ";
intestazione << luogo;
intestazione << " ";
TTable ldn("LDN");
ldn.put("CODTAB",luogo);
if (ldn.read() == NOERR)
intestazione << ldn.get("S0");
intestazione << cache().get("LDN", luogo).get("S0");
}
break;
case 'S':
@ -242,10 +239,7 @@ void TFogliDonazione::header_stampa(const TDate data, const TString16 luogo, con
if (gruppoazie.not_empty())
{
intestazione << " ";
TTable gaz("GAZ");
gaz.put("CODTAB",gruppoazie);
if (gaz.read() == NOERR)
intestazione << gaz.get("S0");
intestazione << cache().get("GAZ", gruppoazie).get("S0");
}
}
break;