@extends('AdminLte.template') @section('title') Stock Adjustment Cycle Using Barcode @endsection @section('ExternalCss') @parent @endsection @section('Content')
@php $trnasactionTitle = "Stock Adjustment Cycle Using Barcode" ; @endphp

{{$trnasactionTitle}}



Store :
{{ Form::open(['action' => 'ItemController@createStockCycleUsingBarcode','autocomplete'=>'off','id'=>'adjustmentForm']) }}
Transaction # From (Sr No.) # To (Sr No.) # Total (Sr No.) #
Sr    Medicine/Item Name Category SUOM Pkg Manufacture Batch Exp System Qty Physical Qty Diff Stock Qty Action

@php if(session()->get('messageType') == 'success'){ $class = "alert-success"; }else if(session()->get('messageType') == 'error'){ $class = "alert-danger"; } @endphp @if(session()->has('message'))
× {{session()->get('message')}}
@endif


Note :
- Required fields.
Submit - Stock information will be adjusted for Transaction entries.


Back
{{ Form::close() }}


@endsection @section('BootstrapModals') @include('Components/Bootstrap Modals/product_stock_barcode_modal') @endsection @section('ExternalJs') @endsection