{{ __('Detail Sales') }}

Period

:

@if ($from_date == $to_date) {{ date('j F Y', strtotime($from_date)) }} @else {{ date('j F Y', strtotime($from_date)) }} - {{ date('j F Y', strtotime($to_date)) }} @endif

Warehouse : {{ $whs }}

{{ $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
{{ $item->code }} {{ $item->barcode }} {{ $item->name }} {{ number_format($item->qty) }} {{ number_format($item->gross) }} {{ number_format($item->disc) }} {{ number_format($item->nett) }}{{ number_format($item->onhand) }}
Total {{ number_format($total_qty) }} {{ number_format($total_gross) }} {{ number_format($total_disc) }} {{ number_format($total_nett) }}{{ number_format($total_onhand) }}