| Sales vs Stock Report |
|---|
| Period : {{ $period }} |
| {{ __('Warehouse') }} | {{ __('ItemCode') }} | {{ __('CodeBars') }} | {{ __('ItemName') }} | @foreach($udf_column as $column){{ $column }} | @endforeach{{ __('Qty') }} | {{ __('Gross') }} | {{ __('Disc') }} | {{ __('Nett') }} | {{ __('OnHand') }} |
|---|---|---|---|---|---|---|---|---|---|
| {{ Str::limit(strip_tags($item['whs']), 50) }} | {{ $item['code'] }} | {{ $item['barcode'] }} | {{ Str::limit(strip_tags($item['name']), 50) }} | @foreach($udf_column as $column){{ $item[$column] }} | @endforeach{{ $item['qty'] }} | {{ $item['gross'] }} | {{ $item['disc'] }} | {{ $item['nett'] }} | {{ $item['onhand'] }} | @php $total_qty += $item['qty']; $total_gross += $item['gross']; $total_disc += $item['disc']; $total_nett += $item['nett']; $total_onhand += $item['onhand']; @endphp
| Total | @foreach($udf_column as $column)@endforeach | {{ $total_qty }} | {{ $total_gross }} | {{ $total_disc }} | {{ $total_nett }} | {{ $total_onhand }} | |||