Total pesos en forma pago y detalle cuotas

This commit is contained in:
2023-11-27 17:23:10 -03:00
parent df679b2a1a
commit a28c51d94c
2 changed files with 113 additions and 15 deletions

View File

@ -12,8 +12,11 @@
</td>
<td class="right aligned">
<strong>
{{$format->pesos($formaPago->total('pesos'))}}
{{$format->pesos($formaPago->total('pesos') - (($formaPago->bonoPie) ? $formaPago->bonoPie->pago->valor : 0))}}
</strong>
@if ($formaPago->bonoPie)
<sup>*</sup>
@endif
</td>
<td class="right aligned" >
@if (abs($venta->saldo() / $venta->valor) > 0.01)
@ -26,3 +29,13 @@
</td>
<td></td>
</tr>
@if ($formaPago->bonoPie)
<tr>
<td colspan="6">
<span class="ui small text">
<sup>*</sup>
Total en pesos no incluye Promociones como Bono Pie
</span>
</td>
</tr>
@endif