| Sales Performance Report |
|---|
| Period : {{ $period }} |
| Group by : {{ $groupname }} |
| {{ __('Warehouse') }} | {{ $groupname }} | {{ __('Qty') }} | {{ __('Gross') }} | {{ __('Disc') }} | {{ __('Nett') }} | @if ($show_onhand){{ __('OnHand') }} | @endif
|---|---|---|---|---|---|---|
| {{ $item->whs }} | {{ $item->group }} | {{ $item->qty }} | {{ $item->gross }} | {{ $item->disc }} | {{ $item->nett }} | @if ($show_onhand){{ $item->onhand }} | @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|