SELECCIONA "COPIAR" O "MODIFICAR" (ARRIBA) PARA HABILITAR EL GUARDADO.
{{ statusMsg }}
Nº {{ cleanFormatNum(form.Correlativo) }}
FECHA: {{ new Date().toLocaleDateString('es-CL') }}
{{ form.proveedor || '-' }}
| ITEM | SERVICIO / PRODUCTO | CANT. | P. UNITARIO | MONTO TOTAL |
|---|---|---|---|---|
| {{idx + 1}} | {{ item.detalle || '-' }} | {{ item.cantidad || 0 }} | {{ formatCurrency(item.unitario || 0, form['tipo de cambio']) }} | {{ formatCurrency((item.cantidad || 0) * (item.unitario || 0), form['tipo de cambio']) }} |
| TOTAL {{ form['tipo de cambio'] }} NETO: | {{ formatCurrency(subtotalNeto, form['tipo de cambio']) }} |
| (TC: ${{ formatCurrency(currentRate, 'USD') }}) | |
| TOTAL NETO CLP: | {{ formatCurrency(subtotalNeto * currentRate, 'CLP') }} |
| IVA (19%): | {{ formatCurrency(subtotalNeto * currentRate * 0.19, 'CLP') }} |
| TOTAL CLP: | {{ formatCurrency(subtotalNeto * currentRate * 1.19, 'CLP') }} |
| IVA (19%): | {{ formatCurrency(subtotalNeto * 0.19, 'CLP') }} |
| TOTAL FINAL: | CLP {{ formatCurrency(subtotalNeto * 1.19, 'CLP') }} |