{{-- New-Unity ERP | sales/orders/pdf/sales-order-pdf.blade.php | v1.2 | 26/06/2026 --}}
|
{{ $company->commercial_name ?? $company->name ?? config('app.name') }}
RFC: {{ $company->rfc ?? '' }}
{{ $company->street ?? '' }}{{ ($company->exterior ?? '') ? ' #'.$company->exterior : '' }}, {{ $company->colony ?? '' }}
{{ $company->city ?? '' }}, {{ $company->state ?? '' }} C.P. {{ $company->postal_code ?? '' }}
|
SALES ORDER
{{ $order->folDisplay() }}
|
|
📦 Ship To
{{ $order->customer_name }}
@if($order->customer_contact_name)Attn: {{ $order->customer_contact_name }} @endif @if($order->customer_address){{ $order->customer_address }} @endif |
🧾 Bill To
{{ $order->customer_name }}
RFC: {{ $order->customer_rfc ?? '—' }} Customer #: {{ $order->customer_number ?? '—' }} Created by: {{ $order->user?->name ?? '—' }} |
| # | SKU | Description | Unit | Qty | Del. | Pend. | Unit Price | Amount |
|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $product->sku ?? '—' }} | {{ $product->product_name }} | {{ $product->unity ?? '—' }} | {{ number_format($product->quantity, 0) }} | {{ number_format($product->quantity_delivered, 0) }} | {{ number_format($product->pendingQty(), 0) }} | ${{ number_format($product->sales_price, 2) }} | ${{ number_format($product->amount, 2) }} |
| No products | ||||||||
|
|
Notes / Conditions
{{ $order->notes ?? '' }}
Authorized Signature / Firma Autorizada
|
Scan for Tracking
{{ $order->folDisplay() }}
{{ url('/sales/orders/'.$order->id) }} |