| Detail Sales Report |
|---|
| Period : {{ $period }} |
| Warehouse : {{ $whs }} |
| Filter : {{ $groupname }} ({{ $group }}) |
| {{ __('Code') }} | {{ __('Barcode') }} | {{ __('Name') }} | {{ __('Qty') }} | {{ __('Gross') }} | {{ __('Disc') }} | {{ __('Nett') }} | @if ($show_onhand){{ __('OnHand') }} | @endif
|---|---|---|---|---|---|---|---|
| {{ $item->code }} | {{ $item->barcode }} | {{ $item->name }} | {{ $item->qty }} | {{ $item->gross }} | {{ $item->disc }} | {{ $item->nett }} | @if ($show_onhand){{ $item->onhand }} | @endif
| Total | {{ $total_qty }} | {{ $total_gross }} | {{ $total_disc }} | {{ $total_nett }} | @if ($show_onhand){{ $total_onhand }} | @endif||