@include('sale_pos.partials.items')
No of Items
:
0
No of Quantity
:
0.00
@if($is_discount_enabled) @lang('sale.discount') @endif
:
@if($is_discount_enabled)
0
@endif
Tax
:
@if(!empty($pos_settings['amount_rounding_method']) && $pos_settings['amount_rounding_method'] > 0)
@lang('lang_v1.round_off'):
:
0
@endif
Total
:
0.00
Amount Due
:
0.00
@if($is_discount_enabled) @lang('sale.discount') @endif @if($is_discount_enabled && $edit_discount)
:
@endif
@if($is_discount_enabled)
0
@endif
@if(in_array('types_of_service', $enabled_modules))
Packing Fee
:
0
@endif
Shipping
:
0
Tax
:
@php $tax_status = session()->get('tax_status', 'active'); @endphp @if($tax_status == 'active')
Active
@else
Disabled
@endif
×
Tax Settings
Select Tax Status:
get('tax_status', 'active') == 'active' ? 'checked' : '' }}>
Active
Tax will be calculated on items
get('tax_status', 'active') == 'disabled' ? 'checked' : '' }}>
Disabled
No tax will be calculated
@if (!Gate::check('disable_draft') || auth()->user()->can('superadmin') || auth()->user()->can('admin'))
@lang('sale.draft')
@endif @if (!Gate::check('disable_express_checkout') || auth()->user()->can('superadmin') || auth()->user()->can('admin'))
@lang('lang_v1.express_checkout_cash')
@endif @if (!Gate::check('disable_credit_sale') || auth()->user()->can('superadmin') || auth()->user()->can('admin')) @if (empty($pos_settings['disable_credit_sale_button']))
Credit
@endif @endif @php $business = auth()->user()->business; $payment_settings = \DB::table('payment_settings')->where('business_id', $business->id)->first(); $show_mpesa_btn = $payment_settings && !empty($payment_settings->payment_options) && $payment_settings->payment_options !== '[]'; @endphp @if($show_mpesa_btn)
Mpesa
@endif @if (!Gate::check('disable_quotation') || auth()->user()->can('superadmin') || auth()->user()->can('admin'))
Quote
@endif @if (!Gate::check('disable_pay_checkout') || auth()->user()->can('superadmin') || auth()->user()->can('admin'))
Multiple
@endif @if (!Gate::check('disable_card') || auth()->user()->can('superadmin') || auth()->user()->can('admin'))
@lang('lang_v1.express_checkout_card')
@endif
Points
@if (!isset($pos_settings['hide_recent_trans']) || $pos_settings['hide_recent_trans'] == 0)
Recent
@endif @if (!Gate::check('disable_suspend_sale') || auth()->user()->can('superadmin') || auth()->user()->can('admin')) @if (empty($pos_settings['disable_suspend']))
Hold
@endif @endif @if (empty($edit))
@lang('sale.cancel')
@else
@lang('messages.delete')
@endif
@if (isset($transaction)) @include('sale_pos.partials.edit_discount_modal', [ 'sales_discount' => $transaction->discount_amount, 'discount_type' => $transaction->discount_type, 'rp_redeemed' => $transaction->rp_redeemed, 'rp_redeemed_amount' => $transaction->rp_redeemed_amount, 'max_available' => !empty($redeem_details['points']) ? $redeem_details['points'] : 0, ]) @else @include('sale_pos.partials.edit_discount_modal', [ 'sales_discount' => $business_details->default_sales_discount, 'discount_type' => 'percentage', 'rp_redeemed' => 0, 'rp_redeemed_amount' => 0, 'max_available' => 0, ]) @endif @if (isset($transaction)) @include('sale_pos.partials.edit_order_tax_modal', ['selected_tax' => $transaction->tax_id]) @else @include('sale_pos.partials.edit_order_tax_modal', ['selected_tax' => $business_details->default_sales_tax]) @endif @include('sale_pos.partials.edit_shipping_modal')