Files
opensourcepos/app/Views/sales/register.php
BudsieBuds 2e0a7c7db0 Bye Glyphicons
- replaced glyphicons with bootstrap-icons
2026-04-02 19:49:22 +02:00

892 lines
45 KiB
PHP

<?php
/**
* @var string $controller_name
* @var array $modes
* @var array $mode
* @var array $empty_tables
* @var array $selected_table
* @var array $stock_locations
* @var array $stock_location
* @var array $cart
* @var bool $items_module_allowed
* @var bool $change_price
* @var int $customer_id
* @var int $customer_discount_type
* @var float $customer_discount
* @var float $customer_total
* @var string $customer_required
* @var float|int $item_count
* @var float|int $total_units
* @var float $subtotal
* @var array $taxes
* @var float $total
* @var float $payments_total
* @var float $amount_due
* @var bool $payments_cover_total
* @var array $payment_options
* @var array $selected_payment_type
* @var bool $pos_mode
* @var array $payments
* @var string $mode_label
* @var string $comment
* @var bool $print_after_sale
* @var bool $email_receipt
* @var bool $price_work_orders
* @var string $invoice_number
* @var int $cash_mode
* @var float $non_cash_total
* @var float $cash_amount_due
* @var array $config
*/
use App\Models\Employee;
?>
<?= view('partial/header') ?>
<?php
if (isset($error)) {
echo '<div class="alert alert-dismissible alert-danger">' . esc($error) . '</div>';
}
if (!empty($warning)) {
echo '<div class="alert alert-dismissible alert-warning">' . esc($warning) . '</div>';
}
if (isset($success)) {
echo '<div class="alert alert-dismissible alert-success">' . esc($success) . '</div>';
}
helper('url');
?>
<div id="register_wrapper">
<!-- Top register controls -->
<?= form_open("$controller_name/changeMode", ['id' => 'mode_form', 'class' => 'form-horizontal panel panel-default']) ?>
<div class="panel-body form-group">
<ul>
<li class="pull-left first_li">
<label class="control-label"><?= lang(ucfirst($controller_name) . '.mode') ?></label>
</li>
<li class="pull-left">
<?= form_dropdown('mode', $modes, $mode, ['onchange' => "$('#mode_form').submit();", 'class' => 'selectpicker show-menu-arrow', 'data-style' => 'btn-default btn-sm', 'data-width' => 'fit']) ?>
</li>
<?php if ($config['dinner_table_enable']) { ?>
<li class="pull-left first_li">
<label class="control-label"><?= lang(ucfirst($controller_name) . '.table') ?></label>
</li>
<li class="pull-left">
<?= form_dropdown('dinner_table', $empty_tables, $selected_table, ['onchange' => "$('#mode_form').submit();", 'class' => 'selectpicker show-menu-arrow', 'data-style' => 'btn-default btn-sm', 'data-width' => 'fit']) ?>
</li>
<?php } ?>
<?php if (count($stock_locations) > 1) { ?>
<li class="pull-left">
<label class="control-label"><?= lang(ucfirst($controller_name) . '.stock_location') ?></label>
</li>
<li class="pull-left">
<?= form_dropdown('stock_location', $stock_locations, $stock_location, ['onchange' => "$('#mode_form').submit();", 'class' => 'selectpicker show-menu-arrow', 'data-style' => 'btn-default btn-sm', 'data-width' => 'fit']) ?>
</li>
<?php } ?>
<li class="pull-right">
<button class="btn btn-default btn-sm modal-dlg" id="show_suspended_sales_button" data-href="<?= esc("$controller_name/suspended") ?>" title="<?= lang(ucfirst($controller_name) . '.suspended_sales') ?>">
<i class="bi bi-pause-circle icon-spacing"></i><?= lang(ucfirst($controller_name) . '.suspended_sales') ?>
</button>
</li>
<?php
$employee = model(Employee::class);
if ($employee->has_grant('reports_sales', session('person_id'))) {
?>
<li class="pull-right">
<?= anchor(
"$controller_name/manage",
'<i class="bi bi-receipt-cutoff icon-spacing"></i>' . lang(ucfirst($controller_name) . '.takings'),
array('class' => 'btn btn-primary btn-sm', 'id' => 'sales_takings_button', 'title' => lang(ucfirst($controller_name) . '.takings'))
) ?>
</li>
<?php } ?>
</ul>
</div>
<?= form_close() ?>
<?php $tabindex = 0; ?>
<?= form_open("$controller_name/add", ['id' => 'add_item_form', 'class' => 'form-horizontal panel panel-default']) ?>
<div class="panel-body form-group">
<ul>
<li class="pull-left first_li">
<label for="item" class="control-label"><?= lang(ucfirst($controller_name) . '.find_or_scan_item_or_receipt') ?></label>
</li>
<li class="pull-left">
<?= form_input(['name' => 'item', 'id' => 'item', 'class' => 'form-control input-sm', 'size' => '50', 'tabindex' => ++$tabindex]) ?>
<span class="ui-helper-hidden-accessible" role="status"></span>
</li>
<li class="pull-right">
<button id="new_item_button" class="btn btn-info btn-sm pull-right modal-dlg" data-btn-new="<?= lang('Common.new') ?>" data-btn-submit="<?= lang('Common.submit') ?>" data-href="<?= "items/view" ?>" title="<?= lang(ucfirst($controller_name) . ".new_item") ?>">
<i class="bi bi-tag icon-spacing"></i><?= lang(ucfirst($controller_name) . ".new_item") ?>
</button>
</li>
</ul>
</div>
<?= form_close() ?>
<!-- Sale Items List -->
<table class="sales_table_100" id="register">
<thead>
<tr>
<th style="width: 5%;"><?= lang('Common.delete') ?></th>
<th style="width: 15%;"><?= lang(ucfirst($controller_name) . '.item_number') ?></th>
<th style="width: 30%;"><?= lang(ucfirst($controller_name) . '.item_name') ?></th>
<th style="width: 10%;"><?= lang(ucfirst($controller_name) . '.price') ?></th>
<th style="width: 10%;"><?= lang(ucfirst($controller_name) . '.quantity') ?></th>
<th style="width: 15%;"><?= lang(ucfirst($controller_name) . '.discount') ?></th>
<th style="width: 10%;"><?= lang(ucfirst($controller_name) . '.total') ?></th>
<th style="width: 5%;"><?= lang(ucfirst($controller_name) . '.update') ?></th>
</tr>
</thead>
<tbody id="cart_contents">
<?php if (count($cart) == 0) { ?>
<tr>
<td colspan="8">
<div class="alert alert-dismissible alert-info"><?= lang(ucfirst($controller_name) . '.no_items_in_cart') ?></div>
</td>
</tr>
<?php
} else {
foreach (array_reverse($cart, true) as $line => $item) {
?>
<?= form_open("$controller_name/editItem/$line", ['class' => 'form-horizontal', 'id' => "cart_$line"]) ?>
<tr>
<td>
<?php
echo anchor("$controller_name/deleteItem/$line", '<i class="bi bi-trash"></i>');
echo form_hidden('location', (string)$item['item_location']);
echo form_input(['type' => 'hidden', 'name' => 'item_id', 'value' => $item['item_id']]);
?>
</td>
<?php if ($item['item_type'] == ITEM_TEMP) { ?>
<td><?= form_input(['name' => 'item_number', 'id' => 'item_number', 'class' => 'form-control input-sm', 'value' => $item['item_number'], 'tabindex' => ++$tabindex]) ?></td>
<td style="align: center;">
<?= form_input(['name' => 'name', 'id' => 'name', 'class' => 'form-control input-sm', 'value' => $item['name'], 'tabindex' => ++$tabindex]) ?>
</td>
<?php } else { ?>
<td><?= esc($item['item_number']) ?></td>
<td style="align: center;">
<?= esc($item['name']) . ' ' . implode(' ', [$item['attribute_values'], $item['attribute_dtvalues']]) ?>
<br>
<?php if ($item['stock_type'] == '0'): echo '[' . to_quantity_decimals($item['in_stock']) . ' in ' . esc($item['stock_name']) . ']';
endif; ?>
</td>
<?php } ?>
<td>
<?php
if ($items_module_allowed && $change_price) {
echo form_input(['name' => 'price', 'class' => 'form-control input-sm', 'value' => to_currency_no_money($item['price']), 'tabindex' => ++$tabindex, 'onClick' => 'this.select();']);
} else {
echo to_currency($item['price']);
echo form_hidden('price', to_currency_no_money($item['price']));
}
?>
</td>
<td>
<?php
if ($item['is_serialized']) {
echo to_quantity_decimals($item['quantity']);
echo form_hidden('quantity', $item['quantity']);
} else {
echo form_input(['name' => 'quantity', 'class' => 'form-control input-sm', 'value' => to_quantity_decimals($item['quantity']), 'tabindex' => ++$tabindex, 'onClick' => 'this.select();']);
}
?>
</td>
<td>
<div class="input-group">
<?= form_input(['name' => 'discount', 'class' => 'form-control input-sm', 'value' => $item['discount_type'] ? to_currency_no_money($item['discount']) : to_decimals($item['discount']), 'tabindex' => ++$tabindex, 'onClick' => 'this.select();']) ?>
<span class="input-group-btn">
<?= form_checkbox(['id' => 'discount_toggle', 'name' => 'discount_toggle', 'value' => 1, 'data-toggle' => "toggle", 'data-size' => 'small', 'data-onstyle' => 'success', 'data-on' => '<b>' . $config['currency_symbol'] . '</b>', 'data-off' => '<b>%</b>', 'data-line' => $line, 'checked' => $item['discount_type'] == 1]) ?>
</span>
</div>
</td>
<td>
<?php
if ($item['item_type'] == ITEM_AMOUNT_ENTRY) { // TODO: === ?
echo form_input(['name' => 'discounted_total', 'class' => 'form-control input-sm', 'value' => to_currency_no_money($item['discounted_total']), 'tabindex' => ++$tabindex, 'onClick' => 'this.select();']);
} else {
echo to_currency($item['discounted_total']);
}
?>
</td>
<td>
<a href="javascript:document.getElementById('<?= "cart_$line" ?>').submit();" title="<?= lang(ucfirst($controller_name) . '.update') ?>">
<i class="bi bi-arrow-repeat"></i>
</a>
</td>
</tr>
<tr>
<?php if ($item['item_type'] == ITEM_TEMP) { ?>
<td><?= form_input(['type' => 'hidden', 'name' => 'item_id', 'value' => $item['item_id']]) ?></td>
<td style="align: center;" colspan="6">
<?= form_input(['name' => 'item_description', 'id' => 'item_description', 'class' => 'form-control input-sm', 'value' => $item['description'], 'tabindex' => ++$tabindex]) ?>
</td>
<td> </td>
<?php } else { ?>
<td>&nbsp;</td>
<?php if ($item['allow_alt_description']) { ?>
<td style="color: #2F4F4F;"><?= lang(ucfirst($controller_name) . '.description_abbrv') ?></td>
<?php } ?>
<td colspan="2" style="text-align: left;">
<?php
if ($item['allow_alt_description']) {
echo form_input(['name' => 'description', 'class' => 'form-control input-sm', 'value' => $item['description'], 'onClick' => 'this.select();']);
} else {
if ($item['description'] != '') {
echo esc($item['description']);
echo form_hidden('description', $item['description']);
} else {
echo lang(ucfirst($controller_name) . '.no_description');
echo form_hidden('description', '');
}
}
?>
</td>
<td>&nbsp;</td>
<td style="color: #2F4F4F;">
<?php
if ($item['is_serialized']) {
echo lang(ucfirst($controller_name) . '.serial');
}
?>
</td>
<td colspan="4" style="text-align: left;">
<?php
if ($item['is_serialized']) {
echo form_input(['name' => 'serialnumber', 'class' => 'form-control input-sm', 'value' => $item['serialnumber'], 'onClick' => 'this.select();']);
} else {
echo form_hidden('serialnumber', '');
}
?>
</td>
<?php } ?>
</tr>
<?= form_close() ?>
<?php
}
}
?>
</tbody>
</table>
</div>
<!-- Overall Sale -->
<div id="overall_sale" class="panel panel-default">
<div class="panel-body">
<?= form_open("$controller_name/selectCustomer", ['id' => 'select_customer_form', 'class' => 'form-horizontal']) ?>
<?php if (isset($customer)) { ?>
<table class="sales_table_100">
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.customer') ?></th>
<th style="width: 45%; text-align: right;"><?= anchor("customers/view/$customer_id", esc($customer), ['class' => 'modal-dlg', 'data-btn-submit' => lang('Common.submit'), 'title' => lang('Customers.update')]) ?></th>
</tr>
<?php if (!empty($customer_email)) { ?>
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.customer_email') ?></th>
<th style="width: 45%; text-align: right;"><?= esc($customer_email) ?></th>
</tr>
<?php } ?>
<?php if (!empty($customer_address)) { ?>
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.customer_address') ?></th>
<th style="width: 45%; text-align: right;"><?= esc($customer_address) ?></th>
</tr>
<?php } ?>
<?php if (!empty($customer_location)) { ?>
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.customer_location') ?></th>
<th style="width: 45%; text-align: right;"><?= esc($customer_location) ?></th>
</tr>
<?php } ?>
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.customer_discount') ?></th>
<th style="width: 45%; text-align: right;"><?= ($customer_discount_type == FIXED) ? to_currency($customer_discount) : $customer_discount . '%' ?></th>
</tr>
<?php if ($config['customer_reward_enable']): ?>
<?php if (!empty($customer_rewards)) { ?>
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.rewards_package') ?></th>
<th style="width: 45%; text-align: right;"><?= esc($customer_rewards['package_name']) ?></th>
</tr>
<tr>
<th style="width: 55%;"><?= lang('Customers.available_points') ?></th>
<th style="width: 45%; text-align: right;"><?= esc($customer_rewards['points']) ?></th>
</tr>
<?php } ?>
<?php endif; ?>
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.customer_total') ?></th>
<th style="width: 45%; text-align: right;"><?= to_currency($customer_total) ?></th>
</tr>
<?php if (!empty($mailchimp_info)) { ?>
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.customer_mailchimp_status') ?></th>
<th style="width: 45%; text-align: right;"><?= esc($mailchimp_info['status']) ?></th>
</tr>
<?php } ?>
</table>
<?= anchor(
"$controller_name/removeCustomer",
'<i class="bi bi-x-circle icon-spacing"></i>' . lang('Common.remove') . ' ' . lang('Customers.customer'),
['class' => 'btn btn-danger btn-sm', 'id' => 'remove_customer_button', 'title' => lang('Common.remove') . ' ' . lang('Customers.customer')]
)
?>
<?php } else { ?>
<div class="form-group" id="select_customer">
<label id="customer_label" for="customer" class="control-label" style="margin-bottom: 1em; margin-top: -1em;">
<?= lang(ucfirst($controller_name) . '.select_customer') . esc(" $customer_required") ?>
</label>
<?= form_input(['name' => 'customer', 'id' => 'customer', 'class' => 'form-control input-sm', 'value' => lang(ucfirst($controller_name) . '.start_typing_customer_name')]) ?>
<button class="btn btn-info btn-sm modal-dlg" data-btn-submit="<?= lang('Common.submit') ?>" data-href="<?= "customers/view" ?>" title="<?= lang(ucfirst($controller_name) . ".new_customer") ?>">
<i class="bi bi-person-add icon-spacing"></i><?= lang(ucfirst($controller_name) . ".new_customer") ?>
</button>
<button class="btn btn-default btn-sm modal-dlg" id="show_keyboard_help" data-href="<?= esc("$controller_name/salesKeyboardHelp") ?>" title="<?= lang(ucfirst($controller_name) . '.key_title') ?>">
<i class="bi bi-keyboard icon-spacing"></i><?= lang(ucfirst($controller_name) . '.key_help') ?>
</button>
</div>
<?php } ?>
<?= form_close() ?>
<table class="sales_table_100" id="sale_totals">
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.quantity_of_items', [$item_count]) ?></th>
<th style="width: 45%; text-align: right;"><?= $total_units ?></th>
</tr>
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.sub_total') ?></th>
<th style="width: 45%; text-align: right;"><?= to_currency($subtotal) ?></th>
</tr>
<?php foreach ($taxes as $tax_group_index => $tax) { ?>
<tr>
<th style="width: 55%;"><?= (float)$tax['tax_rate'] . '% ' . $tax['tax_group'] ?></th>
<th style="width: 45%; text-align: right;"><?= to_currency_tax($tax['sale_tax_amount']) ?></th>
</tr>
<?php } ?>
<tr>
<th style="width: 55%; font-size: 150%"><?= lang(ucfirst($controller_name) . '.total') ?></th>
<th style="width: 45%; font-size: 150%; text-align: right;"><span id="sale_total"><?= to_currency($total) ?></span></th>
</tr>
</table>
<?php if (count($cart) > 0) { // Only show this part if there are Items already in the register ?>
<table class="sales_table_100" id="payment_totals">
<tr>
<th style="width: 55%;"><?= lang(ucfirst($controller_name) . '.payments_total') ?></th>
<th style="width: 45%; text-align: right;"><?= to_currency($payments_total) ?></th>
</tr>
<tr>
<th style="width: 55%; font-size: 120%"><?= lang(ucfirst($controller_name) . '.amount_due') ?></th>
<th style="width: 45%; font-size: 120%; text-align: right;"><span id="sale_amount_due"><?= to_currency($amount_due) ?></span></th>
</tr>
</table>
<div id="payment_details">
<?php if ($payments_cover_total) { // Show Complete sale button instead of Add Payment if there is no amount due left ?>
<?= form_open("$controller_name/addPayment", ['id' => 'add_payment_form', 'class' => 'form-horizontal']) ?>
<table class="sales_table_100">
<tr>
<td><?= lang(ucfirst($controller_name) . '.payment') ?></td>
<td>
<?= form_dropdown('payment_type', $payment_options, $selected_payment_type, ['id' => 'payment_types', 'class' => 'selectpicker show-menu-arrow', 'data-style' => 'btn-default btn-sm', 'data-width' => 'fit', 'disabled' => 'disabled']) ?>
</td>
</tr>
<tr>
<td><span id="amount_tendered_label"><?= lang(ucfirst($controller_name) . '.amount_tendered') ?></span></td>
<td>
<?= form_input(['name' => 'amount_tendered', 'id' => 'amount_tendered', 'class' => 'form-control input-sm disabled', 'disabled' => 'disabled', 'value' => '0', 'size' => '5', 'tabindex' => ++$tabindex, 'onClick' => 'this.select();']) ?>
</td>
</tr>
</table>
<?= form_close() ?>
<?php
// Only show this part if in sale or return mode
if ($pos_mode) {
$due_payment = false;
if (count($payments) > 0) {
foreach ($payments as $payment_id => $payment) {
if ($payment['payment_type'] == lang(ucfirst($controller_name) . '.due')) {
$due_payment = true;
}
}
}
if (!$due_payment || ($due_payment && isset($customer))) { // TODO: $due_payment is not needed because the first clause insures that it will always be true if it gets to this point. Can be shortened to if (!$due_payment || isset($customer))
?>
<div class="btn btn-sm btn-success pull-right" id="finish_sale_button" tabindex="<?= ++$tabindex ?>">
<i class="bi bi-check-circle icon-spacing"></i><?= lang(ucfirst($controller_name) . '.complete_sale') ?>
</div>
<?php
}
}
?>
<?php } else { ?>
<?= form_open("$controller_name/addPayment", ['id' => 'add_payment_form', 'class' => 'form-horizontal']) ?>
<table class="sales_table_100">
<tr>
<td><?= lang(ucfirst($controller_name) . '.payment') ?></td>
<td>
<?= form_dropdown('payment_type', $payment_options, $selected_payment_type, ['id' => 'payment_types', 'class' => 'selectpicker show-menu-arrow', 'data-style' => 'btn-default btn-sm', 'data-width' => 'fit']) ?>
</td>
</tr>
<tr>
<td><span id="amount_tendered_label"><?= lang(ucfirst($controller_name) . '.amount_tendered') ?></span></td>
<td>
<?= form_input(['name' => 'amount_tendered', 'id' => 'amount_tendered', 'class' => 'form-control input-sm non-giftcard-input', 'value' => to_currency_no_money($amount_due), 'size' => '5', 'tabindex' => ++$tabindex, 'onClick' => 'this.select();']) ?>
<?= form_input(['name' => 'amount_tendered', 'id' => 'amount_tendered', 'class' => 'form-control input-sm giftcard-input', 'disabled' => true, 'value' => to_currency_no_money($amount_due), 'size' => '5', 'tabindex' => ++$tabindex]) ?>
</td>
</tr>
</table>
<?= form_close() ?>
<div class="btn btn-sm btn-success pull-right" id="add_payment_button" tabindex="<?= ++$tabindex ?>">
<i class="bi bi-cash-coin icon-spacing"></i><?= lang(ucfirst($controller_name) . '.add_payment') ?>
</div>
<?php } ?>
<?php if (count($payments) > 0) { // Only show this part if there is at least one payment entered. ?>
<table class="sales_table_100" id="register">
<thead>
<tr>
<th style="width: 10%;"><?= lang('Common.delete') ?></th>
<th style="width: 60%;"><?= lang(ucfirst($controller_name) . '.payment_type') ?></th>
<th style="width: 20%;"><?= lang(ucfirst($controller_name) . '.payment_amount') ?></th>
</tr>
</thead>
<tbody id="payment_contents">
<?php foreach ($payments as $payment_id => $payment) { ?>
<tr>
<td><?= anchor("$controller_name/deletePayment/". esc(base64url_encode($payment_id)), '<i class="bi bi-trash"></i>') ?></td>
<td><?= $payment['payment_type'] ?></td>
<td style="text-align: right;"><?= to_currency($payment['payment_amount']) ?></td>
</tr>
<?php } ?>
</tbody>
</table>
<?php } ?>
</div>
<?= form_open("$controller_name/cancel", ['id' => 'buttons_form']) ?>
<div class="form-group" id="buttons_sale">
<div class="btn btn-sm btn-default pull-left" id="suspend_sale_button">
<i class="bi bi-pause-circle icon-spacing"></i><?= lang(ucfirst($controller_name) . '.suspend_sale') ?>
</div>
<?php if (!$pos_mode && isset($customer)) { // Only show this part if the payment covers the total ?>
<div class="btn btn-sm btn-success" id="finish_invoice_quote_button">
<i class="bi bi-check-circle icon-spacing"></i><?= esc($mode_label) ?>
</div>
<?php } ?>
<div class="btn btn-sm btn-danger pull-right" id="cancel_sale_button">
<i class="bi bi-x-circle icon-spacing"></i><?= lang(ucfirst($controller_name) . '.cancel_sale') ?>
</div>
</div>
<?= form_close() ?>
<?php if ($payments_cover_total || !$pos_mode) { // Only show this part if the payment cover the total ?>
<div class="container-fluid">
<div class="no-gutter row">
<div class="form-group form-group-sm">
<div class="col-xs-12">
<?= form_label(lang('Common.comments'), 'comments', ['class' => 'control-label', 'id' => 'comment_label', 'for' => 'comment']) ?>
<?= form_textarea(['name' => 'comment', 'id' => 'comment', 'class' => 'form-control input-sm', 'value' => $comment, 'rows' => '2']) ?>
</div>
</div>
</div>
<div class="row">
<div class="form-group form-group-sm">
<div class="col-xs-6">
<label for="sales_print_after_sale" class="control-label checkbox">
<?= form_checkbox(['name' => 'sales_print_after_sale', 'id' => 'sales_print_after_sale', 'value' => 1, 'checked' => $print_after_sale]) ?>
<?= lang(ucfirst($controller_name) . '.print_after_sale') ?>
</label>
</div>
<?php if (!empty($customer_email)) { ?>
<div class="col-xs-6">
<label for="email_receipt" class="control-label checkbox">
<?= form_checkbox(['name' => 'email_receipt', 'id' => 'email_receipt', 'value' => 1, 'checked' => $email_receipt]) ?>
<?= lang(ucfirst($controller_name) . '.email_receipt') ?>
</label>
</div>
<?php } ?>
<?php if ($mode == 'sale_work_order') { ?>
<div class="col-xs-6">
<label for="price_work_orders" class="control-label checkbox">
<?= form_checkbox(['name' => 'price_work_orders', 'id' => 'price_work_orders', 'value' => 1, 'checked' => $price_work_orders]) ?>
<?= lang(ucfirst($controller_name) . '.include_prices') ?>
</label>
</div>
<?php } ?>
</div>
</div>
<?php if (($mode == 'sale_invoice') && $config['invoice_enable']) { ?>
<div class="row">
<div class="form-group form-group-sm">
<div class="col-xs-6">
<label for="sales_invoice_number" class="control-label checkbox">
<?= lang(ucfirst($controller_name) . '.invoice_enable') ?>
</label>
</div>
<div class="col-xs-6">
<div class="input-group input-group-sm">
<span class="input-group-addon input-sm">#</span>
<?= form_input(['name' => 'sales_invoice_number', 'id' => 'sales_invoice_number', 'class' => 'form-control input-sm', 'value' => $invoice_number]) ?>
</div>
</div>
</div>
</div>
<?php } ?>
</div>
<?php
}
}
?>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
const redirect = function() {
window.location.href = "<?= site_url('sales'); ?>";
};
$("#remove_customer_button").click(function() {
$.post("<?= site_url('sales/removeCustomer'); ?>", redirect);
});
$(".delete_item_button").click(function() {
const item_id = $(this).data('item-id');
$.post("<?= site_url('sales/deleteItem/'); ?>" + item_id, redirect);
});
$(".delete_payment_button").click(function() {
const item_id = $(this).data('payment-id');
$.post("<?= site_url('sales/deletePayment/'); ?>" + item_id, redirect);
});
$("input[name='item_number']").change(function() {
var item_id = $(this).parents('tr').find("input[name='item_id']").val();
var item_number = $(this).val();
$.ajax({
url: "<?= site_url('sales/changeItemNumber') ?>",
method: 'post',
data: {
'item_id': item_id,
'item_number': item_number,
},
dataType: 'json'
});
});
$("input[name='name']").change(function() {
var item_id = $(this).parents('tr').find("input[name='item_id']").val();
var item_name = $(this).val();
$.ajax({
url: "<?= site_url('sales/changeItemName') ?>",
method: 'post',
data: {
'item_id': item_id,
'item_name': item_name,
},
dataType: 'json'
});
});
$("input[name='item_description']").change(function() {
var item_id = $(this).parents('tr').find("input[name='item_id']").val();
var item_description = $(this).val();
$.ajax({
url: "<?= site_url('sales/changeItemDescription') ?>",
method: 'post',
data: {
'item_id': item_id,
'item_description': item_description,
},
dataType: 'json'
});
});
$('#item').focus();
$('#item').blur(function() {
$(this).val("<?= lang(ucfirst($controller_name) . '.start_typing_item_name') ?>");
});
$('#item').autocomplete({
source: "<?= esc("$controller_name/itemSearch") ?>",
minChars: 0,
autoFocus: false,
delay: 500,
select: function(a, ui) {
$(this).val(ui.item.value);
$('#add_item_form').submit();
return false;
}
});
$('#item').keypress(function(e) {
if (e.which == 13) {
$('#add_item_form').submit();
return false;
}
});
var clear_fields = function() {
if ($(this).val().match("<?= lang(ucfirst($controller_name) . '.start_typing_item_name') . '|' . lang(ucfirst($controller_name) . '.start_typing_customer_name') ?>")) {
$(this).val('');
}
};
$('#item, #customer').click(clear_fields).dblclick(function(event) {
$(this).autocomplete('search');
});
$('#customer').blur(function() {
$(this).val("<?= lang(ucfirst($controller_name) . '.start_typing_customer_name') ?>");
});
$('#customer').autocomplete({
source: "<?= site_url('customers/suggest') ?>",
minChars: 0,
delay: 10,
select: function(a, ui) {
$(this).val(ui.item.value);
$('#select_customer_form').submit();
return false;
}
});
$('#customer').keypress(function(e) {
if (e.which == 13) {
$('#select_customer_form').submit();
return false;
}
});
$('.giftcard-input').autocomplete({
source: "<?= site_url('giftcards/suggest') ?>",
minChars: 0,
delay: 10,
select: function(a, ui) {
$(this).val(ui.item.value);
$('#add_payment_form').submit();
return false;
}
});
$('#comment').keyup(function() {
$.post("<?= esc(site_url("$controller_name/setComment")) ?>", {
comment: $('#comment').val()
});
});
<?php if ($config['invoice_enable']) { ?>
$('#sales_invoice_number').keyup(function() {
$.post("<?= esc(site_url("$controller_name/setInvoiceNumber")) ?>", {
sales_invoice_number: $('#sales_invoice_number').val()
});
});
<?php } ?>
$('#sales_print_after_sale').change(function() {
$.post("<?= esc(site_url("$controller_name/setPrintAfterSale")) ?>", {
sales_print_after_sale: $(this).is(':checked')
});
});
$('#price_work_orders').change(function() {
$.post("<?= esc(site_url("$controller_name/setPriceWorkOrders")) ?>", {
price_work_orders: $(this).is(':checked')
});
});
$('#email_receipt').change(function() {
$.post("<?= esc(site_url("$controller_name/setEmailReceipt")) ?>", {
email_receipt: $(this).is(':checked')
});
});
$('#finish_sale_button').click(function() {
$('#buttons_form').attr('action', "<?= "$controller_name/complete" ?>");
$('#buttons_form').submit();
});
$('#finish_invoice_quote_button').click(function() {
$('#buttons_form').attr('action', "<?= "$controller_name/complete" ?>");
$('#buttons_form').submit();
});
$('#suspend_sale_button').click(function() {
$('#buttons_form').attr('action', "<?= site_url("$controller_name/suspend") ?>");
$('#buttons_form').submit();
});
$('#cancel_sale_button').click(function() {
if (confirm("<?= lang(ucfirst($controller_name) . '.confirm_cancel_sale') ?>")) {
$('#buttons_form').attr('action', "<?= site_url("$controller_name/cancel") ?>");
$('#buttons_form').submit();
}
});
$('#add_payment_button').click(function() {
$('#add_payment_form').submit();
});
$('#payment_types').change(check_payment_type).ready(check_payment_type);
$('#cart_contents input').keypress(function(event) {
if (event.which == 13) {
$(this).parents('tr').prevAll('form:first').submit();
}
});
$('#amount_tendered').keypress(function(event) {
if (event.which == 13) {
$('#add_payment_form').submit();
}
});
$('#finish_sale_button').keypress(function(event) {
if (event.which == 13) {
$('#finish_sale_form').submit();
}
});
dialog_support.init('a.modal-dlg, button.modal-dlg');
table_support.handle_submit = function(resource, response, stay_open) {
$.notify({
message: response.message
}, {
type: response.success ? 'success' : 'danger'
})
if (response.success) {
if (resource.match(/customers$/)) {
$('#customer').val(response.id);
$('#select_customer_form').submit();
} else {
var $stock_location = $("select[name='stock_location']").val();
$('#item_location').val($stock_location);
$('#item').val(response.id);
if (stay_open) {
$('#add_item_form').ajaxSubmit();
} else {
$('#add_item_form').submit();
}
}
}
}
$('[name="price"],[name="quantity"],[name="discount"],[name="description"],[name="serialnumber"],[name="discounted_total"]').change(function() {
$(this).parents('tr').prevAll('form:first').submit()
});
$('[name="discount_toggle"]').change(function() {
var input = $('<input>').attr('type', 'hidden').attr('name', 'discount_type').val(($(this).prop('checked')) ? 1 : 0);
$('#cart_' + $(this).attr('data-line')).append($(input));
$('#cart_' + $(this).attr('data-line')).submit();
});
});
function check_payment_type() {
var cash_mode = <?= json_encode($cash_mode) ?>;
if ($("#payment_types").val() == "<?= lang(ucfirst($controller_name) . '.giftcard') ?>") {
$("#sale_total").html("<?= to_currency($total) ?>");
$("#sale_amount_due").html("<?= to_currency($amount_due) ?>");
$("#amount_tendered_label").html("<?= lang(ucfirst($controller_name) . '.giftcard_number') ?>");
$("#amount_tendered:enabled").val('').focus();
$(".giftcard-input").attr('disabled', false);
$(".non-giftcard-input").attr('disabled', true);
$(".giftcard-input:enabled").val('').focus();
} else if (($("#payment_types").val() == "<?= lang(ucfirst($controller_name) . '.cash') ?>" && cash_mode == '1')) {
$("#sale_total").html("<?= to_currency($non_cash_total) ?>");
$("#sale_amount_due").html("<?= to_currency($cash_amount_due) ?>");
$("#amount_tendered_label").html("<?= lang(ucfirst($controller_name) . '.amount_tendered') ?>");
$("#amount_tendered:enabled").val("<?= to_currency_no_money($cash_amount_due) ?>");
$(".giftcard-input").attr('disabled', true);
$(".non-giftcard-input").attr('disabled', false);
} else {
$("#sale_total").html("<?= to_currency($non_cash_total) ?>");
$("#sale_amount_due").html("<?= to_currency($amount_due) ?>");
$("#amount_tendered_label").html("<?= lang(ucfirst($controller_name) . '.amount_tendered') ?>");
$("#amount_tendered:enabled").val("<?= to_currency_no_money($amount_due) ?>");
$(".giftcard-input").attr('disabled', true);
$(".non-giftcard-input").attr('disabled', false);
}
}
// Add Keyboard Shortcuts/Hotkeys to Sale Register
document.body.onkeyup = function(e) {
switch (event.altKey && event.keyCode) {
case 49: // Alt + 1 Items Seach
$("#item").focus();
$("#item").select();
break;
case 50: // Alt + 2 Customers Search
$("#customer").focus();
$("#customer").select();
break;
case 51: // Alt + 3 Suspend Current Sale
$("#suspend_sale_button").click();
break;
case 52: // Alt + 4 Check Suspended
$("#show_suspended_sales_button").click();
break;
case 53: // Alt + 5 Edit Amount Tendered Value
$("#amount_tendered").focus();
$("#amount_tendered").select();
break;
case 54: // Alt + 6 Add Payment
$("#add_payment_button").click();
break;
case 55: // Alt + 7 Add Payment and Complete Sales/Invoice
$("#add_payment_button").click();
window.location.href = "<?= 'sales/complete' ?>";
break;
case 56: // Alt + 8 Finish Quote/Invoice without payment
$("#finish_invoice_quote_button").click();
break;
case 57: // Alt + 9 Open Shortcuts Help Modal
$("#show_keyboard_help").click();
break;
}
switch (event.keyCode) {
case 27: // ESC Cancel Current Sale
$("#cancel_sale_button").click();
break;
}
}
</script>
<?= view('partial/footer') ?>