mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-04 15:13:40 -04:00
111 lines
3.7 KiB
PHP
111 lines
3.7 KiB
PHP
<?php
|
|
/**
|
|
* @var string $controller_name
|
|
* @var string $table_headers
|
|
* @var array $filters
|
|
* @var array $selected_filters
|
|
* @var array $config
|
|
* @var string|null $start_date
|
|
* @var string|null $end_date
|
|
*/
|
|
?>
|
|
|
|
<?= view('partial/header') ?>
|
|
|
|
<?php
|
|
$title_info['config_title'] = 'Sales';
|
|
echo view('configs/config_header', $title_info);
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
// When any filter is clicked and the dropdown window is closed
|
|
$('#filters').on('hidden.bs.select', function(e) {
|
|
table_support.refresh();
|
|
});
|
|
|
|
// Load the preset datarange picker
|
|
<?= view('partial/daterangepicker') ?>
|
|
|
|
$("#daterangepicker").on('apply.daterangepicker', function(ev, picker) {
|
|
table_support.refresh();
|
|
});
|
|
|
|
<?= view('partial/bootstrap_tables_locale') ?>
|
|
|
|
// Override dates from server if provided
|
|
<?php if (isset($start_date) && $start_date): ?>
|
|
start_date = "<?= esc($start_date) ?>";
|
|
<?php endif; ?>
|
|
<?php if (isset($end_date) && $end_date): ?>
|
|
end_date = "<?= esc($end_date) ?>";
|
|
<?php endif; ?>
|
|
|
|
table_support.query_params = function() {
|
|
return {
|
|
"start_date": start_date,
|
|
"end_date": end_date,
|
|
"filters": $("#filters").val()
|
|
}
|
|
};
|
|
|
|
table_support.init({
|
|
resource: '<?= esc($controller_name) ?>',
|
|
headers: <?= $table_headers ?>,
|
|
pageSize: <?= $config['lines_per_page'] ?>,
|
|
uniqueId: 'sale_id',
|
|
onLoadSuccess: function(response) {
|
|
if ($("#table tbody tr").length > 1) {
|
|
$("#payment_summary").html(response.payment_summary);
|
|
$("#table tbody tr:last td:first").html("");
|
|
$("#table tbody tr:last").css('font-weight', 'bold');
|
|
}
|
|
},
|
|
queryParams: function() {
|
|
return $.extend(arguments[0], table_support.query_params());
|
|
},
|
|
columns: {
|
|
'invoice': {
|
|
align: 'center'
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<?= view('partial/table_filter_persistence') ?>
|
|
|
|
<?= view('partial/print_receipt', ['print_after_sale' => false, 'selected_printer' => 'takings_printer']) ?>
|
|
|
|
<div class="d-flex gap-2 justify-content-end d-print-none">
|
|
<a type="button" class="btn btn-primary" href="sales" title="<?= lang('Sales.register') ?>">
|
|
<i class="bi bi-arrow-left-circle me-2"></i><?= lang('Sales.register') ?>
|
|
</a>
|
|
<button type="button" class="btn btn-primary" onclick="window.print()" title="<?= lang('Common.print') ?>">
|
|
<i class="bi bi-printer me-2"></i><?= lang('Common.print') ?>
|
|
</button>
|
|
</div>
|
|
|
|
<div id="toolbar">
|
|
<div class="d-flex gap-2">
|
|
<button type="button" class="btn btn-secondary d-print-none">
|
|
<i class="bi bi-trash"></i><span class="d-none d-sm-inline ms-2"><?= lang('Common.delete') ?></span>
|
|
</button>
|
|
<input type="text" class="form-control" name="daterangepicker" id="daterangepicker">
|
|
<select id="filters" name="filters[]" class="selectpicker show-menu-arrow" data-none-selected-text="<?= lang('Common.none_selected_text') ?>" data-selected-text-format="count > 1" data-style="btn-secondary" data-width="fit" multiple>
|
|
<?php foreach ($filters as $key => $value): ?>
|
|
<option value="<?= esc($key) ?>"><?= esc($value) ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="table_holder">
|
|
<table id="table"></table>
|
|
</div>
|
|
|
|
<div id="payment_summary">
|
|
</div>
|
|
|
|
<?= view('partial/footer') ?>
|