- Correzione errori quadro C:

- L'indirizzo dei percipienti ora viene troncato a 30 caratteri anziche' a 20
- La firma ora viene stampata alla fine di ogni modulo, mentre i totali solo a fine dichiarazione


git-svn-id: svn://10.65.10.50/trunk@3784 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
ale 1996-10-17 09:18:19 +00:00
parent 785bc8c561
commit 32ac934b35
2 changed files with 7 additions and 4 deletions

View File

@ -254,7 +254,7 @@ STRING 101
BEGIN BEGIN
KEY "VIA RES." KEY "VIA RES."
PROMPT 94 3 "" PROMPT 94 3 ""
FIELD 216@->INDRES[1,20] FIELD 216@->INDRES[1,30]
FLAGS "H" FLAGS "H"
MESSAGE COPY,10 MESSAGE COPY,10
END END

View File

@ -298,12 +298,15 @@ bool TQuadroC::print(const long codditta, const long NumFis, const long NumNoFis
if (elementi >= elementi_pagina(QUARTA)) if (elementi >= elementi_pagina(QUARTA))
{ {
jump_to_line(pr, riga_totali(QUARTA));
if (stampato_ultimo) if (stampato_ultimo)
{ {
jump_to_line(pr, riga_totali(QUARTA)); stampa_totali(pr); // Stampa totali e firma
stampa_totali(pr);
stampati_totali = TRUE; stampati_totali = TRUE;
} }
else
stampa_firma(pr); // Stampa solo la firma
next_page(pr); next_page(pr);
elementi = 0; elementi = 0;
ele_bis = 0; ele_bis = 0;