X

{{-- --}}
X Comprobante
OLI

Comprobante

Nº: {{ $sale->id }}

Fecha: {{ $sale->registration_date->format('d/m/Y') }}

Cliente: {{ $sale->customer->name }} CUIT: {{ $sale->customer->cuit }}
Domicilio: {{ $sale->customer->address }} Localidad: {{ $sale->customer->city }} - {{ $sale->customer->province?->name }}
Domicilio de entrega:

Moneda: {{ $sale->currency->name }}

@foreach ($items as $item) @endforeach
Cantidad Descripción Color P.U. Total
{{ number_format($item->quantity, 2, ',', '.') }} {{ $item->product->measurementUnit->name }}
Rollos: {{ number_format($item->packages_quantity, 2, ',', '.') }}
{{ $item->product->name }}
{{ $item->notes }}
{{ $item->color->name }} {{ number_format($item->price, 2, ',', '.') }} {{ number_format($item->price * $item->quantity, 2, ',', '.') }}
Cantidad: {{ number_format($sale->presaleItems->sum('quantity'), 2, ',', '.') }}
Total Rollos: {{ number_format($sale->presaleItems->sum('packages_quantity'), 2, ',', '.') }}
TOTAL {{ number_format($sale->subtotal_amount - $sale->discount_amount, 2, ',', '.') }}