@extends('layouts.app') @section('title', __('Combined Sku / Plu')) @section('content')

@lang('Combined Sku / Plu')

{!! Form::open(['url' => action([\App\Http\Controllers\CombinedSkuPluController::class, 'store']), 'method' => 'post', 'id' => 'combined_sku_form', 'files' => true ]) !!}
{!! Form::label('location_id', __('purchase.business_location').':*') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'required']); !!}
{!! Form::label('ref_no', __('purchase.ref_no').':') !!} {!! Form::text('ref_no', null, ['class' => 'form-control']); !!}
{!! Form::label('transaction_date', __('messages.date') . ':*') !!}
{!! Form::text('transaction_date', @format_datetime('now'), ['class' => 'form-control', 'readonly', 'required']); !!}
{!! Form::label('description', __('Description').':') !!} {!! Form::text('description', null, ['class' => 'form-control']); !!}
{!! Form::label('sku', __('Sku').':') !!} {!! Form::text('search_product', null, ['class' => 'form-control mousetrap', 'id' => 'search_product', 'placeholder' => __('lang_v1.search_product_placeholder'), 'disabled' => 'disabled']); !!}
{!! Form::label('sku', __('Update Stock to PLU ').':') !!} {!! Form::text('search_product_update', null, ['class' => 'form-control mousetrap', 'id' => 'search_product_update', 'placeholder' => __('lang_v1.search_product_placeholder'), 'disabled' => 'disabled']); !!}

{{ __('stock_adjustment.search_products') }}

Product to UpdateProduct into Update
Sku Quantity Basic Cost Tax Cost Price MRP Sku Quantity Basic Cost Tax Cost Price MRP Description
@lang('purchase.purchase_tax'): 0.00

@lang('stock_adjustment.total_amount'): 0.00
{!! Form::close() !!}
@stop @section('javascript') @endsection