ESTUDIO SOUILHE
| Liquidación N° {{ caso.numero }} |
Fecha: {{ "now"|date("d/m/Y") }} |
{{ include('caso/liquidacion/detalleLiquidacionClientesSinConvenio.html.twig', { print : true } ) }}
{% if caso.gastosGenerales| length > 0 %}
| Concepto |
Fecha |
Monto |
{% for gasto in caso.gastosGenerales %}
| {{ gasto.tipomovimiento }} |
{{ gasto.fecha | date('d/m/Y') }} |
{{ gasto.monto }} |
{% endfor %}
| TOTAL GASTOS GENERALES |
|
{{ caso.totalGastosGenerales }} |
{% endif %}
{% set totalBonificado = 0 %}
{% if caso.gastosBonificados| length > 0 %}
| Concepto |
Cliente |
Fecha |
Monto |
{% for gasto in caso.gastosBonificados %}
| {{ gasto.tipomovimiento }} |
{{ gasto.cliente }} |
{{ gasto.fecha | date('d/m/Y') }} |
{{ gasto.monto }} |
{% set totalBonificado = totalBonificado + gasto.monto %}
{% endfor %}
| TOTAL BONIFICADO |
{{ totalBonificado }} |
{% endif %}