Patch level : 4.0 486

Files correlati     : ve0.exe ve6.exe
Ricompilazione Demo : [ ]
Commento            :

Corretta la cache causali nella contabilizzazione analitica


git-svn-id: svn://10.65.10.50/trunk@14311 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 2006-09-12 10:54:36 +00:00
parent 3489f6b40e
commit 69b3f07eed

View File

@ -28,7 +28,9 @@ TObject* TCache_causali::key2obj(const char* key)
{
TToken_string k = key;
const int year = k.get_int(1);
return new TCausale(k.get(0), year);
TString cod = k.get(0);
cod.trim();
return new TCausale(cod, year);
}
const TCausale& TCache_causali::causale(const TDocumento& doc)