@if (isset($inventoryItems) && count($inventoryItems) > 0 && $department > 0) {{--
--}} @php $i = 1; @endphp @foreach ($inventoryItems as $detail) @php $quantity = ''; $actualStock = ''; if(array_key_exists($detail->id.'|'.$department , $items)){ $quantity = $items[$detail->id.'|'.$department]; } if(array_key_exists($detail->id.'|'.$department,$actualStocks)){ $actualStock = $actualStocks[$detail->id.'|'.$department]; } @endphp
{{ $detail->name }} @php $nettoPrice = $detail->sale_price_excl_vat; @endphp @if ($detail->weight > 0 && false) @php $nettoPrice = $detail->sale_price_excl_vat / $detail->weight; @endphp @endif
{!! __('stock_request.netto_price') !!}: {!! numberFormat($nettoPrice) !!} @if ($detail->stock_in > 0)
(In stock - {!! $detail->stock_in !!}) @endif
{!! ($detail->weight_type > 0) ? weightType($detail->weight_type) : '' !!}
@endforeach {{--
--}} @elseif($page <= 1) @if($department <= 0)
{{ __('common.no_department_selected') }}
@else
{{ __('common.no_record_found') }}
@endif @endif