{% extends 'base.html.twig' %} {% block title %}Rendiciones{% endblock %} {% block body %} {{ include('rendicion/panel/header.html.twig') }}
Observación
Fecha registro
Fecha inicio
Fecha fin
Estado
Monto

Ingresar Gastos

No se aceptan boletas Mayores a 30 días
{% set total=0 %} {% for detalle in rendicion.rendicionDetalles %} {% set total = total + detalle.monto %} {% endfor %} {% set resta=rendicion.monto-total %} {% if resta>=0 %} {% else %} {% set resta=resta*-1 %} {% endif %}
Concepto Descripción Tipo Documento Numero Factura Fecha Factura Monto Acciones
{{detalle.concepto}} {{detalle.descripcion}} {{detalle.tipoDocumento}} {{detalle.boleta}} {{detalle.fechaDocumento?detalle.fechaDocumento|date('Y-m-d H:i:s'):''}} {{detalle.monto}}
Total Gastos ${{total|number_format}}
Total Solicitado ${{rendicion.monto|number_format}}
Devolver ${{resta|number_format}} Pagar ${{resta|number_format}}
{{ include('rendicion/panel/footer.html.twig') }} {% endblock %}