| Razón Social: | {{ strtoupper($order->first_name . ' ' . $order->last_name) }} | CUIT: | {{ $order->tax_id ?? '-' }} |
| Domicilio: | {{ strtoupper($order->address) }} | Cond. IVA: | {{ $order->customer_type == 'business' ? 'RESPONSABLE INSCRIPTO' : 'CONSUMIDOR FINAL' }} |
| Localidad: | {{ strtoupper($order->city) }} | Cond. Venta: | {{ strtoupper($order->payment_terms ?? 'CONTADO') }} |
| Provincia: | {{ strtoupper($order->state) }} | Remito: | @if($totalWeight > 0)| Peso Total: {{ number_format($totalWeight, 3) }}@endif |
| CP: | {{ $order->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->qty, 2) }} | U | {{ strtoupper($item->name) }} | {{ number_format($item->price, 2) }} | 0.00 | {{ number_format($total, 2) }} |