mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-11 15:14:01 +01:00
Fix template fatture
This commit is contained in:
parent
01cf1379d0
commit
8c20974e5b
@ -26,10 +26,7 @@ $prezzi_ivati = setting('Utilizza prezzi di vendita comprensivi di IVA');
|
|||||||
|
|
||||||
// Creazione righe fantasma
|
// Creazione righe fantasma
|
||||||
$autofill = new Util\Autofill(6, 40);
|
$autofill = new Util\Autofill(6, 40);
|
||||||
$rows_per_page = $fattura_accompagnatoria ? 13 : 18;
|
$rows_per_page = $fattura_accompagnatoria ? 13 : 25;
|
||||||
if (!empty($options['last-page-footer'])) {
|
|
||||||
$rows_per_page += 7;
|
|
||||||
}
|
|
||||||
$autofill->setRows($rows_per_page);
|
$autofill->setRows($rows_per_page);
|
||||||
|
|
||||||
// Intestazione tabella per righe
|
// Intestazione tabella per righe
|
||||||
@ -55,6 +52,13 @@ if (setting('Raggruppa attività per tipologia in fattura')) {
|
|||||||
$righe = $documento->getRighe();
|
$righe = $documento->getRighe();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (count($righe) > 25) {
|
||||||
|
if (!empty($options['last-page-footer'])) {
|
||||||
|
$rows_per_page += 5;
|
||||||
|
$autofill->setRows($rows_per_page);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$num = 0;
|
$num = 0;
|
||||||
|
|
||||||
if (!setting('Visualizza riferimento su ogni riga in stampa')) {
|
if (!setting('Visualizza riferimento su ogni riga in stampa')) {
|
||||||
|
Loading…
Reference in New Issue
Block a user