Patch level : 12.0

Files correlati     : cg
Commento:
Sistemato il pulsante di abbinamento dei documenti elettronici in prima nota
This commit is contained in:
Simoe 2022-11-22 11:19:47 +01:00
parent eefd660074
commit 67b8f9ce6f
4 changed files with 4 additions and 4 deletions

View File

@ -178,7 +178,6 @@
#define DLG_CST 301 #define DLG_CST 301
#define F_RAGSOCA 302 #define F_RAGSOCA 302
#define F_MAIL 303 #define F_MAIL 303
#define DLG_OGGETTI 304
#define F_BYMAIL 306 #define F_BYMAIL 306
#define F_DOCMAIL 307 #define F_DOCMAIL 307
#define F_PEC 324 #define F_PEC 324

View File

@ -4208,7 +4208,7 @@ bool TPrimanota_application::scollega(const bool set)
bool TPrimanota_application::scollega_handler(TMask_field& f, KEY key) bool TPrimanota_application::scollega_handler(TMask_field& f, KEY key)
{ {
if (app().has_module(FPAUT) && f.running_check(key)) if (app().has_module(FPAUT) && key == K_SPACE)
{ {
TMask& cg_msk = f.mask(); TMask& cg_msk = f.mask();

View File

@ -1180,7 +1180,7 @@ int TStampa_registri_app::riga_rmoviva(const bool fattrit)
int TStampa_registri_app::setta_riga(int r, const TRigaiva& riga, real& tot1, int TStampa_registri_app::setta_riga(int r, const TRigaiva& riga, real& tot1,
real& tot2, real& tot3, real& tot4) real& tot2, real& tot3, real& tot4)
{ {
set_row(r, riga._codiva); set_row(r, "%s", riga._codiva);
TString descrizione = descr_iva(riga._codiva); TString descrizione = descr_iva(riga._codiva);
if (riga._tipocr > 0) if (riga._tipocr > 0)

View File

@ -859,7 +859,8 @@ void TInv_cont::crea_marker(TMask& m)
buffer.cut(64); //Sicurezza: le stringhe dimensionate in realta' sono buffer.cut(64); //Sicurezza: le stringhe dimensionate in realta' sono
//leggermente piu' lunghe della dimensione specificata //leggermente piu' lunghe della dimensione specificata
const word scritti = fwrite(buffer,1,size,i); //const word scritti =
fwrite(buffer,1,size,i);
fclose(i); fclose(i);
} }