Page No: {{$pageNo++}}
{{ is_numeric(Auth::user()->active_unit) ? \App\Unit::query()->findOrFail(Auth::user()->active_unit)->name : 'NULL' }}
Inventory Transaction
{{--Transaction Type : Purchase
--}}Report From {{ dateFormat($from) }} To {{ dateFormat($to) }}
| #SL | Group | Opening Qty | Opening Value | Goods Rcvd | Goods Rcvd Value | Goods Issue | Goods Issue Value | {{--Available Qty | --}}Closing Qty | Closing Value |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $i++ }} | @if(Auth::id()==35) {{Auth::id()}} {{ $stock['group_name'] }} @else {{ $stock['group_name'] }} @endif | {{round($stock['opening_qty'],2) }} | {{round($stock['opening_value'],2) }} | {{round($stock['goods_received_qty'],2) }} | {{round($stock['goods_received_value'],2) }} | {{round($stock['goods_issue_qty'],2) }} | {{round($stock['goods_issue_value'],2) }} | {{--{{round($stock['available_qty'],2) }} | --}}{{round($stock['closing_qty'],2) }} | {{ $stock['closing_qty']!=0 ? round($stock['closing_value'],2): 0 }} |
| Total | {{ round($total_opening_qty,2) }} | {{ round($total_opening_price,2) }} | {{ round($total_goods_received_qty,2) }} | {{ round($total_goods_received_price,2) }} | {{ round($total_goods_issue_qty,2) }} | {{ round($total_goods_issue_price,2) }} | {{--{{ round($total_available_qty,2) }} | --}}{{ round($total_closing_qty,2) }} | {{ $total_closing_qty != 0 ? round($total_closing_price,2) : 0 }} | |