Detail Sales Report
Period : {{ $period }}
Warehouse : {{ $whs }}
Filter : {{ $groupname }} ({{ $group }}), {{ $groupname2 }} ({{ $group2 }}), {{ $groupname3 }} ({{ $group3 }})
@if ($show_onhand) @endif @php $total_qty = 0; $total_gross = 0; $total_disc = 0; $total_nett = 0; @endphp @if ($show_onhand) @php $total_onhand = 0; @endphp @endif @foreach ($datadetail3 as $item) @if ($show_onhand) @endif @php $total_qty += $item->qty; $total_gross += $item->gross; $total_disc += $item->disc; $total_nett += $item->nett; @endphp @if ($show_onhand) @php $total_onhand += $item->onhand; @endphp @endif @endforeach @if ($show_onhand) @endif
{{ __('Code') }} {{ __('Barcode') }} {{ __('Name') }} {{ __('Qty') }} {{ __('Gross') }} {{ __('Disc') }} {{ __('Nett') }}{{ __('OnHand') }}
{{ $item->code }} {{ $item->barcode }} {{ $item->name }} {{ $item->qty }} {{ $item->gross }} {{ $item->disc }} {{ $item->nett }}{{ $item->onhand }}
Total {{ $total_qty }} {{ $total_gross }} {{ $total_disc }} {{ $total_nett }}{{ $total_onhand }}