Logo comercio
Innova Developers {{ config('documentos.leyenda_innova', 'Emitido con Innova ERP') }}
SII

{{ config('simpleapi.dte.razon_social', 'Innova ERP') }}

C.U.I.T. 30-71238627-0

SARMIENTO 2153 LOCAL 197

Bahía Blanca, Buenos Aires

IVA RESPONSABLE INSCRIPTO

FACTURA A
Nº: {{ $numeroFactura }}
Fecha: {{ \Carbon\Carbon::parse($venta->fechaHora_venta)->format('d/m/Y') }}
Hora: {{ \Carbon\Carbon::parse($venta->fechaHora_venta)->format('H:i:s') }}
CAE: {{ $factura->CAE_factura }}
Vencimiento CAE: {{ $factura->fechaVencimiento_factura }}
CLIENTE:
{{ strtoupper($cliente->razon_cliente) }}
RUT: {{ $cliente->rut_cliente }}
@if($cliente->direccion_cliente) Dirección: {{ strtoupper($cliente->direccion_cliente) }}
@endif @if($cliente->telefono_cliente) Teléfono: {{ $cliente->telefono_cliente }}
@endif Condición IVA: {{ $cliente->tipoResponsable->nombre_tresponsable ?? 'CONTRIBUYENTE' }}
@foreach($venta->detalles as $detalle) @php $producto = $detalle->producto; $precioUnitario = floatval($detalle->precioVenta_ventaDetalle); $cantidad = floatval($detalle->cantidad_ventaDetalle); $iva = floatval($producto->iva_producto ?? 0); if ($iva == 10) { $iva = 10.5; } $subtotal = $precioUnitario * $cantidad; $importeIva = $subtotal * ($iva / 100); $total = $subtotal + $importeIva; @endphp @endforeach
Código Descripción Cantidad Precio Unit. % IVA Subtotal IVA Total
{{ $producto->codigo_producto ?? 'N/A' }} {{ strtoupper($producto->nombre_producto ?? 'PRODUCTO') }} {{ $cantidad }} {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($precioUnitario) }} {{ $iva }}% {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($subtotal) }} {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($importeIva) }} {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($total) }}
@if($totalIva10 > 0) @endif @if($totalIva21 > 0) @endif @if($totalIva27 > 0) @endif
Subtotal sin IVA: {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($venta->totalSinIVA_venta) }}
IVA 10.5% (Base: {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($base10) }}): {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($totalIva10) }}
IVA 21% (Base: {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($base21) }}): {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($totalIva21) }}
IVA 27% (Base: {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($base27) }}): {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($totalIva27) }}
TOTAL: {{ \App\Helpers\FormatoMonedaHelper::formatCurrencyWithSymbol($venta->totalVenta_venta) }}