File: /home/jairicem/kunakornthairestaurant.com/themes/default/admin/views/returns/edit.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<script type="text/javascript">
var count = 1, an = 1, product_variant = 0, DT = <?= $Settings->default_tax_rate ?>,
product_tax = 0, invoice_tax = 0, product_discount = 0, order_discount = 0, total_discount = 0, total = 0, allow_discount = <?= ($Owner || $Admin || $this->session->userdata('allow_discount')) ? 1 : 0; ?>,
tax_rates = <?php echo json_encode($tax_rates); ?>;
$(document).ready(function () {
<?php if ($inv) {
?>
localStorage.setItem('redate', '<?= $this->sma->hrld($inv->date) ?>');
localStorage.setItem('recustomer', '<?= $inv->customer_id ?>');
localStorage.setItem('rebiller', '<?= $inv->biller_id ?>');
localStorage.setItem('reref', '<?= $inv->reference_no ?>');
localStorage.setItem('rewarehouse', '<?= $inv->warehouse_id ?>');
localStorage.setItem('renote', '<?= str_replace(["\r", "\n"], '', $this->sma->decode_html($inv->note)); ?>');
localStorage.setItem('reinnote', '<?= str_replace(["\r", "\n"], '', $this->sma->decode_html($inv->staff_note)); ?>');
localStorage.setItem('rediscount', '<?= $inv->order_discount_id ?>');
localStorage.setItem('reshipping', '<?= $this->sma->formatDecimal($inv->shipping); ?>');
localStorage.setItem('retax2', '<?= $inv->order_tax_id ?>');
localStorage.setItem('reitems', JSON.stringify(<?= $inv_items; ?>));
<?php
} ?>
ItemnTotals();
$('.bootbox').on('hidden.bs.modal', function (e) {
$('#add_item').focus();
});
$("#add_item").autocomplete({
source: function (request, response) {
$.ajax({
type: 'get',
url: '<?= admin_url('returns/suggestions'); ?>',
dataType: "json",
data: { term: request.term },
success: function (data) {
$(this).removeClass('ui-autocomplete-loading');
response(data);
}
});
},
minLength: 1,
autoFocus: false,
delay: 250,
response: function (event, ui) {
if ($(this).val().length >= 16 && ui.content[0].id == 0) {
bootbox.alert('<?= lang('no_match_found') ?>', function () {
$('#add_item').focus();
});
$(this).removeClass('ui-autocomplete-loading');
$(this).removeClass('ui-autocomplete-loading');
$(this).val('');
}
else if (ui.content.length == 1 && ui.content[0].id != 0) {
ui.item = ui.content[0];
$(this).data('ui-autocomplete')._trigger('select', 'autocompleteselect', ui);
$(this).autocomplete('close');
$(this).removeClass('ui-autocomplete-loading');
}
else if (ui.content.length == 1 && ui.content[0].id == 0) {
bootbox.alert('<?= lang('no_match_found') ?>', function () {
$('#add_item').focus();
});
$(this).removeClass('ui-autocomplete-loading');
$(this).val('');
}
},
select: function (event, ui) {
event.preventDefault();
if (ui.item.id !== 0) {
var row = add_return_item(ui.item);
if (row)
$(this).val('');
} else {
bootbox.alert('<?= lang('no_match_found') ?>');
}
}
});
});
</script>
<div class="box">
<div class="box-header">
<h2 class="blue"><i class="fa-fw fa fa-edit"></i><?= lang('edit_return'); ?></h2>
</div>
<div class="box-content">
<div class="row">
<div class="col-lg-12">
<p class="introtext"><?php echo lang('update_info'); ?></p>
<?php
$attrib = ['data-toggle' => 'validator', 'role' => 'form'];
echo admin_form_open_multipart('returns/edit/' . $id, $attrib);
?>
<div class="row">
<div class="col-lg-12">
<?php if ($Owner || $Admin) {
?>
<div class="col-md-4">
<div class="form-group">
<?= lang('date', 'redate'); ?>
<?php echo form_input('date', (isset($_POST['date']) ? $_POST['date'] : ''), 'class="form-control input-tip datetime" id="redate" required="required"'); ?>
</div>
</div>
<?php
} ?>
<div class="col-md-4">
<div class="form-group">
<?= lang('reference_no', 'reref'); ?>
<?php echo form_input('reference_no', (isset($_POST['reference_no']) ? $_POST['reference_no'] : ''), 'class="form-control input-tip" id="reref"'); ?>
</div>
</div>
<?php if ($Owner || $Admin || !$this->session->userdata('biller_id')) {
?>
<div class="col-md-4">
<div class="form-group">
<?= lang('biller', 'rebiller'); ?>
<?php
$bl[''] = '';
foreach ($billers as $biller) {
$bl[$biller->id] = $biller->company && $biller->company != '-' ? $biller->company : $biller->name;
}
echo form_dropdown('biller', $bl, (isset($_POST['biller']) ? $_POST['biller'] : $Settings->default_biller), 'id="rebiller" data-placeholder="' . lang('select') . ' ' . lang('biller') . '" required="required" class="form-control input-tip select" style="width:100%;"'); ?>
</div>
</div>
<?php
} else {
$biller_input = [
'type' => 'hidden',
'name' => 'biller',
'id' => 'rebiller',
'value' => $this->session->userdata('biller_id'),
];
echo form_input($biller_input);
} ?>
<?php if ($Owner || $Admin || !$this->session->userdata('warehouse_id')) {
?>
<div class="col-md-4">
<div class="form-group">
<?= lang('warehouse', 'rewarehouse'); ?>
<?php
$wh[''] = '';
foreach ($warehouses as $warehouse) {
$wh[$warehouse->id] = $warehouse->name;
}
echo form_dropdown('warehouse', $wh, (isset($_POST['warehouse']) ? $_POST['warehouse'] : $Settings->default_warehouse), 'id="rewarehouse" class="form-control input-tip select" data-placeholder="' . lang('select') . ' ' . lang('warehouse') . '" required="required" style="width:100%;" '); ?>
</div>
</div>
<?php
} else {
$warehouse_input = [
'type' => 'hidden',
'name' => 'warehouse',
'id' => 'rewarehouse',
'value' => $this->session->userdata('warehouse_id'),
];
echo form_input($warehouse_input);
} ?>
<div class="col-md-4">
<div class="form-group">
<?= lang('customer', 'recustomer'); ?>
<?php
echo form_input('customer', (isset($_POST['customer']) ? $_POST['customer'] : ''), 'id="recustomer" data-placeholder="' . lang('select') . ' ' . lang('customer') . '" required="required" class="form-control ssr-customer input-tip" style="width:100%;"');
?>
</div>
</div>
<?php if ($Settings->tax2) {
?>
<div class="col-md-4">
<div class="form-group">
<?= lang('order_tax', 'retax2'); ?>
<?php
$tr[''] = '';
foreach ($tax_rates as $tax) {
$tr[$tax->id] = $tax->name;
}
echo form_dropdown('order_tax', $tr, (isset($_POST['order_tax']) ? $_POST['order_tax'] : $Settings->default_tax_rate2), 'id="retax2" data-placeholder="' . lang('select') . ' ' . lang('order_tax') . '" class="form-control input-tip select" style="width:100%;"'); ?>
</div>
</div>
<?php
} ?>
<?php if ($Owner || $Admin || $this->session->userdata('allow_discount')) {
?>
<div class="col-md-4">
<div class="form-group">
<?= lang('order_discount', 'rediscount'); ?>
<?php echo form_input('order_discount', '', 'class="form-control input-tip" id="rediscount"'); ?>
</div>
</div>
<?php
} ?>
<div class="col-md-4">
<div class="form-group">
<?= lang('shipping', 'reshipping'); ?>
<?php echo form_input('shipping', '', 'class="form-control input-tip" id="reshipping"'); ?>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<?= lang('document', 'document') ?>
<input id="document" type="file" data-browse-label="<?= lang('browse'); ?>" name="document" data-show-upload="false"
data-show-preview="false" class="form-control file">
</div>
</div>
<div class="clearfix"></div>
<div class="col-md-12" id="sticker">
<div class="well well-sm">
<div class="form-group" style="margin-bottom:0;">
<div class="input-group wide-tip">
<div class="input-group-addon" style="padding-left: 10px; padding-right: 10px;">
<i class="fa fa-2x fa-barcode addIcon"></i></a></div>
<?php echo form_input('add_item', '', 'class="form-control input-lg" id="add_item" placeholder="' . lang('add_product_to_order') . '"'); ?>
<?php if ($Owner || $Admin || $GP['products-add']) {
?>
<div class="input-group-addon" style="padding-left: 10px; padding-right: 10px;">
<a href="#" id="addManually" class="tip" title="<?= lang('add_product_manually') ?>">
<i class="fa fa-2x fa-plus-circle addIcon" id="addIcon"></i>
</a>
</div>
<?php
} ?>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="col-md-12">
<div class="control-group table-group">
<label class="table-label"><?= lang('order_items'); ?> *</label>
<div class="controls table-controls">
<table id="reTable" class="table items table-striped table-bordered table-condensed table-hover sortable_table">
<thead>
<tr>
<th class="col-md-4"><?= lang('product') . ' (' . lang('code') . ' - ' . lang('name') . ')'; ?></th>
<?php
if ($Settings->product_serial) {
echo '<th class="col-md-2">' . lang('serial_no') . '</th>';
}
?>
<th class="col-md-1"><?= lang('net_unit_price'); ?></th>
<th class="col-md-1"><?= lang('quantity'); ?></th>
<?php
if ($Settings->product_discount && ($Owner || $Admin || $this->session->userdata('allow_discount'))) {
echo '<th class="col-md-1">' . lang('discount') . '</th>';
}
?>
<?php
if ($Settings->tax1) {
echo '<th class="col-md-1">' . lang('product_tax') . '</th>';
}
?>
<th>
<?= lang('subtotal'); ?>
(<span class="currency"><?= $default_currency->code ?></span>)
</th>
<th style="width: 30px !important; text-align: center;">
<i class="fa fa-trash-o" style="opacity:0.5; filter:alpha(opacity=50);"></i>
</th>
</tr>
</thead>
<tbody></tbody>
<tfoot></tfoot>
</table>
</div>
</div>
</div>
<div class="clearfix"></div>
<input type="hidden" name="total_items" value="" id="total_items" required="required"/>
<div class="row" id="bt">
<div class="col-md-12">
<div class="col-md-6">
<div class="form-group">
<?= lang('return_note', 'renote'); ?>
<?php echo form_textarea('note', (isset($_POST['note']) ? $_POST['note'] : ''), 'class="form-control" id="renote" style="margin-top: 10px; height: 100px;"'); ?>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<?= lang('staff_note', 'reinnote'); ?>
<?php echo form_textarea('staff_note', (isset($_POST['staff_note']) ? $_POST['staff_note'] : ''), 'class="form-control" id="reinnote" style="margin-top: 10px; height: 100px;"'); ?>
</div>
</div>
</div>
</div>
<div class="col-md-12">
<div
class="fprom-group"><?php echo form_submit('add_return', lang('submit'), 'id="add_return" class="btn btn-primary" style="padding: 6px 15px; margin:15px 0;"'); ?>
<button type="button" class="btn btn-danger" id="reset"><?= lang('reset') ?></div>
</div>
</div>
</div>
<div id="bottom-total" class="well well-sm" style="margin-bottom: 0;">
<table class="table table-bordered table-condensed totals" style="margin-bottom:0;">
<tr class="warning">
<td><?= lang('items') ?> <span class="totals_val pull-right" id="titems">0</span></td>
<td><?= lang('total') ?> <span class="totals_val pull-right" id="total">0.00</span></td>
<?php if ($Owner || $Admin || $this->session->userdata('allow_discount')) {
?>
<td><?= lang('order_discount') ?> <span class="totals_val pull-right" id="tds">0.00</span></td>
<?php
}?>
<?php if ($Settings->tax2) {
?>
<td><?= lang('order_tax') ?> <span class="totals_val pull-right" id="ttax2">0.00</span></td>
<?php
} ?>
<td><?= lang('grand_total') ?> <span class="totals_val pull-right" id="gtotal">0.00</span></td>
</tr>
</table>
</div>
<?php echo form_close(); ?>
</div>
</div>
</div>
</div>
<div class="modal" id="prModal" tabindex="-1" role="dialog" aria-labelledby="prModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true"><i
class="fa fa-2x">×</i></span><span class="sr-only"><?=lang('close');?></span></button>
<h4 class="modal-title" id="prModalLabel"></h4>
</div>
<div class="modal-body" id="pr_popover_content">
<form class="form-horizontal" role="form">
<?php if ($Settings->tax1) {
?>
<div class="form-group">
<label class="col-sm-4 control-label"><?= lang('product_tax') ?></label>
<div class="col-sm-8">
<?php
$tr[''] = '';
foreach ($tax_rates as $tax) {
$tr[$tax->id] = $tax->name;
}
echo form_dropdown('ptax', $tr, '', 'id="ptax" class="form-control pos-input-tip" style="width:100%;"'); ?>
</div>
</div>
<?php
} ?>
<?php if ($Settings->product_serial) {
?>
<div class="form-group">
<label for="pserial" class="col-sm-4 control-label"><?= lang('serial_no') ?></label>
<div class="col-sm-8">
<input type="text" class="form-control" id="pserial">
</div>
</div>
<?php
} ?>
<div class="form-group">
<label for="pquantity" class="col-sm-4 control-label"><?= lang('quantity') ?></label>
<div class="col-sm-8">
<input type="text" class="form-control" id="pquantity">
</div>
</div>
<div class="form-group">
<label for="punit" class="col-sm-4 control-label"><?= lang('product_unit') ?></label>
<div class="col-sm-8">
<div id="punits-div"></div>
</div>
</div>
<div class="form-group">
<label for="poption" class="col-sm-4 control-label"><?= lang('product_option') ?></label>
<div class="col-sm-8">
<div id="poptions-div"></div>
</div>
</div>
<?php if ($Settings->product_discount && ($Owner || $Admin || $this->session->userdata('allow_discount'))) {
?>
<div class="form-group">
<label for="pdiscount"
class="col-sm-4 control-label"><?= lang('product_discount') ?></label>
<div class="col-sm-8">
<input type="text" class="form-control" id="pdiscount">
</div>
</div>
<?php
} ?>
<div class="form-group">
<label for="pprice" class="col-sm-4 control-label"><?= lang('unit_price') ?></label>
<div class="col-sm-8">
<input type="text" class="form-control" id="pprice" <?= ($Owner || $Admin || $GP['edit_price']) ? '' : 'readonly'; ?>>
</div>
</div>
<table class="table table-bordered table-striped">
<tr>
<th style="width:25%;"><?= lang('net_unit_price'); ?></th>
<th style="width:25%;"><span id="net_price"></span></th>
<th style="width:25%;"><?= lang('product_tax'); ?></th>
<th style="width:25%;"><span id="pro_tax"></span></th>
</tr>
</table>
<input type="hidden" id="punit_price" value=""/>
<input type="hidden" id="old_tax" value=""/>
<input type="hidden" id="old_qty" value=""/>
<input type="hidden" id="old_price" value=""/>
<input type="hidden" id="row_id" value=""/>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="editItem"><?= lang('submit') ?></button>
</div>
</div>
</div>
</div>
<div class="modal" id="mModal" tabindex="-1" role="dialog" aria-labelledby="mModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true"><i
class="fa fa-2x">×</i></span><span class="sr-only"><?=lang('close');?></span></button>
<h4 class="modal-title" id="mModalLabel"><?= lang('add_product_manually') ?></h4>
</div>
<div class="modal-body" id="pr_popover_content">
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="mcode" class="col-sm-4 control-label"><?= lang('product_code') ?> *</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="mcode">
</div>
</div>
<div class="form-group">
<label for="mname" class="col-sm-4 control-label"><?= lang('product_name') ?> *</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="mname">
</div>
</div>
<?php if ($Settings->tax1) {
?>
<div class="form-group">
<label for="mtax" class="col-sm-4 control-label"><?= lang('product_tax') ?> *</label>
<div class="col-sm-8">
<?php
$tr[''] = '';
foreach ($tax_rates as $tax) {
$tr[$tax->id] = $tax->name;
}
echo form_dropdown('mtax', $tr, '', 'id="mtax" class="form-control input-tip select" style="width:100%;"'); ?>
</div>
</div>
<?php
} ?>
<div class="form-group">
<label for="mquantity" class="col-sm-4 control-label"><?= lang('quantity') ?> *</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="mquantity">
</div>
</div>
<div class="form-group">
<label for="munit" class="col-sm-4 control-label"><?= lang('unit') ?> *</label>
<div class="col-sm-8">
<?php
$uts[''] = '';
foreach ($units as $unit) {
$uts[$unit->id] = $unit->name;
}
echo form_dropdown('munit', $uts, '', 'id="munit" class="form-control input-tip select" style="width:100%;"');
?>
</div>
</div>
<?php if ($Settings->product_discount && ($Owner || $Admin || $this->session->userdata('allow_discount'))) {
?>
<div class="form-group">
<label for="mdiscount"
class="col-sm-4 control-label"><?= lang('product_discount') ?></label>
<div class="col-sm-8">
<input type="text" class="form-control" id="mdiscount">
</div>
</div>
<?php
} ?>
<div class="form-group">
<label for="mprice" class="col-sm-4 control-label"><?= lang('unit_price') ?> *</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="mprice">
</div>
</div>
<table class="table table-bordered table-striped">
<tr>
<th style="width:25%;"><?= lang('net_unit_price'); ?></th>
<th style="width:25%;"><span id="mnet_price"></span></th>
<th style="width:25%;"><?= lang('product_tax'); ?></th>
<th style="width:25%;"><span id="mpro_tax"></span></th>
</tr>
</table>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="addItemManually"><?= lang('submit') ?></button>
</div>
</div>
</div>
</div>