| # | Product | Unit | Ordered | Received | Accepted | Rejected | Rate | Tax | Amount | Lot/Batch |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} |
{{ $item->product->name ?? 'N/A' }}
@if($item->variation) {{ $item->variation->variation_name ?: $item->variation->sku }}@endif @if($item->product && $item->product->sku) SKU: {{ $item->product->sku }}@endif @if($item->product && $item->product->hsn_code) HSN: {{ $item->product->hsn_code }}@endif |
{{ $item->unit->short_name ?? '-' }} | {{ number_format($item->ordered_qty, 2) }} | {{ number_format($item->received_qty, 2) }} | {{ number_format($item->accepted_qty, 2) }} | {{ $item->rejected_qty > 0 ? number_format($item->rejected_qty, 2) : '-' }} | ₹{{ number_format($item->rate, 2) }} | @if($item->tax_1_name){{ $item->tax_1_name }} ({{ $item->tax_1_rate }}%)@elseif($taxRate > 0)GST {{ $taxRate }}%@else - @endif | ₹{{ number_format($lineTotal, 2) }} |
@if($item->lot_no)L: {{ $item->lot_no }} @endif @if($item->batch_no)B: {{ $item->batch_no }} @endif @if($item->expiry_date)Exp: {{ $item->expiry_date->format('d/m/Y') }}@endif @if(!$item->lot_no && !$item->batch_no) - @endif |
| Rejection: {{ $item->rejection_reason }} | ||||||||||
| Taxable Amount | ₹{{ number_format($totalValue - $totalTax, 2) }} |
| Tax Amount | ₹{{ number_format($totalTax, 2) }} |
| Total Value | ₹{{ number_format($totalValue, 2) }} |