@extends('layouts.app') @php $title = $transaction->type == 'sales_order' ? __('lang_v1.edit_sales_order') : __('sale.edit_sale'); @endphp @section('title', $title) @section('content')

{{$title}} (@if($transaction->type == 'sales_order') @lang('restaurant.order_no') @else @lang('sale.invoice_no') @endif: #{{$transaction->invoice_no}})

@if(!empty($pos_settings['allow_overselling'])) @endif @if(session('business.enable_rp') == 1) @endif @php $custom_labels = json_decode(session('business.custom_labels'), true); $common_settings = session()->get('business.common_settings'); @endphp {!! Form::open(['url' => action([\App\Http\Controllers\SellPosController::class, 'update'], ['po' => $transaction->id ]), 'method' => 'put', 'id' => 'edit_sell_form', 'files' => true ]) !!} {!! Form::hidden('location_id', $transaction->location_id, ['id' => 'location_id', 'data-receipt_printer_type' => !empty($location_printer_type) ? $location_printer_type : 'browser', 'data-default_payment_accounts' => $transaction->location->default_payment_accounts]); !!} @if($transaction->type == 'sales_order') @endif
@component('components.widget', ['class' => 'box-solid']) @if(!empty($transaction->selling_price_group_id))
{!! Form::hidden('price_group', $transaction->selling_price_group_id, ['id' => 'price_group']) !!} {!! Form::text('price_group_text', $transaction->price_group->name, ['class' => 'form-control', 'readonly']); !!} @show_tooltip(__('lang_v1.price_group_help_text'))
@endif @if(in_array('types_of_service', $enabled_modules) && !empty($transaction->types_of_service))
{!! Form::text('types_of_service_text', $transaction->types_of_service->name, ['class' => 'form-control', 'readonly']); !!} {!! Form::hidden('types_of_service_id', $transaction->types_of_service_id, ['id' => 'types_of_service_id']) !!} @show_tooltip(__('lang_v1.types_of_service_help'))

@lang('lang_v1.price_group'): @if(!empty($transaction->selling_price_group_id)){{$transaction->price_group->name}}@endif

@endif @if(in_array('subscription', $enabled_modules))
@show_tooltip(__('lang_v1.recurring_invoice_help'))
@endif
{!! Form::label('contact_id', __('contact.customer') . ':*') !!}
{!! Form::select('contact_id', [], null, ['class' => 'form-control mousetrap', 'id' => 'customer_id', 'placeholder' => 'Enter Customer name / phone', 'required']); !!}
@lang('account.customer_due'): {{$customer_due ?? ''}}
@lang('lang_v1.billing_address'):
{!! $transaction->contact->contact_address ?? '' !!}

@lang('lang_v1.shipping_address'):
{!! $transaction->contact->supplier_business_name ?? '' !!},
{!! $transaction->contact->name ?? '' !!},
{!!$transaction->contact->shipping_address ?? '' !!}
@php $is_pay_term_required = !empty($pos_settings['is_pay_term_required']); @endphp {!! Form::label('pay_term_number', __('contact.pay_term') . ':') !!} @show_tooltip(__('tooltip.pay_term'))
{!! Form::number('pay_term_number', $transaction->pay_term_number, ['class' => 'form-control width-40 pull-left', 'placeholder' => __('contact.pay_term'), 'required' => $is_pay_term_required]); !!} {!! Form::select('pay_term_type', ['months' => __('lang_v1.months'), 'days' => __('lang_v1.days')], $transaction->pay_term_type, ['class' => 'form-control width-60 pull-left','placeholder' => __('messages.please_select'), 'required' => $is_pay_term_required]); !!}
@if(!empty($commission_agent)) @php $is_commission_agent_required = !empty($pos_settings['is_commission_agent_required']); @endphp
{!! Form::label('commission_agent', __('lang_v1.commission_agent') . ':') !!} {!! Form::select('commission_agent', $commission_agent, $transaction->commission_agent, ['class' => 'form-control select2', 'id' => 'commission_agent', 'required' => $is_commission_agent_required]); !!}
@endif
{!! Form::label('transaction_date', __('sale.sale_date') . ':*') !!}
{!! Form::text('transaction_date', $transaction->transaction_date, ['class' => 'form-control', 'readonly', 'required']); !!}
@php if($transaction->status == 'draft' && $transaction->is_quotation == 1){ $status = 'quotation'; } else if ($transaction->status == 'draft' && $transaction->sub_status == 'proforma') { $status = 'proforma'; } else { $status = $transaction->status; } @endphp @if($transaction->type == 'sales_order') @else
{!! Form::label('status', __('sale.status') . ':*') !!} {!! Form::select('status', $statuses, $status, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'required']); !!}
@endif @if($transaction->status == 'draft')
{!! Form::label('invoice_scheme_id', __('invoice.invoice_scheme') . ':') !!} {!! Form::select('invoice_scheme_id', $invoice_schemes, $default_invoice_schemes->id, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select')]); !!}
@endif @can('edit_invoice_number')
{!! Form::label('invoice_no', $transaction->type == 'sales_order' ? __('restaurant.order_no'): __('sale.invoice_no') . ':') !!} {!! Form::text('invoice_no', $transaction->invoice_no, ['class' => 'form-control', 'placeholder' => $transaction->type == 'sales_order' ? __('restaurant.order_no'): __('sale.invoice_no')]); !!}
@endcan @php $custom_field_1_label = !empty($custom_labels['sell']['custom_field_1']) ? $custom_labels['sell']['custom_field_1'] : ''; $is_custom_field_1_required = !empty($custom_labels['sell']['is_custom_field_1_required']) && $custom_labels['sell']['is_custom_field_1_required'] == 1 ? true : false; $custom_field_2_label = !empty($custom_labels['sell']['custom_field_2']) ? $custom_labels['sell']['custom_field_2'] : ''; $is_custom_field_2_required = !empty($custom_labels['sell']['is_custom_field_2_required']) && $custom_labels['sell']['is_custom_field_2_required'] == 1 ? true : false; $custom_field_3_label = !empty($custom_labels['sell']['custom_field_3']) ? $custom_labels['sell']['custom_field_3'] : ''; $is_custom_field_3_required = !empty($custom_labels['sell']['is_custom_field_3_required']) && $custom_labels['sell']['is_custom_field_3_required'] == 1 ? true : false; $custom_field_4_label = !empty($custom_labels['sell']['custom_field_4']) ? $custom_labels['sell']['custom_field_4'] : ''; $is_custom_field_4_required = !empty($custom_labels['sell']['is_custom_field_4_required']) && $custom_labels['sell']['is_custom_field_4_required'] == 1 ? true : false; @endphp @if(!empty($custom_field_1_label)) @php $label_1 = $custom_field_1_label . ':'; if($is_custom_field_1_required) { $label_1 .= '*'; } @endphp
{!! Form::label('custom_field_1', $label_1 ) !!} {!! Form::text('custom_field_1', $transaction->custom_field_1, ['class' => 'form-control','placeholder' => $custom_field_1_label, 'required' => $is_custom_field_1_required]); !!}
@endif @if(!empty($custom_field_2_label)) @php $label_2 = $custom_field_2_label . ':'; if($is_custom_field_2_required) { $label_2 .= '*'; } @endphp
{!! Form::label('custom_field_2', $label_2 ) !!} {!! Form::text('custom_field_2', $transaction->custom_field_2, ['class' => 'form-control','placeholder' => $custom_field_2_label, 'required' => $is_custom_field_2_required]); !!}
@endif @if(!empty($custom_field_3_label)) @php $label_3 = $custom_field_3_label . ':'; if($is_custom_field_3_required) { $label_3 .= '*'; } @endphp
{!! Form::label('custom_field_3', $label_3 ) !!} {!! Form::text('custom_field_3', $transaction->custom_field_3, ['class' => 'form-control','placeholder' => $custom_field_3_label, 'required' => $is_custom_field_3_required]); !!}
@endif @if(!empty($custom_field_4_label)) @php $label_4 = $custom_field_4_label . ':'; if($is_custom_field_4_required) { $label_4 .= '*'; } @endphp
{!! Form::label('custom_field_4', $label_4 ) !!} {!! Form::text('custom_field_4', $transaction->custom_field_4, ['class' => 'form-control','placeholder' => $custom_field_4_label, 'required' => $is_custom_field_4_required]); !!}
@endif
{!! Form::label('upload_document', __('purchase.attach_document') . ':') !!} {!! Form::file('sell_document', ['id' => 'upload_document', 'accept' => implode(',', array_keys(config('constants.document_upload_mimes_types')))]); !!}

@lang('purchase.max_file_size', ['size' => (config('constants.document_size_limit') / 1000000)]) @includeIf('components.document_help_text')

@if((!empty($pos_settings['enable_sales_order']) && $transaction->type != 'sales_order') || $is_order_request_enabled)
{!! Form::label('sales_order_ids', __('lang_v1.sales_order').':') !!} {!! Form::select('sales_order_ids[]', $sales_orders, $transaction->sales_order_ids, ['class' => 'form-control select2 not_loaded', 'multiple', 'id' => 'sales_order_ids']); !!}
@endif @if(in_array('tables' ,$enabled_modules) || in_array('service_staff' ,$enabled_modules)) @endif @endcomponent @component('components.widget', ['class' => 'box-solid'])
{!! Form::text('search_product', null, ['class' => 'form-control mousetrap', 'id' => 'search_product', 'placeholder' => __('lang_v1.search_product_placeholder'), 'autofocus' => true, ]); !!}
@php $hide_tax = ''; if( session()->get('business.enable_inline_tax') == 0){ $hide_tax = 'hide'; } @endphp
@if(!empty($pos_settings['inline_service_staff'])) @endif @if(!empty($common_settings['enable_product_warranty'])) @endif @foreach($sell_details as $sell_line) @include('sale_pos.product_row', ['product' => $sell_line, 'row_count' => $loop->index, 'tax_dropdown' => $taxes, 'sub_units' => !empty($sell_line->unit_details) ? $sell_line->unit_details : [], 'action' => 'edit', 'is_direct_sell' => true, 'so_line' => $sell_line->so_line, 'is_sales_order' => $transaction->type == 'sales_order']) @endforeach
@lang('sale.product') @lang('sale.qty') @lang('restaurant.service_staff') @lang('sale.unit_price') @lang('receipt.discount') @lang('sale.tax') @lang('sale.price_inc_tax') @lang('lang_v1.warranty') @lang('sale.subtotal')
@lang('sale.item'): 0      @lang('sale.total'): 0
@endcomponent @component('components.widget', ['class' => 'box-solid'])
{!! Form::label('discount_type', __('sale.discount_type') . ':*' ) !!}
{!! Form::select('discount_type', ['fixed' => __('lang_v1.fixed'), 'percentage' => __('lang_v1.percentage')], $transaction->discount_type , ['class' => 'form-control','placeholder' => __('messages.please_select'), 'required', 'data-default' => 'percentage']); !!}
@php $max_discount = !is_null(auth()->user()->max_sales_discount_percent) ? auth()->user()->max_sales_discount_percent : ''; @endphp
{!! Form::label('discount_amount', __('sale.discount_amount') . ':*' ) !!}
{!! Form::text('discount_amount', @num_format($transaction->discount_amount), ['class' => 'form-control input_number', 'data-default' => $business_details->default_sales_discount, 'data-max-discount' => $max_discount, 'data-max-discount-error_msg' => __('lang_v1.max_discount_error_msg', ['discount' => $max_discount != '' ? @num_format($max_discount) : '']) ]); !!}

@lang( 'sale.discount_amount' ):(-) 0

{{session('business.rp_name')}}

{!! Form::label('rp_redeemed_modal', __('lang_v1.redeemed') . ':' ) !!}
{!! Form::number('rp_redeemed_modal', $transaction->rp_redeemed, ['class' => 'form-control direct_sell_rp_input', 'data-amount_per_unit_point' => session('business.redeem_amount_per_unit_rp'), 'min' => 0, 'data-max_points' => !empty($redeem_details['points']) ? $redeem_details['points'] : 0, 'data-min_order_total' => session('business.min_order_total_for_redeem') ]); !!}

@lang('lang_v1.available'): {{$redeem_details['points'] ?? 0}}

@lang('lang_v1.redeemed_amount'): (-){{@num_format($transaction->rp_redeemed_amount)}}

{!! Form::label('tax_rate_id', __('sale.order_tax') . ':*' ) !!}
{!! Form::select('tax_rate_id', $taxes['tax_rates'], $transaction->tax_id, ['placeholder' => __('messages.please_select'), 'class' => 'form-control', 'data-default'=> $business_details->default_sales_tax], $taxes['attributes']); !!}
@lang( 'sale.order_tax' ):(+) {{$transaction->tax_amount}}
{!! Form::label('sell_note',__('sale.sell_note') . ':') !!} {!! Form::textarea('sale_note', $transaction->additional_notes, ['class' => 'form-control', 'rows' => 3]); !!}
@endcomponent @component('components.widget', ['class' => 'box-solid'])
{!! Form::label('shipping_details', __('sale.shipping_details')) !!} {!! Form::textarea('shipping_details',$transaction->shipping_details, ['class' => 'form-control','placeholder' => __('sale.shipping_details') ,'rows' => '3', 'cols'=>'30']); !!}
{!! Form::label('shipping_address', __('lang_v1.shipping_address')) !!} {!! Form::textarea('shipping_address', $transaction->shipping_address, ['class' => 'form-control','placeholder' => __('lang_v1.shipping_address') ,'rows' => '3', 'cols'=>'30']); !!}
{!!Form::label('shipping_charges', __('sale.shipping_charges'))!!}
{!!Form::text('shipping_charges',@num_format($transaction->shipping_charges),['class'=>'form-control input_number','placeholder'=> __('sale.shipping_charges')]);!!}
{!! Form::label('shipping_status', __('lang_v1.shipping_status')) !!} {!! Form::select('shipping_status',$shipping_statuses, $transaction->shipping_status, ['class' => 'form-control','placeholder' => __('messages.please_select')]); !!}
{!! Form::label('delivered_to', __('lang_v1.delivered_to') . ':' ) !!} {!! Form::text('delivered_to', $transaction->delivered_to, ['class' => 'form-control','placeholder' => __('lang_v1.delivered_to')]); !!}
{!! Form::label('delivery_person', __('lang_v1.delivery_person') . ':' ) !!} {!! Form::select('delivery_person', $users, $transaction->delivery_person, ['class' => 'form-control select2','placeholder' => __('messages.please_select')]); !!}
@php $shipping_custom_label_1 = !empty($custom_labels['shipping']['custom_field_1']) ? $custom_labels['shipping']['custom_field_1'] : ''; $is_shipping_custom_field_1_required = !empty($custom_labels['shipping']['is_custom_field_1_required']) && $custom_labels['shipping']['is_custom_field_1_required'] == 1 ? true : false; $shipping_custom_label_2 = !empty($custom_labels['shipping']['custom_field_2']) ? $custom_labels['shipping']['custom_field_2'] : ''; $is_shipping_custom_field_2_required = !empty($custom_labels['shipping']['is_custom_field_2_required']) && $custom_labels['shipping']['is_custom_field_2_required'] == 1 ? true : false; $shipping_custom_label_3 = !empty($custom_labels['shipping']['custom_field_3']) ? $custom_labels['shipping']['custom_field_3'] : ''; $is_shipping_custom_field_3_required = !empty($custom_labels['shipping']['is_custom_field_3_required']) && $custom_labels['shipping']['is_custom_field_3_required'] == 1 ? true : false; $shipping_custom_label_4 = !empty($custom_labels['shipping']['custom_field_4']) ? $custom_labels['shipping']['custom_field_4'] : ''; $is_shipping_custom_field_4_required = !empty($custom_labels['shipping']['is_custom_field_4_required']) && $custom_labels['shipping']['is_custom_field_4_required'] == 1 ? true : false; $shipping_custom_label_5 = !empty($custom_labels['shipping']['custom_field_5']) ? $custom_labels['shipping']['custom_field_5'] : ''; $is_shipping_custom_field_5_required = !empty($custom_labels['shipping']['is_custom_field_5_required']) && $custom_labels['shipping']['is_custom_field_5_required'] == 1 ? true : false; @endphp @if(!empty($shipping_custom_label_1)) @php $label_1 = $shipping_custom_label_1 . ':'; if($is_shipping_custom_field_1_required) { $label_1 .= '*'; } @endphp
{!! Form::label('shipping_custom_field_1', $label_1 ) !!} {!! Form::text('shipping_custom_field_1', !empty($transaction->shipping_custom_field_1) ? $transaction->shipping_custom_field_1 : null, ['class' => 'form-control','placeholder' => $shipping_custom_label_1, 'required' => $is_shipping_custom_field_1_required]); !!}
@endif @if(!empty($shipping_custom_label_2)) @php $label_2 = $shipping_custom_label_2 . ':'; if($is_shipping_custom_field_2_required) { $label_2 .= '*'; } @endphp
{!! Form::label('shipping_custom_field_2', $label_2 ) !!} {!! Form::text('shipping_custom_field_2', !empty($transaction->shipping_custom_field_2) ? $transaction->shipping_custom_field_2 : null, ['class' => 'form-control','placeholder' => $shipping_custom_label_2, 'required' => $is_shipping_custom_field_2_required]); !!}
@endif @if(!empty($shipping_custom_label_3)) @php $label_3 = $shipping_custom_label_3 . ':'; if($is_shipping_custom_field_3_required) { $label_3 .= '*'; } @endphp
{!! Form::label('shipping_custom_field_3', $label_3 ) !!} {!! Form::text('shipping_custom_field_3', !empty($transaction->shipping_custom_field_3) ? $transaction->shipping_custom_field_3 : null, ['class' => 'form-control','placeholder' => $shipping_custom_label_3, 'required' => $is_shipping_custom_field_3_required]); !!}
@endif @if(!empty($shipping_custom_label_4)) @php $label_4 = $shipping_custom_label_4 . ':'; if($is_shipping_custom_field_4_required) { $label_4 .= '*'; } @endphp
{!! Form::label('shipping_custom_field_4', $label_4 ) !!} {!! Form::text('shipping_custom_field_4', !empty($transaction->shipping_custom_field_4) ? $transaction->shipping_custom_field_4 : null, ['class' => 'form-control','placeholder' => $shipping_custom_label_4, 'required' => $is_shipping_custom_field_4_required]); !!}
@endif @if(!empty($shipping_custom_label_5)) @php $label_5 = $shipping_custom_label_5 . ':'; if($is_shipping_custom_field_5_required) { $label_5 .= '*'; } @endphp
{!! Form::label('shipping_custom_field_5', $label_5 ) !!} {!! Form::text('shipping_custom_field_5', !empty($transaction->shipping_custom_field_5) ? $transaction->shipping_custom_field_5 : null, ['class' => 'form-control','placeholder' => $shipping_custom_label_5, 'required' => $is_shipping_custom_field_5_required]); !!}
@endif
{!! Form::label('shipping_documents', __('lang_v1.shipping_documents') . ':') !!} {!! Form::file('shipping_documents[]', ['id' => 'shipping_documents', 'multiple', 'accept' => implode(',', array_keys(config('constants.document_upload_mimes_types')))]); !!}

@lang('purchase.max_file_size', ['size' => (config('constants.document_size_limit') / 1000000)]) @includeIf('components.document_help_text')

@php $medias = $transaction->media->where('model_media_type', 'shipping_document')->all(); @endphp @include('sell.partials.media_table', ['medias' => $medias, 'delete' => true])
@lang('lang_v1.additional_expense_name') @lang('sale.amount')
{!! Form::text('additional_expense_key_1', $transaction->additional_expense_key_1, ['class' => 'form-control', 'id' => 'additional_expense_key_1']); !!} {!! Form::text('additional_expense_value_1', @num_format($transaction->additional_expense_value_1), ['class' => 'form-control input_number', 'id' => 'additional_expense_value_1']); !!}
{!! Form::text('additional_expense_key_2', $transaction->additional_expense_key_2, ['class' => 'form-control', 'id' => 'additional_expense_key_2']); !!} {!! Form::text('additional_expense_value_2', @num_format($transaction->additional_expense_value_2), ['class' => 'form-control input_number', 'id' => 'additional_expense_value_2']); !!}
{!! Form::text('additional_expense_key_3', $transaction->additional_expense_key_3, ['class' => 'form-control', 'id' => 'additional_expense_key_3']); !!} {!! Form::text('additional_expense_value_3', @num_format($transaction->additional_expense_value_3), ['class' => 'form-control input_number', 'id' => 'additional_expense_value_3']); !!}
{!! Form::text('additional_expense_key_4', $transaction->additional_expense_key_4, ['class' => 'form-control', 'id' => 'additional_expense_key_4']); !!} {!! Form::text('additional_expense_value_4', @num_format($transaction->additional_expense_value_4), ['class' => 'form-control input_number', 'id' => 'additional_expense_value_4']); !!}
@if(!empty($pos_settings['amount_rounding_method']) && $pos_settings['amount_rounding_method'] > 0)
(@lang('lang_v1.round_off'): 0)

@endif
@lang('sale.total_payable'): 0
@endcomponent @if(!empty($common_settings['is_enabled_export']) && $transaction->type != 'sales_order') @component('components.widget', ['class' => 'box-solid', 'title' => __('lang_v1.export')])
is_export)) checked @endif>
@php $i = 1; @endphp @for($i; $i <= 6 ; $i++)
is_export)) style="display: none;" @endif>
{!! Form::label('export_custom_field_'.$i, __('lang_v1.export_custom_field'.$i).':') !!} {!! Form::text('export_custom_fields_info['.'export_custom_field_'.$i.']', !empty($transaction->export_custom_fields_info['export_custom_field_'.$i]) ? $transaction->export_custom_fields_info['export_custom_field_'.$i] : null, ['class' => 'form-control','placeholder' => __('lang_v1.export_custom_field'.$i), 'id' => 'export_custom_field_'.$i]); !!}
@endfor @endcomponent @endif
@php $is_enabled_download_pdf = config('constants.enable_download_pdf'); @endphp @if($is_enabled_download_pdf && $transaction->type != 'sales_order') @can('sell.payments') @component('components.widget', ['class' => 'box-solid', 'title' => __('purchase.add_payment')])
{!! Form::label("prefer_payment_method" , __('lang_v1.prefer_payment_method') . ':') !!} @show_tooltip(__('lang_v1.this_will_be_shown_in_pdf'))
{!! Form::select("prefer_payment_method", $payment_types, $transaction->prefer_payment_method, ['class' => 'form-control','style' => 'width:100%;']); !!}
{!! Form::label("prefer_payment_account" , __('lang_v1.prefer_payment_account') . ':') !!} @show_tooltip(__('lang_v1.this_will_be_shown_in_pdf'))
{!! Form::select("prefer_payment_account", $accounts, $transaction->prefer_payment_account, ['class' => 'form-control','style' => 'width:100%;']); !!}
@endcomponent @endcan @endif @if($transaction->type = 'sell') @can('sell.payments') @component('components.widget', ['class' => 'box-solid', 'title' => __('purchase.add_payment')])
@foreach($payment_lines as $payment_line) @if($payment_line['is_return'] == 1) @php $change_return = $payment_line; @endphp @continue @endif @if(!empty($payment_line['id'])) {!! Form::hidden("payment[$loop->index][payment_id]", $payment_line['id']); !!} @endif
@include('sale_pos.partials.payment_row_form', ['row_index' => $loop->index, 'show_date' => true, 'payment_line' => $payment_line, 'show_denomination' => true])
@endforeach

