Fix minore #1281
This commit is contained in:
parent
03844b634f
commit
4ecfab8308
|
@ -44,7 +44,7 @@ $totale_iva_periodo_precedente = $totale_iva_vendite_periodo_precedente - $total
|
|||
|
||||
$totale_iva = $totale_iva_esigibile - $totale_iva_detraibile;
|
||||
|
||||
if ($periodo['valore'] == 'Trimestrale' && $totale_iva > 0) {
|
||||
if ($periodo['valore'] == 'Trimestrale' && $totale_iva > 25.82) {
|
||||
if ($totale_iva_periodo_precedente < 25.82 && $totale_iva_periodo_precedente > 0) {
|
||||
$totale_iva += $totale_iva_periodo_precedente;
|
||||
}
|
||||
|
@ -300,7 +300,7 @@ echo '
|
|||
</tr>
|
||||
<tr>
|
||||
<td>IVA A DEBITO CON MAGGIORAZIONE</td>';
|
||||
if ($totale_iva > '25.82' && $periodo['valore'] == 'Trimestrale') {
|
||||
if ($totale_iva > 25.82 && $periodo['valore'] == 'Trimestrale') {
|
||||
echo'
|
||||
<td class=text-right>'.moneyFormat($totale_iva_maggiorata, 2).'</td>';
|
||||
} else {
|
||||
|
@ -312,7 +312,7 @@ echo '
|
|||
<tr>
|
||||
<td>IMPORTO DA VERSARE</td>';
|
||||
if ($totale_iva > 25.82) {
|
||||
if ($periodo['valore'] == 'Mensile' || ($totale_iva_periodo_precedente < 25.82 && $totale_iva_periodo_precedente > 0)) {
|
||||
if ($periodo['valore'] == 'Mensile') {
|
||||
echo'
|
||||
<td class=text-right>'.moneyFormat($totale_iva, 2).'</td>';
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue