| # | @lang('sale.product') | HSN Code | MRP | Basic Price | Tax Rate | Cost Price | @lang('sale.qty') | Subtotal |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $sell_lines->product->name }}
@if( $sell_lines->product->type == 'variable')
- {{ $sell_lines->variations->product_variation->name}}
- {{ $sell_lines->variations->name}}
@endif
- {{ $sell_lines->variations->sub_sku}}
@if($lot_n_exp_enabled && !empty($sell_lines->lot_details))
@lang('lang_v1.lot_n_expiry'): @if(!empty($sell_lines->lot_details->lot_number)) {{$sell_lines->lot_details->lot_number}} @endif @if(!empty($sell_lines->lot_details->exp_date)) - {{@format_date($sell_lines->lot_details->exp_date)}} @endif @endif |
{{ $sell_lines->product->hsn_code }} | {{ $sell_lines->variations->product_mrp }} | {{ $sell_lines->unit_price }} |
{{ $sell_lines->quantity * $sell_lines->item_tax }} @if($sell_lines->product->product_tax) ( {{ $sell_lines->product->product_tax->name }} ) @endif |
{{ $sell_lines->unit_price_inc_tax }} | {{ @format_quantity($sell_lines->quantity) }} {{$sell_lines->product->unit->short_name ?? ""}} | {{ $sell_lines->unit_price_inc_tax * $sell_lines->quantity }} |
| @lang('Total Basic Amount'): | {{ $total-$total_tax }} | |
|---|---|---|
| {{ __('lang_v1.line_taxes') }}: |
@if(!empty($line_taxes))
@foreach($line_taxes as $k => $v)
{{$k}} @endforeach @endif |
@if(!empty($line_taxes))
@foreach($line_taxes as $k => $v)
{{ $v }} @endforeach @else 0.00 @endif |
| Total Tax | {{ $total_tax }} | |
| @lang('purchase.additional_shipping_charges'): | (+) | {{ $sell_transfer->shipping_charges }} | @lang('purchase.net_total_amount'): | {{ $sell_transfer->final_total }} |
@if($sell_transfer->additional_notes) {{ $sell_transfer->additional_notes }} @else -- @endif