|
{{ $dList['product_name'] }} |
{{$dList['categorie_name'] }} |
{{$dList['establishment_name'] }} |
{{storecurrency().$dList['cost_of_goods'] }} |
{{storecurrency().$dList['sales_price'] }} |
{{$dList['vendor_qty_received'] }} |
{{$dList['raw_quantity'] }} |
{{storecurrency().number_format($dList['raw_sales_price'], 2) }} |
@if(Helper::widgetAccess('show_return_columns_in_operations'))
{{$returnRawQuantity }} |
{{storecurrency().number_format($rawSalesPriceReturn, 2) }} |
@endif
{{storecurrency().number_format($dList['item_discount_total'], 2) }} |
{{storecurrency().number_format($dList['order_discount_amount_total'], 2) }} |
{{storecurrency().number_format($dList['net_sales_price'], 2) }} |
{{$voidRawQuantity }} |
{{storecurrency().number_format($rawSalesPriceVoid, 2) }} |
@if(Helper::widgetAccess('show_column_tax_amount'))
{{storecurrency().number_format($dList['tax_amount'], 2) }} |
@endif
@php
$totalQty += $dList['raw_quantity'];
//5 DECIMAL POINTS
$totalSales += $raw_sales_price_5;
$totalTaxAmount += $tax_amount_5;
$totalNetTotal += $net_totals_5;
$totalItemDiscount += $item_discount_total_5;
$totalOrderDiscount += $order_discount_amount_total_5;
@endphp
@endforeach