@extends('layouts/pos_layout') @section('title', '| '.$moduleTitle) @section('content') @include('successMsg')
Order List    
{{$moduleTitle}}
Bill No : {{$ordBillNo}} Bill Date : {{date('d-m-Y', strtotime($data->order_date))}} From Branch : {{$data->fromBranch->name}}
To Supplier : {{$data->toSupplier->name}}({{ $data->toSupplier->company_name }}) Total Quantity : {{$data->total_quantity}}


@php $no=0; $t_qty = $t_amount = 0; $iRow = 0;@endphp @foreach($data->posOrderDetails as $details) @php $iRow++; $purchaseBarcodeQuantity = 0; $purchaseBarcodeQuantity = $details->quantity; @endphp @php $t_qty += $purchaseBarcodeQuantity;@endphp @endforeach
SL No. Branch Name Product Name Model Name Current Stock Qty
{{++$no}}
Warning: Undefined variable $details in /home/shikkhaplus/public_html/demo_bk/resources/views/pos/transaction/requisitionForOrderToSupplier/order/approve.blade.php on line 103

Warning: Attempt to read property "fromRequisitionBranch" on null in /home/shikkhaplus/public_html/demo_bk/resources/views/pos/transaction/requisitionForOrderToSupplier/order/approve.blade.php on line 103

Warning: Attempt to read property "branchCode" on null in /home/shikkhaplus/public_html/demo_bk/resources/views/pos/transaction/requisitionForOrderToSupplier/order/approve.blade.php on line 103

Warning: Undefined variable $details in /home/shikkhaplus/public_html/demo_bk/resources/views/pos/transaction/requisitionForOrderToSupplier/order/approve.blade.php on line 103

Warning: Attempt to read property "fromRequisitionBranch" on null in /home/shikkhaplus/public_html/demo_bk/resources/views/pos/transaction/requisitionForOrderToSupplier/order/approve.blade.php on line 103

Warning: Attempt to read property "name" on null in /home/shikkhaplus/public_html/demo_bk/resources/views/pos/transaction/requisitionForOrderToSupplier/order/approve.blade.php on line 103
-
@php $productAll = \App\Models\pos\ProductConfig\PosProduct::whereIntegerInRaw('id',json_decode($details->product_id))->groupBy('name')->get(); //dd($productAll); @endphp @foreach($productAll as $keyProduct => $productData) {{ $productData->name }}
@endforeach
{{$details->posProductModel->name}} {{ $details->current_stock }} @if($isEditAccess == true) @else {{$details->quantity}} @endif
Total {{$t_qty}}
@include('gnr.tools.approvalConfig.approvalLogs') @if($data->authStatus != 'approved' && $data->authStatus != 'rejected') @include('pos.config.approvalSystem.posApprove') @endif
@endsection