mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-09 06:05:28 +01:00
Fix stampa registro iva
This commit is contained in:
parent
ddede4dc30
commit
b51ff04e1e
@ -2,22 +2,33 @@
|
|||||||
|
|
||||||
include_once __DIR__.'/../../core.php';
|
include_once __DIR__.'/../../core.php';
|
||||||
|
|
||||||
echo '
|
|
||||||
<tr>';
|
|
||||||
|
|
||||||
$previous_number = $previous_number ?: null;
|
$previous_number = $previous_number ?: null;
|
||||||
|
|
||||||
|
if ($record['numero'] != $previous_number) {
|
||||||
|
if ($color == '#dddddd') {
|
||||||
|
$color = '#ffffff';
|
||||||
|
}
|
||||||
|
else if ($color == '#ffffff') {
|
||||||
|
$color = '#dddddd';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '
|
||||||
|
<tr bgcolor="'.$color.'" >';
|
||||||
|
|
||||||
if ($record['numero'] == $previous_number) {
|
if ($record['numero'] == $previous_number) {
|
||||||
echo '
|
echo '
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td></td>
|
<td></td>
|
||||||
|
<td></td>
|
||||||
<td></td>';
|
<td></td>';
|
||||||
} else {
|
} else {
|
||||||
echo '
|
echo '
|
||||||
<td>'.(($dir == 'uscita') ? $record['numero'] : '-').'</td>
|
<td>'.(($dir == 'uscita') ? $record['numero'] : '-').'</td>
|
||||||
<td>'.$record['numero_esterno'].'</td>
|
<td>'.$record['numero_esterno'].'</td>
|
||||||
<td>'.Translator::numbertoLocale($record['data']).'</td>
|
<td>'.Translator::datetoLocale($record['data']).'</td>
|
||||||
<td>'.$record['codice_tipo_documento_fe'].'</td>
|
<td>'.$record['codice_tipo_documento_fe'].'</td>
|
||||||
<td>'.$record['codice_anagrafica'].' / '.tr($record['ragione_sociale'], [], ['upper' => true]).'</td>
|
<td>'.$record['codice_anagrafica'].' / '.tr($record['ragione_sociale'], [], ['upper' => true]).'</td>
|
||||||
<td>'.moneyFormat($record['totale']).'</td>';
|
<td>'.moneyFormat($record['totale']).'</td>';
|
||||||
|
@ -22,18 +22,20 @@ if ('entrata' == $dir) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$tipo = $dir == 'entrata' ? tr('Cliente') : tr('Fornitore');
|
$tipo = $dir == 'entrata' ? tr('Cliente') : tr('Fornitore');
|
||||||
|
$i = 0;
|
||||||
|
$color = '#dddddd';
|
||||||
|
|
||||||
echo '<h4><b>'.$titolo.'</b></h4>
|
echo '<h4><b>'.$titolo.'</b></h4>
|
||||||
|
|
||||||
<table class="table">
|
<table class="table table-condensed" border="0">
|
||||||
<thead>
|
<thead>
|
||||||
<tr bgcolor="#dddddd">
|
<tr bgcolor="'.$color.'">
|
||||||
<th>'.tr('N<sup>o</sup> prot.').'</th>
|
<th>'.tr('Prot.').'</th>
|
||||||
<th>'.tr('N<sup>o</sup> doc.').'</th>
|
<th>'.tr('N<sup>o</sup> doc.').'</th>
|
||||||
<th>'.tr('Data').'</th>
|
<th>'.tr('Data').'</th>
|
||||||
<th>'.tr('Tipo').'</th>
|
<th>'.tr('Tipo').'</th>
|
||||||
<th>'.$tipo.'</th>
|
<th>'.$tipo.'</th>
|
||||||
<th>'.tr('Tot doc.').'</th>
|
<th>'.tr('Tot. doc.').'</th>
|
||||||
<th>'.tr('Imponibile').'</th>
|
<th>'.tr('Imponibile').'</th>
|
||||||
<th>%</th>
|
<th>%</th>
|
||||||
<th>'.tr('Iva').'</th>
|
<th>'.tr('Iva').'</th>
|
||||||
|
Loading…
Reference in New Issue
Block a user