Procure costumes, jewelry, and props from weavers and suppliers with automated asset code generation.
| PO Number | Supplier | Date | Items & Qty | Total Amount | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $po->purchase_number }} | {{ $po->supplier->name }} {{ $po->supplier->city ?? 'Kerala' }} @if($po->supplier->gstin) GST: {{ $po->supplier->gstin }} @endif | {{ $po->purchase_date->format('d M Y') }} | @foreach($po->items as $item) {{ $item->quantity }}× {{ $item->product->name }} @endforeach | ₹{{ number_format($po->total_amount, 2) }} | {{ $po->status }} |
@if($po->status !== 'received')
@else
Received
@endif
|
| No purchase orders created yet. | ||||||
Order Date: {{ $viewingPurchase->purchase_date->format('d M Y') }}
| Item / Product | SKU | Quantity | Unit Cost | Total |
|---|---|---|---|---|
| {{ $item->product->name }} | {{ $item->product->sku }} | {{ $item->quantity }} | ₹{{ number_format($item->unit_cost, 2) }} | ₹{{ number_format($item->total_amount, 2) }} |