Patch level : 12.0 548

Files correlati     : fe
Commento            : Aggiunto identificativo fiscale estero per Anag

git-svn-id: svn://10.65.10.50/branches/R_10_00@24415 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
mtollari 2018-03-06 14:33:20 +00:00
parent e6a6c7dfe1
commit ff5a6973d7
2 changed files with 3 additions and 1 deletions

View File

@ -403,6 +403,7 @@ bool TAnagrafica::init(const TRectype& rec)
_tipo = rec.get_char(ANA_TIPOA);
_ragsoc = rec.get(ANA_RAGSOC);
_cofi = rec.get(ANA_COFI);
_cofiest = rec.get(ANA_COFIEST);
_paiv = rec.get(ANA_PAIV);
_stato_paiv = rec.get(ANA_STATOPAIV);

View File

@ -17,7 +17,7 @@ class TAnagrafica : public TObject
{
char _tipo; // F o G
TString4 _stato_paiv;
TString16 _cofi, _paiv;
TString _cofi, _paiv, _cofiest;
TString80 _ragsoc;
TString4 _com_nasc, _com_res;
TString80 _loc_res, _ind_res, _via_res;
@ -38,6 +38,7 @@ public:
bool giuridica() const { return _tipo == 'G'; }
const TString& codice_fiscale() const { return _cofi; }
const TString& codice_fiscale_estero() const { return _cofiest; }
const TString& partita_IVA() const { return _paiv; }
const TString& stato_partita_IVA() const;