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 %}

{% for gasto in caso.gastosGenerales %} {% endfor %}
Concepto Fecha Monto
{{ gasto.tipomovimiento }} {{ gasto.fecha | date('d/m/Y') }} {{ gasto.monto }}
TOTAL GASTOS GENERALES {{ caso.totalGastosGenerales }}
{% endif %} {% set totalBonificado = 0 %} {% if caso.gastosBonificados| length > 0 %}

{% for gasto in caso.gastosBonificados %} {% set totalBonificado = totalBonificado + gasto.monto %} {% endfor %}
Concepto Cliente Fecha Monto
{{ gasto.tipomovimiento }} {{ gasto.cliente }} {{ gasto.fecha | date('d/m/Y') }} {{ gasto.monto }}
TOTAL BONIFICADO {{ totalBonificado }}
{% endif %}
{{ include('caso/liquidacion/liquidacionClientes.html.twig', { print:true} ) }}
{% set totalDebeCliente = caso.totalACobrarPCL + caso.totalGastosGenerales + caso.totalGastosClientes %}
TOTAL A ABONAR DE PACTO CUOTA LITIS MÁS GASTOS {{ totalDebeCliente|number_format(2, ',', '.') }}