| Código | Descripción | Cant. | P. Unit. | @if(!$registro->is_no_fiscal)Neto | IVA | @endifSubtotal |
|---|---|---|---|---|---|---|
| {{ $detalle->codigo ?? '-' }} | {{ $detalle->descripcion }} | {{ number_format($detalle->cantidad, 2, ',', '.') }} | {{ $registro->moneda->simbolo }} {{ number_format($detalle->precio_unitario, 2, ',', '.') }} | @if(!$registro->is_no_fiscal){{ $registro->moneda->simbolo }} {{ number_format($detalle->neto_gravado, 2, ',', '.') }} | {{ $registro->moneda->simbolo }} {{ number_format($detalle->iva_monto, 2, ',', '.') }} | @endif{{ $registro->moneda->simbolo }} {{ number_format($detalle->iva_subtotal, 2, ',', '.') }} |
| TOTALES: | @if(!$registro->is_no_fiscal){{ $registro->moneda->simbolo }} {{ number_format($totalNeto, 2, ',', '.') }} | {{ $registro->moneda->simbolo }} {{ number_format($totalIva, 2, ',', '.') }} | @endif{{ $registro->moneda->simbolo }} {{ number_format($totalSubtotal, 2, ',', '.') }} | |||
| ALICUOTA | IMPORTE | IVA | IIBB |
|---|---|---|---|
| {{ ucfirst($linea->system_tax->name) }} | {{$registro->moneda->simbolo}} {{ number_format($linea->amount, 2, ',', '.') }} | {{$registro->moneda->simbolo}} {{ number_format($linea->tax_amount, 2, ',', '.') }} | {{$linea->taxable_iibb==1? 'No Gravado IIBB' : 'Gravado IIBB'}} | @endif
| {{$linea->other_tax->name}} | {{$registro->moneda->simbolo}} {{ number_format($linea->amount, 2, ',', '.') }} | @endif |