{% extends 'facturacion/impresos/impreso_base.html.twig' %} {% set cliente = factura.cliente %} {% block tipo_comprobante %}

REMITO

{% endblock tipo_comprobante %} {% block datos_cliente %}

{{ factura.cliente.nombre | upper }}

{{ factura.cliente.direccion }}

{{ factura.cliente.condIva ? factura.cliente.condIva.condicion : '' }}

TRANSPORTE: {{ factura.cliente.transporte.Nombre| upper }}

{% 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 %}#} {% if factura %} {{ '0000' }} - {{ '%08d' | format(factura.codfactura) }}

{% endif %} {#

Fecha: {{ comprobante.fechaComp | date('d-m-Y') }}

#}

C.U.I.T. N°: 20-37299599-9

ING. BRUTOS C.M. N°: 011-499907-2

INICIO DE ACTIVIDAD: 13/05/2024

I.V.A. RESPONSABLE INSCRIPTO

C.U.I.T./L: {{ factura.cliente.cuilt }}

{% if factura.cliente.localidad %} {{ factura.cliente.localidad.descripcionLoc ?: 'sin localidad' }}, {{ factura.cliente.localidad.provincia.descripcionPro ?: 'sin provincia' }} {% else %} sin localidad, sin provincia {% endif %}

Fecha:{{ factura.fechaoperacion |date('d/m/Y') }}

{% endblock %} {% block detalle_productos %}
{% set dto_col = 0 %} {% for factulinea in factura.factulineas %} {% set precio = factulinea.precioManual ? factulinea.precioManual : factulinea.precio %} {% endfor %} {% if dto_col == 0 %} {% endif %}
Cant. Código Descripción
{{ factulinea.cantidad }} {% if factulinea.articulo %}{{ factulinea.articulo.codigo }}{% endif %} {% if factulinea.articulo %}{{ factulinea.articulo.descripcion }}{% endif %}
{#
#} {#
#} {#
Cantidad
#} {#
Código
#} {#
Descripción
#} {#
Precio Unit.
#} {#
DESC/AUM
#} {#
Importe
#} {#
#} {# #} {# {% set dto_col = 0 %}#} {# {% for factulinea in factura.factulineas %}#} {# {% set precio = factulinea.precioManual ? factulinea.precioManual : factulinea.precio %}#} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# #} {# {% endfor %}#} {# {% if dto_col == 0 %}#} {# #} {# {% endif %}#} {#
{{ factulinea.cantidad }}{% if factulinea.articulo %}{{ factulinea.articulo.codigo }}{% endif %}{% if factulinea.articulo %}{{ factulinea.articulo.descripcion }}{% endif %}{{ precio | number_format(2,",",".") }}#} {# {% if factulinea.dcto<0 %}#} {# {% if factulinea.dcto>-99 %}#} {# {{ factulinea.dcto }}%#} {# {% endif%}#} {# {% if factulinea.dcto<-99 %}#} {# ${{ factulinea.dcto }}#} {# {% endif %}#} {# {% set dto_col=1 %}#} {# {% endif%}#} {# {% if factulinea.dcto>0 %}#} {# {% if factulinea.dcto<99 %}#} {# {{ factulinea.dcto }}%#} {# {% endif %}#} {# {% if factulinea.dcto>99 %}#} {# ${{ factulinea.dcto }}#} {# {% endif %}#} {# {% set dto_col=1 %}#} {# {% endif %}#} {# {{ (factulinea.importe ) | number_format(2,",",".") }}
#} {#
#} {% endblock %} {% block footer %}
Subtotal {{ factura.porcentajeAumtotal > 0 ? "% Aum." : "% Dto." }} Aum. Forma de Pago Des. Forma de Pago {{ factura.porcentajeAumtotal > 0 ? "% Subtotal c/Aum." : "% Subtotal c/Dto." }}
Condición de Pago: {# {% if factura.formaPago == 'TA' %}Tarjeta{% else %}{{ factura.totalCuentaCorriente ? 'Cuenta Corriente' : 'Contado' }}{% endif %}#} {% if factura.formaPago == 'TA' %} TARJETA {% endif %} {% if factura.formaPago == 'EF' %} EFECTIVO {% endif %} {% if factura.formaPago == 'CC' %} CUENTA CORRIENTE {% endif %} {% if factura.formaPago == 'FI' %} FINANCIERA {% endif %} {% if factura.formaPago == 'MU' %} MUTUAL {% endif %} {% if factura.formaPago == 'DI' %} DIVIDIDO {% endif %} {% if factura.formaPago == 'QR' %} QR {% endif %} {% if factura.formaPago == 'TRAN' %} TRANSFERENCIA {% endif %}
{% set total_final = factura.totalCuentaCorriente + factura.totalCheque + factura.totalEfectivo + factura.totalTarjeta + factura.totalMutual + factura.totalFinanciera + factura.totalQr + factura.totalTransferencia %} TOTAL: $ {{ ( total_final ) | number_format(2,",",".") }}.-
{% endblock %} {% block full %}
{% if comprobante and comprobante.talonario %} NUMERO DE FACTURA DE COMPRA ORIGINAL: {{ '%04d' | format(comprobante.talonario.nroTalonario) }} - {{ '%08d' | format(comprobante.nroComp) }}
Fecha Vencimiento: {{ comprobante.fechaFormateada }}
{% endif %} COMPROBNANTE NO VÁLIDO COMO FACTURA (sin valor fiscal) | RECIBI CONFORME_________________
{#
#} {# CAE: {{ comprobante.cae }}
#} {# Fecha Vencimiento: {{ comprobante.fechaFormateada }}#} {# {% if comprobante.codigoQRUri %}#} {#
#} {# {% endif %}#} {#
#} {% if factura is defined and factura.cajas %}
Cantidad de BULTOS {{ factura.cajas }}
{% endif %} {% endblock %}