@extends('layouts.app') @section('title', __('stock_adjustment.bulk_sell_return')) @section('content')

@lang('stock_adjustment.bulk_sell_return')

{!! Form::open([ 'url' => action('StockAdjustmentController@storeBulkSellReturn'), 'method' => 'post', 'id' => 'stock_adjustment_form', ]) !!}

{{ $contact->supplier_business_name }} ({{ $contact->contact_id }})
{{ $contact->mobile }}
{!! 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('adjustment_type', __('stock_adjustment.adjustment_type') . ':*') !!} {!! Form::select('adjustment_type', ['bulk_sell_return' => __('stock_adjustment.bulk_sell_return_type')], null, [ 'class' => 'form-control select2', 'required', ]) !!}

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

{!! Form::text('search_product', null, [ 'class' => 'form-control', 'id' => 'search_product_for_bulk_return', 'placeholder' => __('stock_adjustment.search_product'), 'disabled', ]) !!}
@lang('sale.product') Return Quantity Replace Quantity @lang('sale.unit_price') Return Total
@lang('stock_adjustment.total_replace_amount'): 0.00
@lang('stock_adjustment.total_return_amount'): 0.00
{!! Form::label('total_amount_recovered', __('stock_adjustment.total_amount_recovered') . ':') !!} @show_tooltip(__('tooltip.total_amount_recovered')) {!! Form::text('total_amount_recovered', 0, [ 'class' => 'form-control input_number', 'placeholder' => __('stock_adjustment.total_amount_recovered'), ]) !!}
{!! Form::label('additional_notes', __('stock_adjustment.reason_for_stock_adjustment') . ':') !!} {!! Form::textarea('additional_notes', null, [ 'class' => 'form-control', 'placeholder' => __('stock_adjustment.reason_for_stock_adjustment'), 'rows' => 3, ]) !!}
{{-- hidden value for increase or decrease --}}
@include('sell_bulk_return.partials.payment_row_form', [ 'row_index' => 0, 'show_date' => true, ])
{!! Form::close() !!}
@stop @section('javascript') {{-- --}} @endsection