| Sales Performance Report |
|---|
| Period : {{ $period }} |
| Group by : {{ $groupname }}, {{ $groupname2 }}, {{ $groupname3 }} |
| {{ $groupname }} : {{ $group }} |
| {{ $groupname2 }} : {{ $group2 }} |
| {{ __('Warehouse') }} | {{ $groupname }} | {{ $groupname2 }} | {{ $groupname3 }} | {{ __('Qty') }} | {{ __('Gross') }} | {{ __('Disc') }} | {{ __('Nett') }} | @if ($show_onhand){{ __('OnHand') }} | @endif
|---|---|---|---|---|---|---|---|---|
| {{ $item->whs }} | {{ $item->group }} | {{ $item->group2 }} | {{ $item->group3 }} | {{ $item->qty }} | {{ $item->gross }} | {{ $item->disc }} | {{ $item->nett }} | @if ($show_onhand){{ $item->nett }} | @php $total_onhand += $item->onhand; @endphp @endif @php $total_qty += $item->qty; $total_gross += $item->gross; $total_disc += $item->disc; $total_nett += $item->nett; @endphp
| Total | {{ $total_qty }} | {{ $total_gross }} | {{ $total_disc }} | {{ $total_nett }} | @if ($show_onhand){{ $total_onhand }} | @endif|||