{% extends 'base.html.twig' %} {% block title %}Factura{% endblock %} {% block body %}

Factura

Id {{ factura.id }}
Clave {{ factura.clave }}
Ruc {{ factura.ruc }}
Serie {{ factura.serie }}
Numero {{ factura.numero }}
Cliente {{ factura.cliente }}
Estado {{ factura.estado }}
Emision {{ factura.emision ? factura.emision|date('Y-m-d H:i:s') : '' }}
Xml {{ factura.xml }}
FecAutorizacion {{ factura.fecAutorizacion ? factura.fecAutorizacion|date('Y-m-d H:i:s') : '' }}
CreatedAt {{ factura.createdAt ? factura.createdAt|date('Y-m-d H:i:s') : '' }}
UpdatedAt {{ factura.updatedAt ? factura.updatedAt|date('Y-m-d H:i:s') : '' }}
back to list edit {{ include('factura/_delete_form.html.twig') }} {% endblock %}