Patch level : 12.0 698

Files correlati     : 777.exe 77tbca7.msk ba4200b.msk ba4200c.msk

Certificazione unica (CU) 2019
This commit is contained in:
AlexBonazzi 2019-02-14 09:08:44 +01:00
parent 480336c771
commit 13b3da6b51
2 changed files with 2 additions and 8 deletions

View File

@ -607,10 +607,6 @@ bool TTrasferimentoCU::append_record_d(const TRectype& qla, TLog_report& log)
const char tipoanag = qla.get_char("TIPOA");
const long codanagr = qla.get_long("CODANAGR");
#ifdef DBG
if (tipoanag == 'F' && codanagr == 1705)
bool tolla = true;
#endif
if (tipoanag < 'F' || codanagr <= 0)
{
TString msg; msg.format(FR("Scartato percipiente non valido %c/%ld"), tipoanag, codanagr);
@ -667,8 +663,6 @@ bool TTrasferimentoCU::append_record_d(const TRectype& qla, TLog_report& log)
rec.np_put("DA001010", _codatt_dic);
// rec.np_put("DA001011", "1"); // Codice Sede ???
if (perc.codice_fiscale() == "BRTTMS98M18832Z")
int i = 1;
rec.np_put("DA002001", perc.codice_fiscale());
if (perc.fisica())
{

View File

@ -514,7 +514,7 @@ TReport_field& TCU_report::add_big_text(TReport_section& sec, int row, int col,
txt->set_type('T');
txt->set_picture(label);
txt->set_pos(CU_FORM_BORDER+col*100, row*100);
txt->set_size(strlen(label)*300, 200);
txt->set_size(strlen(label)*300, 300);
txt->set_pattern(PAT_HOLLOW);
txt->set_back_color(COLOR_INVALID);
txt->set_text_color(rgb);
@ -593,7 +593,7 @@ void TCU_report::create_logo(TReport_section& header)
TReport_field* txt = new TReport_field(&header);
txt->set_type('I');
txt->set("res/AgenziaEntrate.gif");
txt->set_pos(CU_FORM_BORDER, 800);
txt->set_pos(CU_FORM_BORDER, 900);
txt->set_size(1200, 200);
header.add(txt);
}