{% extends 'base.html.twig' %} {% block title%} WONDER-T-Nal Facturar {% endblock %} {% block titulo %} GESTIÓN DE FACTURAS - EMPRESAS TRANSPORTE NACIONAL {% endblock %} {% block bread %} Facturar {% endblock %} {% block body %} {#{{ form_start(form) }}#} {{ form_start(form, { 'attr': {'novalidate':'novalidate', 'class': 'form-material form-horizontal'} }) }}
| Inicio Proceso | Empresa | Origen | Destino | Fecha de Factura | Nº de Factura | Monto en Bs. | Fecha Pago de Factura | Forma de Pago | Personal que registró | Observaciones | Acciones |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ entity.fechainicio|date('d-m-Y') }} | {{ entity.nombre}} | {{ entity.origen}} | {{ entity.destino}} | {{ entity.fcobrofact|date('d-m-Y') }} | {{ entity.factura }} | {{ entity.monto|number_format(2, '.', ',') }} | {% if (entity.fpagofact) %} {{ entity.fpagofact|date('d-m-Y') }} {% endif %} | {{ entity.descripcion}} | {{ entity.username}} | {{ entity.observacion }} | {% if is_granted('ROLE_ADMINISTRADOR')%} {% endif %} {% if (is_granted('ROLE_ADMINISTRADOR') or is_granted('ROLE_TECNICO')) and not entity.fpagofact %} Cobrar {% endif %} {% if is_granted('ROLE_ADMINISTRADOR')%} {% endif %} |