Patch level : 12.0 1098

Files correlati     : li0.exe fp0.exe ve1.exe
Commento        :

Aggiunta la data di protocollo dell'Agenzia delle Entrate sulle lettere d'intento.
Modificati i dati gestionali per le lettere d'intento.
This commit is contained in:
Alessandro Bonazzi 2021-11-28 20:52:11 +01:00
parent 8bb2ebba5b
commit 6cecf68dc8
4 changed files with 10 additions and 10 deletions

View File

@ -626,7 +626,6 @@ void TPAR_mask::set_err_paf()
TString err = "Impossibile salvare la regolarizzazione "; err << nreg << "\nVerrà saltata.";
error_box(err);
}
}
else
{

View File

@ -58,7 +58,7 @@ DATE F_DATAEND
BEGIN
PROMPT 50 1 "Data finale "
VALIDATE DATE_CMP_FUNC >= F_DATAINI
WARNING "La data finale non pu essere minore della data iniziale"
WARNING "La data finale non può essere minore della data iniziale"
CHECKTYPE REQUIRED
END

View File

@ -669,7 +669,7 @@ protected:
const TString& descrizione(const TMovimento_contabile& mov, int n_riga) const { return mov.cg()[n_riga].get((RMV_DESCR));}
void save_log() { TReport_book b; b.add(_log); b.export_text(TFilename("fp_err.log"), false, 132); }
void save_log() { TReport_book b; b.add(_log); b.export_text(TFilename("fp_err.log")); }
const TString & natura(const char* codiva) const;
static const char* get_esigibilita_iva(const TMovimento_contabile& Reg);
void set_IVA(TString codiva, TPaf_record& paf) const;

View File

@ -1112,7 +1112,7 @@ bool TDoc_fp::show_log()
TFilename name = "fp_err.log";
b.add(_log);
b.export_text(name, false, 132);
b.export_text(name);
return _log.preview();
}
@ -2196,8 +2196,9 @@ bool TDoc_fp::doc_to_paf(TDocumentoEsteso& doc)
reset(paf2100f);
paf2100f.set("PK_KEYNLINEA", static_cast<long>(riga));
paf2100f.set("PK_KEYNLINAR", _idx_adg_doc_row++);
paf2100f.set("PK_TIPODATO", rif);
paf2100f.set("PK_TIPODATO", "INTENTO");
paf2100f.set("PK_RIFDATO", dichiar);
paf2100f.set("PK_RIFDATA", dataprot);
ok &= paf2100f.insert();
}
riga++;