diff --git a/templates/preventivi/body.php b/templates/preventivi/body.php index 8fd4272a9..ce51668c0 100755 --- a/templates/preventivi/body.php +++ b/templates/preventivi/body.php @@ -2,8 +2,23 @@ include_once __DIR__.'/../../core.php'; +$has_images = null; + +// Righe documento +$righe = $documento->getRighe(); + +foreach ($righe as $riga) { + if ($riga->articolo->immagine){ + $has_images = 1; + } +} +$pagamento = $dbo->fetchOne('SELECT * FROM co_pagamenti WHERE id = '.$documento['idpagamento']); +if (!empty($pagamento['idconto_vendite'])){ + $banca = $dbo->fetchOne('SELECT co_banche.nome, co_banche.filiale, co_banche.bic FROM co_banche INNER JOIN co_pianodeiconti3 ON co_banche.id_pianodeiconti3 = co_pianodeiconti3.id WHERE co_pianodeiconti3.id = '.$pagamento['idconto_vendite']); +} + // Creazione righe fantasma -$autofill = new \Util\Autofill($options['pricing'] ? 6 : 3); +$autofill = new \Util\Autofill($options['pricing'] ? (($has_images) ? 7 : 6) : 3); $autofill->setRows(20, 10); echo ' @@ -15,6 +30,31 @@ echo ' '_DATE_' => Translator::dateToLocale($documento['data_bozza']), ], ['upper' => true]).' + +
+ '.tr('Pagamento', [], ['upper' => true]).' +'.$pagamento['descrizione'].' + |
+
+ '.tr('Banca di appoggio', [], ['upper' => true]).' +'.$banca['nome'].' + |
+ ||
+ '.tr('IBAN').' +'.$banca['filiale'].' + |
+
+ '.tr('BIC').' +'.$banca['bic'].' + |
+
+ | # | "; + +if ($has_images){ +echo " +Foto | "; + +} + +echo "".tr('Descrizione', [], ['upper' => true])." | ".tr('Q.tà', [], ['upper' => true]).' | '; @@ -78,8 +126,7 @@ echo '
---|---|---|---|---|
'; - if (!empty($riga->articolo->immagine)) { - echo ''; + + echo" + | + ".($r['order'] + 1)." | "; + + + if ($has_images) { + echo ''; + if (!empty($riga->articolo->immagine)) { + echo ''; + } + + echo ' | '; } - echo ''; echo '@@ -247,7 +303,7 @@ echo' |