| # | DESCRIPTION | HSN CODE | QTY | UNIT | PRICE/UNIT | GST | DISCOUNT | AMOUNT |
|---|---|---|---|---|---|---|---|---|
| {{ $item->description }} | ||||||||
| {{ $item->long_description ?: $item->description }} | ||||||||
| {{ $itemIndex }} |
{{ $item->description }}
@if($item->long_description)
{{ $item->long_description }}
@endif
|
@if($product && $product->hsn_code) {{ $product->hsn_code }} @else - @endif | {{ number_format($item->quantity, 2) }} | @php $unitText = $item->unit ?? ($product && $product->unit ? $product->unit->short_name : null); @endphp @if($unitText) {{ $unitText }} @else - @endif | {{ number_format($item->rate, 2) }} | @foreach($itemTaxIds as $taxId) {{ $taxRatesMap[$taxId] ?? 0 }}% @endforeach @if(empty($itemTaxIds)) - @endif |
@if(($item->discount_amount ?? 0) > 0)
-₹{{ number_format($item->discount_amount, 2) }}
({{ $item->discount_type === 'percentage' ? number_format($item->discount_value, 2) . '%' : '₹' . number_format($item->discount_value, 2) }})
@else
-
@endif
|
{{ number_format($item->amount, 2) }} |
| No items | ||||||||