{% set cliente = factura.cliente %} {% set numero = factura.codfactura %} {% extends 'facturacion/impresos/impreso_base_2.html.twig' %} {% block tipo_comprobante %}NOTA DE PEDIDO{% endblock %} {% block contenido %} {% for factulinea in factura.factulineas %} {% set precio = factulinea.precioManual ? factulinea.precioManual : factulinea.precio %} {% endfor %} {% if factura.porcentajeDesc and factura.porcentajeDesc != '0.00'%} {% elseif factura.descuentoMonto and factura.descuentoMonto > 0 %} {% else %} {% endif %}
Cod. Cantidad Precio Detalle Total
{% if factulinea.articulo %}{{ factulinea.articulo.codigo }}{% endif %} {{ factulinea.cantidad }} {% 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 %} {% if factulinea.articulo %}{{ factulinea.articulo.descripcionAmpliada }}{% endif %} {{ factulinea.importe | number_format(2,",",".") }}
Sub Total: $ {{ factura.totalFactura | number_format(2) }}
Descuento: {{ factura.porcentajeDesc }}%
Total: $ {{ (factura.totalFactura - factura.totalFactura * factura.porcentajeDesc / 100 ) | number_format(2) }}
Sub Total: $ {{ factura.subtotal | number_format(2) }}
Descuento: $ {{ factura.descuentoMonto | number_format(2) }}
Total: $ {{ factura.totalFactura | number_format(2) }}
Sub Total: $ {{ factura.subtotal | number_format(2) }}
Total: $ {{ ( factura.totalFactura - factura.descuentoEfectivo ) | number_format(2) }}
{{ app.user.nombre }}

* La factura se enviará automáticamente por correo electrónico.
También puede retirarla en los próximos días hábiles en Club94 Sport Center.
{% endblock %}