openstamanager/templates/ddt/footer.php

152 lines
3.5 KiB
PHP
Raw Normal View History

2017-09-08 17:03:47 +02:00
<?php
// TABELLA PRINCIPALE
echo '
<table class="border-full">';
if ($mostra_prezzi) {
// Riga 1
echo "
<tr>
<td rowspan='7' class='border-full'>
<p class='small-bold'>".strtoupper(tr('Note')).'</p>
<p>'.nl2br($rs[0]['note'])."</p>
</td>
<td style='width:33mm;' class='border-bottom'>
<p class='small-bold'>".strtoupper(tr('Totale imponibile')).'</p>
</td>
</tr>';
// Dati riga 1
echo "
<tr>
<td class='border-bottom cell-padded text-right'>
".Translator::numberToLocale($imponibile_ddt, 2).' &euro;
</td>
</tr>';
// Riga 2
echo "
<tr>
<td style='width:33mm;' class='border-bottom'>
<p class='small-bold'>".strtoupper(tr('Totale imposte'))."</p>
</td>
</tr>
<tr>
<td class='border-bottom cell-padded text-right'>
".Translator::numberToLocale($totale_iva, 2).' &euro;
</td>
</tr>';
// Riga 3
echo "
<tr>
<td class='border-bottom'>
<p class='small-bold'>".strtoupper(tr('Totale documento'))."</p>
</td>
</tr>
<tr>
<td class='cell-padded text-right' style='border-bottom:none;'>
".Translator::numberToLocale($totale_ddt, 2).' &euro;
</td>
</tr>';
} else {
// Riga 1
echo "
<tr>
<td style='height:40mm;'>
<p class='small-bold'>".strtoupper(tr('Note')).'</p>
'.nl2br($rs[0]['note']).'
</td>
</tr>';
}
echo '
</table>';
echo '
<table class="border-full">
<tr>
<th class="border-bottom border-right" style="width:33%">
'.strtoupper(tr('Aspetto beni')).'
</th>
<th class="border-bottom border-right" style="width:33%">
'.strtoupper(tr('Causale trasporto')).'
</th>
<th class="border-bottom" style="width:33%">
'.strtoupper(tr('Porto')).'
</th>
</tr>
<tr>
<td class="cell-padded border-right">
$aspettobeni$ &nbsp;
</td>
<td class="cell-padded border-right">
$causalet$ &nbsp;
</td>
<td class="cell-padded">
$porto$ &nbsp;
</td>
</tr>
<tr>
<th class="border-bottom border-right">
'.strtoupper(tr('N<sup>o</sup> colli')).'
</th>
<th class="border-bottom border-right">
'.strtoupper(tr('Tipo di spedizione')).'
</th>
<th class="border-bottom">
'.strtoupper(tr('Vettore')).'
</th>
</tr>
<tr>
<td class="cell-padded border-right">
$n_colli$ &nbsp;
</td>
<td class="cell-padded border-right">
$spedizione$ &nbsp;
</td>
<td class="cell-padded">
$vettore$ &nbsp;
</td>
</tr>
<tr>
<th class="border-bottom border-right">
'.strtoupper(tr('Firma conducente')).'
</th>
<th class="border-bottom border-right">
'.strtoupper(tr('Firma vettore')).'
</th>
<th class="border-bottom">
'.strtoupper(tr('Firma destinatario')).'
</th>
</tr>
<tr>
<td class="cell-padded border-right">
&nbsp;<br>&nbsp;
</td>
<td class="cell-padded border-right">
&nbsp;<br>&nbsp;
</td>
<td class="cell-padded">
&nbsp;<br>&nbsp;
</td>
</tr>
</table>';
echo '
$pagination$';