diff --git a/templates/ordini/body.php b/templates/ordini/body.php index 444ec7aef..40682f804 100755 --- a/templates/ordini/body.php +++ b/templates/ordini/body.php @@ -37,7 +37,7 @@ if ($documento->direzione == 'entrata') { } if ($documento->direzione == 'uscita') { - ++$columns; + $columns += 2; $char_number = $options['pricing'] ? 26 : 63; } else { $char_number = $options['pricing'] ? 45 : 82; @@ -53,11 +53,12 @@ echo "
".tr('#', [], ['upper' => true]).' | '; +".tr('#', [], ['upper' => true]).' | '; if ($documento->direzione == 'uscita') { echo " -".tr('Codice', [], ['upper' => true]).' | '; +".tr('Codice', [], ['upper' => true])." | +".tr('Codice fornitore', [], ['upper' => true])." | "; } if ($has_image) { @@ -67,13 +68,13 @@ echo " echo "".tr('Descrizione', [], ['upper' => true])." | -".tr('Q.tà', [], ['upper' => true]).' | '; +".tr('Q.tà', [], ['upper' => true]).' | '; if ($options['pricing']) { echo " -".tr('Prezzo unitario', [], ['upper' => true])." | -".tr('Imponibile', [], ['upper' => true])." | -".tr('IVA', [], ['upper' => true]).' (%) | '; +".tr('Prezzo unitario', [], ['upper' => true])." | +".tr('Imponibile', [], ['upper' => true])." | +".tr('IVA', [], ['upper' => true]).' (%) | '; } echo " @@ -96,13 +97,6 @@ foreach ($righe as $riga) { '.$num.' '; - if ($documento->direzione == 'uscita') { - echo ' -- '.$riga->articolo->codice.' - | '; - } - if ($has_image) { if ($riga->isArticolo() && !empty($riga->articolo->image)) { echo ' @@ -117,6 +111,16 @@ foreach ($righe as $riga) { } } + if ($documento->direzione == 'uscita') { + echo ' ++ '.$riga->articolo->codice.' + | ++ '.($riga->articolo ? $riga->articolo->dettaglioFornitore($documento->idanagrafica)->codice_fornitore : '').' + | '; + } + echo ''.nl2br($r['descrizione']); @@ -165,7 +169,7 @@ foreach ($righe as $riga) { // Prezzo unitario echo ' | - '.moneyFormat($riga->prezzo_unitario); + '.moneyFormat($riga->prezzo_unitario); if ($riga->sconto > 0) { $text = discountInfo($riga, false); @@ -194,7 +198,7 @@ foreach ($righe as $riga) { echo ' |
- '.Translator::dateToLocale($riga->data_evasione).($riga->ora_evasione ? ' '.Translator::timeToLocale($riga->ora_evasione).'' : '').' + '.Translator::dateToLocale($riga->data_evasione).($riga->ora_evasione ? ' '.Translator::timeToLocale($riga->ora_evasione).'' : '').' | ';
} else {
echo '
@@ -230,7 +234,7 @@ $netto_a_pagare = $documento->netto;
$show_sconto = $sconto > 0;
$colspan = 5;
-($documento->direzione == 'uscita' ? $colspan++ : $colspan);
+($documento->direzione == 'uscita' ? $colspan+=2 : $colspan);
($has_image ? $colspan++ : $colspan);
// TOTALE COSTI FINALI
diff --git a/templates/ordini/settings.php b/templates/ordini/settings.php
index 5af9d7a6a..6cce79752 100644
--- a/templates/ordini/settings.php
+++ b/templates/ordini/settings.php
@@ -18,7 +18,7 @@
*/
$settings = [
- 'font-size' => 9,
+ 'font-size' => 8,
];
return $settings;
---|