@extends('layouts.app') @section('title', __('stock_reconciliation.start_count_title')) @section('content') @lang('stock_reconciliation.start_count_title') {!! Form::open([ 'url' => action([\App\Http\Controllers\StockReconciliationController::class, 'store']), 'method' => 'post', 'id' => 'stock_reconciliation_form', ]) !!} @component('components.widget', ['class' => 'box-solid']) {!! Form::label('location_id', __('purchase.business_location') . ':*') !!} {!! Form::select('location_id', $businessLocations, null, [ 'class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'required', ]) !!} {!! Form::label('counted_at', __('stock_reconciliation.counted_at') . ':*') !!} {!! Form::text('counted_at', @format_datetime('now'), ['class' => 'form-control', 'readonly', 'required']) !!} {!! Form::label('performed_by', __('stock_reconciliation.counted_by')) !!} {!! Form::text('performed_by', auth()->user()->user_full_name, ['class' => 'form-control']) !!} @endcomponent @component('components.widget', ['class' => 'box-solid']) {!! Form::text('search_product', null, [ 'class' => 'form-control', 'id' => 'search_product_for_reconciliation', 'placeholder' => __('stock_reconciliation.search_placeholder'), 'disabled', ]) !!} @lang('sale.product') @lang('stock_reconciliation.system_qty') @lang('stock_reconciliation.counted_qty') @lang('stock_reconciliation.difference_qty') @lang('stock_reconciliation.unit_cost') @lang('stock_reconciliation.difference_value') @lang('stock_reconciliation.total_shortage') 0.00 @lang('stock_reconciliation.total_overage') 0.00 @lang('stock_reconciliation.net_impact') 0.00 @endcomponent @component('components.widget', ['class' => 'box-solid']) {!! Form::label('notes', __('stock_reconciliation.notes')) !!} {!! Form::textarea('notes', null, [ 'class' => 'form-control', 'rows' => 4, ]) !!} @lang('messages.save') @endcomponent {!! Form::close() !!} @endsection @section('javascript') @endsection