|
|
|
@php
$productdata = getProductListByCategoryId($qpvalue->category_id, $qpvalue->product_id);
@endphp
|
{{ $qpvalue->product_code }}
|
{{ $qpvalue->hsn_code }}
|
@php
$isSameState = $purchaseorder->customer->state->id == getSettingData('config_state_id');
if((int) $qpvalue->cgst_per === 0 && (int) $qpvalue->igst_per > 0){
$qpvalue->cgst_per = $qpvalue->sgst_per = $qpvalue->igst_per/2;
}
if((int) $qpvalue->igst_per === 0 && (int) $qpvalue->cgst_per > 0){
$qpvalue->igst_per = $qpvalue->cgst_per * 2;
}
@endphp
{{ $qpvalue->cgst_per }} %(CGST)
{{ $qpvalue->sgst_per ?? 0.00 }} %(SGST)
{{ $qpvalue->igst_per ?? 0.00 }} %(IGST)
|
|
@if($qpvalue->purchase_order_product_size->isNotEmpty())