mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-10 18:09:30 -04:00
56 lines
1.6 KiB
PHP
56 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* @var string $controller_name
|
|
* @var string $table_headers
|
|
*/
|
|
?>
|
|
<?php echo view('partial/header') ?>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(function()
|
|
{
|
|
<?php echo view('partial/bootstrap_tables_locale') ?>
|
|
|
|
table_support.init({
|
|
resource: '<?php echo esc($controller_name) ?>',
|
|
headers: <?php echo $table_headers ?>,
|
|
pageSize: <?php echo $config['lines_per_page'] ?>,
|
|
uniqueId: 'item_kit_id'
|
|
});
|
|
|
|
$('#generate_barcodes').click(function()
|
|
{
|
|
window.open(
|
|
'index.php/item_kits/generate_barcodes/'+table_support.selected_ids().join(':'),
|
|
'_blank' // <- This is what makes it open in a new window.
|
|
);
|
|
});
|
|
});
|
|
|
|
</script>
|
|
|
|
<div id="title_bar" class="btn-toolbar">
|
|
<button class='btn btn-info btn-sm pull-right modal-dlg' data-btn-submit='<?php echo lang('Common.submit') ?>' data-href='<?php echo esc(site_url("$controller_name/view"), 'url') ?>'
|
|
title='<?php echo lang($controller_name . '.new') ?>'>
|
|
<span class="glyphicon glyphicon-tags"> </span><?php echo lang($controller_name . '.new') ?>
|
|
</button>
|
|
</div>
|
|
|
|
<div id="toolbar">
|
|
<div class="pull-left btn-toolbar">
|
|
<button id="delete" class="btn btn-default btn-sm">
|
|
<span class="glyphicon glyphicon-trash"> </span><?php echo lang('Common.delete') ?>
|
|
</button>
|
|
|
|
<button id="generate_barcodes" class="btn btn-default btn-sm" data-href='<?php echo esc(site_url("$controller_name/generate_barcodes"), 'url') ?>'>
|
|
<span class="glyphicon glyphicon-barcode"> </span><?php echo lang('Items.generate_barcodes') ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="table_holder">
|
|
<table id="table"></table>
|
|
</div>
|
|
|
|
<?php echo view('partial/footer') ?>
|