@include('purchase::partials.styles')
| # | Product | Unit | Qty | Ordered | Pending | Est. Price | Est. Total |
|---|---|---|---|---|---|---|---|
| {{ $idx + 1 }} |
@if($imageUrl)
{{ $item->product->name ?? 'N/A' }}
|
{{ $item->unit->short_name ?? $item->unit->name ?? '-' }} | {{ number_format($item->qty, 3) }} | {{ number_format($item->ordered_qty, 3) }} | {{ number_format($item->pending_qty, 3) }} | ₹{{ number_format($item->estimated_price ?? 0, 2) }} | ₹{{ number_format($lineTotal, 2) }} |
| No items found | |||||||
| Estimated Total: | ₹{{ number_format($grandTotal, 2) }} | ||||||
{{ $pr->notes }}