Patch level : 12.0

Files correlati     : 

Modificate costanti

git-svn-id: svn://10.65.10.50/branches/R_10_00@23448 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
bonazzi 2016-12-13 13:57:01 +00:00
parent 9e47658368
commit ef13152d92

View File

@ -950,15 +950,15 @@ bool TBill::find()
ok = !clifo.empty();
if (ok)
{
set_description(clifo.get("RAGSOC"));
set_description(clifo.get(CLI_RAGSOC));
if (_tipo_cr < 0)
{
_tipo_cr = 0;
_sezione = ' ';
}
_sospeso = clifo.get_bool("SOSPESO");
_sospeso = clifo.get_bool(CLI_SOSPESO);
const char tipoa = clifo.get_char("TIPOPERS");
const char tipoa = clifo.get_char(CLI_TIPOPERS);
if (tipoa == 'F') // Se persona fisica allora aggiusta la ragione sociale
{
TString nome(descrizione().mid(30));
@ -971,8 +971,8 @@ bool TBill::find()
}
if (_gruppo == 0 || _conto == 0)
{
_gruppo = clifo.get_int("GRUPPO");
_conto = clifo.get_int("CONTO");
_gruppo = clifo.get_int(CLI_GRUPPO);
_conto = clifo.get_int(CLI_CONTO);
}
}
}