Aggiunta opzione rows-per-page per le stampe
This commit is contained in:
parent
a7bb2c1bc5
commit
8d1878b1c2
|
@ -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)) {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)';
|
Loading…
Reference in New Issue