Patch level : 12.0 514

Files correlati     : cg
Commento            : Cambiata classe TAnagrafica, in stato_partita_IVA() se stato_paiv è vuoto propone IT solo in caso di italiano

git-svn-id: svn://10.65.10.50/branches/R_10_00@24300 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
mtollari 2018-01-25 14:18:00 +00:00
parent 50a1a35af3
commit 6eb648e39d

View File

@ -303,10 +303,9 @@ const TString& TAnagrafica::stato_partita_IVA() const
TString& str = get_tmp_string();
if (_stato_paiv.full())
str = _stato_paiv;
else
else if(italiano())
{
// Propongo il codice iso del suo stato
str = stato_residenza_ISO();
str = "IT";
}
return str;
}