{% extends 'facturacion/impresos/impreso_base.html.twig' %} {% block tipo_comprobante %} FACTURA A {% endblock %} {% block datos_cliente %}
{{ factura.cliente.apenom | upper }}
{{ factura.cliente.direccion }}
{{ factura.cliente.condIva ? factura.cliente.condIva.condicion : '' }}
{% endblock %} {% block datos_izquierda %} {% include 'facturacion/impresos/data_empresa.html.twig' %} {% endblock %} {% block datos_derecha %}N° Control: {% if comprobante and comprobante.talonario %} {{ '%04d' | format(comprobante.talonario.nroTalonario) }} - {{ '%08d' | format(comprobante.nroComp) }}
{% endif %}Fecha: {{ comprobante.fechaComp | date('d-m-Y') }}
C.U.I.T. N°: 20-14305977-5
ING. BRUTOS C.M. N°: 921-747180-2
INICIO DE ACTIVIDAD: 01/01/1992
I.V.A. RESPONSABLE INSCRIPTO
C.U.I.T./L: {{ factura.cliente.cuilt }}
{{ factura.cliente.localidad.descripcionLoc }}, {{ factura.cliente.localidad.provincia.descripcionPro }}
{{ factulinea.cantidad }} | {% if factulinea.articulo %}{{ factulinea.articulo.codigo }}{% endif %} | {% if factulinea.articulo %}{{ factulinea.articulo.descripcionAmpliada }}{% endif %} | {% if factura.porcentajeDesc > 0 %} {{ ( precio - ( precio * factura.porcentajeDesc /100 ) ) | number_format(2,",",".") }} {% endif %} {% if factura.porcentajeAum > 0 %} {{ ( precio + ( precio * factura.porcentajeDesc /100 ) ) | number_format(2,",",".") }} {% endif %} {% if not factura.porcentajeAum and not factura.porcentajeDesc %} {{ precio | number_format(2,",",".") }} {% endif %} | {{ factulinea.importe | number_format(2,",",".") }} |
Subtotal | {{ factura.porcentajeAumtotal > 0 ? "% Aum." : "% Dto." }} | {{ factura.porcentajeAumtotal > 0 ? "% Subtotal c/Aum." : "% Subtotal c/Dto." }} | % I.V.A. | I.V.A. |
{{ ( factura.totalFactura + factura.alicuota) | number_format(2,",",".") }} | {{ factura.porcentajeAumtotal }} | {{ ( factura.totalFactura * ( factura.porcentajeAumtotal / 100) ) | number_format(2,",",".") }} | 21 | {{ ( factura.totalFactura * 21 / 100) | number_format(2,",",".") }} |
{{ ( factura.totalFactura + factura.alicuota ) | number_format(2,",",".") }} | {{ factura.porcentajeDesc }} | {{ ( factura.totalFactura - factura.alicuota - ( factura.totalFactura - factura.alicuota * ( factura.porcentajeDesc / 100 ) ) ) | number_format(2,",",".") }} | ||
{{ (factura.totalFactura - factura.alicuota) | number_format(2,",",".") }} |
Alicuota | Subtotal |
{{ alicuota_aplicado }}% | {{ factura.alicuota }} |