| Razón Social: | {{ strtoupper($quote->first_name . ' ' . $quote->last_name) }} | CUIT: | {{ $quote->tax_id ?? '-' }} |
| Domicilio: | {{ strtoupper($quote->address) }} | Cond. IVA: | {{ $quote->customer_type == 'business' ? 'RESPONSABLE INSCRIPTO' : 'CONSUMIDOR FINAL' }} |
| Localidad: | {{ strtoupper($quote->city) }} | Cond. Venta: | {{ strtoupper($quote->payment_terms ?? 'CONTADO') }}@if($quote->delivery_date) | Fecha.Entrega: {{ \Carbon\Carbon::parse($quote->delivery_date)->format('d/m/Y') }}@endif |
| Provincia: | {{ strtoupper($quote->state) }} | Remito: | @if($totalWeight > 0)| Peso Total: {{ number_format($totalWeight, 3) }}@endif |
| CP: | {{ $quote->zip }} |
| Código | Cantidad | Unidad | Descripción | P. Unitario | Descuento | Importe |
|---|---|---|---|---|---|---|
| @if($item->product && $item->product->CO_ARTI) {{ trim($item->product->CO_ARTI) }} @else - @endif | {{ number_format($item->quantity, 2) }} | U | {{ strtoupper($item->name) }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->discount_percentage ?? 0, 2) }} | {{ number_format($total, 2) }} |