Aggiunta opzione rows-per-page per le stampe

This commit is contained in:
Pek5892 2024-05-20 12:02:40 +02:00
parent a7bb2c1bc5
commit 8d1878b1c2
4 changed files with 7 additions and 2 deletions

View File

@ -568,6 +568,7 @@ class Prints
// Generazione totale
if (empty($single_pieces)) {
$rows_per_page = $options['rows-per-page'];
ob_start();
$print_body = self::filepath($id_print, 'body.php');
if (!empty($print_body)) {

View File

@ -23,7 +23,7 @@ $prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
// Creazione righe fantasma
$autofill = new Util\Autofill($options['pricing'] ? 6 : 3);
$rows_per_page = 16;
$rows_per_page = $rows_per_page ?:16;
if (!empty($options['last-page-footer'])) {
$rows_per_page += 10;
}

View File

@ -26,7 +26,7 @@ $prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
// Creazione righe fantasma
$autofill = new Util\Autofill(6, 40);
$rows_per_page = $fattura_accompagnatoria ? 13 : 25;
$rows_per_page = $rows_per_page ?: ($fattura_accompagnatoria ? 13 : 25);
$autofill->setRows($rows_per_page);
// Intestazione tabella per righe

View File

@ -193,3 +193,7 @@ UPDATE `zz_widgets` set `bgcolor` = 'success' WHERE `name` = 'Attività conferma
UPDATE `zz_widgets` set `bgcolor` = 'success' WHERE `name` = 'Preventivi in lavorazione';
UPDATE `zz_widgets` set `bgcolor` = 'warning' WHERE `name` = 'Attività da pianificare';
UPDATE `zz_widgets` set `bgcolor` = 'warning' WHERE `name` = 'Attività nello stato da programmare';
-- Opzioni possibili per stampa della Fattura
UPDATE `zz_prints` SET `available_options` = '{\"pricing\":\"Visualizzare i prezzi\", \"hide-total\": \"Nascondere i totali delle righe\", \"show-only-total\": \"Visualizzare solo i totali del documento\", \"hide-header\": \"Nascondere intestazione\", \"hide-footer\": \"Nascondere footer\", \"last-page-footer\": \"Visualizzare footer solo su ultima pagina\", \"rows-per-page\": \"Definire il numero di righe per pagina\"}' WHERE `zz_prints`.`name` = 'Fattura di vendita';
UPDATE `zz_prints` SET `available_options` = '{\"pricing\":\"Visualizzare i prezzi\", \"hide-total\": \"Nascondere i totali delle righe\", \"show-only-total\": \"Visualizzare solo i totali del documento\", \"hide-header\": \"Nascondere intestazione\", \"hide-footer\": \"Nascondere footer\", \"last-page-footer\": \"Visualizzare footer solo su ultima pagina\", \"rows-per-page\": \"Definire il numero di righe per pagina\"}' WHERE `zz_prints`.`name` = 'Fattura di vendita (senza intestazione)';