@lang('lang_v1.change_return'):
0 {!! Form::hidden("change_return", $change_return['amount'], ['class' => 'form-control change_return input_number', 'required', 'id' => "change_return"]); !!} @if(!empty($change_return['id'])) @endif
{!! Form::label("change_return_method" , __('lang_v1.change_return_payment_method') . ':*') !!}
@php $_payment_method = empty($change_return['method']) && array_key_exists('cash', $payment_types) ? 'cash' : $change_return['method']; $_payment_types = $payment_types; if(isset($_payment_types['advance'])) { unset($_payment_types['advance']); } @endphp {!! Form::select("payment[change_return][method]", $_payment_types, $_payment_method, ['class' => 'form-control col-md-12 payment_types_dropdown', 'id' => 'change_return_method', 'style' => 'width:100%;']); !!}
@if(!empty($accounts))
{!! Form::label("change_return_account" , __('lang_v1.change_return_payment_account') . ':') !!}
{!! Form::select("payment[change_return][account_id]", $accounts, !empty($change_return['account_id']) ? $change_return['account_id'] : '' , ['class' => 'form-control select2', 'id' => 'change_return_account', 'style' => 'width:100%;']); !!}
@endif @include('sale_pos.partials.payment_type_details', ['payment_line' => $change_return, 'row_index' => 'change_return'])
@endcomponent @endcan @endif
{!! Form::hidden('is_save_and_print', 0, ['id' => 'is_save_and_print']); !!}
@if(in_array('subscription', $enabled_modules)) @include('sale_pos.partials.recurring_invoice_modal') @endif {!! Form::close() !!}
@include('sale_pos.partials.configure_search_modal') @stop @section('javascript') @if(in_array('tables' ,$enabled_modules) || in_array('modifiers' ,$enabled_modules) || in_array('service_staff' ,$enabled_modules)) @endif @endsection