{{ empresa.nombre | default('Mi Empresa S.A. de C.V.') }}
{{ empresa.direccion | default('Av. Reforma 222, Col. Juárez, CDMX') }}
RFC: {{ empresa.rfc | default('MIE260101XXX') }}
Tel: {{ empresa.telefono | default('+52 55 1234 5678') }}
{{ cliente.nombre | default('Cliente Ejemplo S.A.') }}
{{ cliente.direccion | default('Blvd. Ávila Camacho 40, Lomas, CDMX') }}
RFC: {{ cliente.rfc | default('CEJ260101XXX') }}
{{ cliente.email | default('contacto@cliente.com') }}
Factura original: {{ nota.factura_ref | default('FAC-2026-0142') }}
Fecha factura: {{ nota.factura_fecha | default('2026-06-01') }}
Motivo: {{ nota.motivo_codigo | default('01') }} — {{ nota.motivo_desc | default('Devolución de mercancía') }}
| # | Concepto | Cant. | P. Unit. | Desc. | Importe |
|---|---|---|---|---|---|
| {{ item.clave | default('') }} | {{ item.descripcion }} | {{ item.cantidad }} | ${{ '{:,.2f}'.format(item.precio_unitario) }} | ${{ '{:,.2f}'.format(item.descuento | default(0)) }} | ${{ '{:,.2f}'.format(item.importe) }} |
| Subtotal | ${{ '{:,.2f}'.format(nota.subtotal | default(7400.00)) }} |
| IVA (16%) | ${{ '{:,.2f}'.format(nota.iva | default(1184.00)) }} |
| Total nota de crédito | ${{ '{:,.2f}'.format(nota.total | default(8584.00)) }} {{ nota.moneda | default('MXN') }} |
{{ empresa.representante | default('Nombre del Representante') }}
{{ empresa.cargo | default('Director Financiero') }}
{{ cliente.representante | default('Nombre del Cliente') }}
Recibido conforme