@if(!empty($walk_in_customer['price_calculation_type']) && $walk_in_customer['price_calculation_type'] == 'selling_price_group') @endif {!! Form::select('contact_id', [], null, ['class' => 'form-control mousetrap', 'id' => 'customer_id', 'placeholder' => 'Enter Customer name / phone', 'required']); !!}
@lang('account.customer_due'):
{{-- Removed mousetrap class as it was causing issue with barcode scanning --}} {!! Form::text('search_product', null, ['class' => 'form-control', 'id' => 'search_product', 'placeholder' => __('lang_v1.search_product_placeholder'), 'disabled' => is_null($default_location)? true : false, 'autofocus' => is_null($default_location)? false : true, ]); !!} @if(isset($pos_settings['enable_weighing_scale']) && $pos_settings['enable_weighing_scale'] == 1) @endif
@if(!empty($pos_settings['show_invoice_layout']))
{!! Form::select('invoice_layout_id', $invoice_layouts, $default_location->invoice_layout_id, ['class' => 'form-control select2', 'placeholder' => __('lang_v1.select_invoice_layout'), 'id' => 'invoice_layout_id']); !!}
@endif @if(!empty($commission_agent)) @php $is_commission_agent_required = !empty($pos_settings['is_commission_agent_required']); @endphp
{!! Form::select('commission_agent', $commission_agent, null, ['class' => 'form-control select2', 'placeholder' => __('lang_v1.commission_agent'), 'id' => 'commission_agent', 'required' => $is_commission_agent_required]); !!}
@endif @if(!empty($pos_settings['enable_transaction_date']))
{!! Form::text('transaction_date', $default_datetime, ['class' => 'form-control', 'readonly', 'required', 'id' => 'transaction_date']); !!}
@endif @if(config('constants.enable_sell_in_diff_currency') == true)
{!! Form::text('exchange_rate', config('constants.currency_exchange_rate'), ['class' => 'form-control input-sm input_number', 'placeholder' => __('lang_v1.currency_exchange_rate'), 'id' => 'exchange_rate']); !!}
@endif @if(!empty($price_groups) && count($price_groups) > 1)
@php reset($price_groups); $selected_price_group = !empty($default_price_group_id) && array_key_exists($default_price_group_id, $price_groups) ? $default_price_group_id : null; @endphp {!! Form::hidden('hidden_price_group', key($price_groups), ['id' => 'hidden_price_group']) !!} {!! Form::select('price_group', $price_groups, $selected_price_group, ['class' => 'form-control select2', 'id' => 'price_group']); !!} @show_tooltip(__('lang_v1.price_group_help_text'))
@else @php reset($price_groups); @endphp {!! Form::hidden('price_group', key($price_groups), ['id' => 'price_group']) !!} @endif @if(!empty($default_price_group_id)) {!! Form::hidden('default_price_group', $default_price_group_id, ['id' => 'default_price_group']) !!} @endif @if(in_array('types_of_service', $enabled_modules) && !empty($types_of_service))
{!! Form::select('types_of_service_id', $types_of_service, null, ['class' => 'form-control', 'id' => 'types_of_service_id', 'style' => 'width: 100%;', 'placeholder' => __('lang_v1.select_types_of_service')]); !!} {!! Form::hidden('types_of_service_price_group', null, ['id' => 'types_of_service_price_group']) !!} @show_tooltip(__('lang_v1.types_of_service_help'))

@lang('lang_v1.price_group'):

@endif @if(!empty($pos_settings['show_invoice_scheme'])) @php $invoice_scheme_id = $default_invoice_schemes->id; if(!empty($default_location->invoice_scheme_id)) { $invoice_scheme_id = $default_location->invoice_scheme_id; } @endphp
{!! Form::select('invoice_scheme_id', $invoice_schemes, $invoice_scheme_id, ['class' => 'form-control', 'placeholder' => __('lang_v1.select_invoice_scheme'), 'id' => 'invoice_scheme_id']); !!}
@endif @if(in_array('subscription', $enabled_modules))
@show_tooltip(__('lang_v1.recurring_invoice_help'))
@endif @if(in_array('tables' ,$enabled_modules) || in_array('service_staff' ,$enabled_modules))
@endif @if(in_array('kitchen' ,$enabled_modules))
@show_tooltip(__('lang_v1.kitchen_order_tooltip'))
@endif
@if(!empty($pos_module_data)) @foreach($pos_module_data as $key => $value) @if(!empty($value['view_path'])) @includeIf($value['view_path'], ['view_data' => $value['view_data']]) @endif @endforeach @endif
@php $hide_tax = ''; if( session()->get('business.enable_inline_tax') == 0){ $hide_tax = 'hide'; } @endphp @if(!empty($pos_settings['inline_service_staff'])) @endif
@lang('sale.product') @show_tooltip(__('lang_v1.tooltip_sell_product_column')) @lang('sale.qty') @lang('restaurant.service_staff') @lang('sale.price_inc_tax') @lang('sale.subtotal')