mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-02 22:36:21 -04:00
- Made view CI form helper function call format uniform.
- replaced calls to array() with []
- Placed { on its own line
- Removed empty lines where there shouldn't be any.
- Replaced text/javascript with application/javascript as the former is deprecated
79 lines
2.4 KiB
PHP
79 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* @var string $controller_name
|
|
* @var string $table_headers
|
|
* @var array $filters
|
|
* @var array $config
|
|
*/
|
|
?>
|
|
<?= view('partial/header') ?>
|
|
|
|
<script type="application/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') ?>
|
|
|
|
table_support.init({
|
|
resource: '<?= esc($controller_name) ?>',
|
|
headers: <?= $table_headers ?>,
|
|
pageSize: <?= $config['lines_per_page'] ?>,
|
|
uniqueId: 'cashup_id',
|
|
queryParams: function() {
|
|
return $.extend(arguments[0], {
|
|
"end_date": end_date,
|
|
"filters": $("#filters").val(),
|
|
"start_date": start_date
|
|
});
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<?= view('partial/print_receipt', ['print_after_sale'=>false, 'selected_printer' => 'takings_printer']) ?>
|
|
|
|
<div id="title_bar" class="print_hide btn-toolbar">
|
|
<button onclick="javascript:printdoc()" class='btn btn-info btn-sm pull-right'>
|
|
<span class="glyphicon glyphicon-print"> </span><?= lang('Common.print') ?>
|
|
</button>
|
|
<button class='btn btn-info btn-sm pull-right modal-dlg' data-btn-submit='<?= lang('Common.submit') ?>' data-href='<?= "$controller_name/view" ?>'
|
|
title='<?= lang(ucfirst($controller_name). ".new") ?>'>
|
|
<span class="glyphicon glyphicon-tags"> </span><?= lang(esc(ucfirst($controller_name)) . '.new') //TODO: String Interpolation ?>
|
|
</button>
|
|
</div>
|
|
|
|
<div id="toolbar">
|
|
<div class="pull-left form-inline" role="toolbar">
|
|
<button id="delete" class="btn btn-default btn-sm print_hide">
|
|
<span class="glyphicon glyphicon-trash"> </span><?= lang('Common.delete') ?>
|
|
</button>
|
|
|
|
<?= form_input (['name' => 'daterangepicker', 'class' => 'form-control input-sm', 'id' => 'daterangepicker']) ?>
|
|
<?= form_multiselect('filters[]', $filters, [''], [
|
|
'id' => 'filters',
|
|
'data-none-selected-text'=>lang('Common.none_selected_text'),
|
|
'class' => 'selectpicker show-menu-arrow',
|
|
'data-selected-text-format' => 'count > 1',
|
|
'data-style' => 'btn-default btn-sm',
|
|
'data-width' => 'fit'
|
|
]) ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="table_holder">
|
|
<table id="table"></table>
|
|
</div>
|
|
|
|
<?= view('partial/footer') ?>
|