mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-23 14:57:46 +01:00
Modifica stampa preventivi senza totale per visualizzazione prezzo ivato
This commit is contained in:
parent
3249742023
commit
0c2ee46576
@ -170,7 +170,7 @@ echo "
|
|||||||
if ($options['pricing']) {
|
if ($options['pricing']) {
|
||||||
echo "
|
echo "
|
||||||
<th class='text-center' style='width:15%'>".tr('Prezzo unitario', [], ['upper' => true])."</th>
|
<th class='text-center' style='width:15%'>".tr('Prezzo unitario', [], ['upper' => true])."</th>
|
||||||
<th class='text-center' style='width:15%'>".tr('Importo', [], ['upper' => true])."</th>
|
<th class='text-center' style='width:15%'>".( $options['hide_total'] ? tr('Importo ivato', [], ['upper' => true ]) : tr( 'Importo', [], ['upper' => true]) )."</th>
|
||||||
<th class='text-center' style='width:10%'>".tr('IVA', [], ['upper' => true]).' (%)</th>';
|
<th class='text-center' style='width:10%'>".tr('IVA', [], ['upper' => true]).' (%)</th>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -252,7 +252,7 @@ foreach ($righe as $riga) {
|
|||||||
// Imponibile
|
// Imponibile
|
||||||
echo '
|
echo '
|
||||||
<td class="text-right" style="vertical-align: middle" >
|
<td class="text-right" style="vertical-align: middle" >
|
||||||
'.moneyFormat($riga->totale_imponibile).'
|
'.( $options['hide_total'] ? moneyFormat($riga->totale) : moneyFormat($riga->totale_imponibile) ).'
|
||||||
</td>';
|
</td>';
|
||||||
|
|
||||||
// Iva
|
// Iva
|
||||||
|
Loading…
x
Reference in New Issue
Block a user