mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 09:48:02 -05:00
91 lines
2.1 KiB
PHP
91 lines
2.1 KiB
PHP
<?php
|
|
// Check if for excel export process
|
|
if($export_excel == 1)
|
|
{
|
|
ob_start();
|
|
$this->load->view("partial/header_excel");
|
|
}
|
|
else
|
|
{
|
|
$this->load->view("partial/header");
|
|
}
|
|
?>
|
|
|
|
<div id="page_title"><?php echo $title ?></div>
|
|
|
|
<div id="page_subtitle"><?php echo $subtitle ?></div>
|
|
|
|
<div id="table_holder">
|
|
<table id="table"></table>
|
|
</div>
|
|
|
|
<div id="report_summary">
|
|
<?php
|
|
foreach($overall_summary_data as $name=>$value)
|
|
{
|
|
?>
|
|
<div class="summary_row"><?php echo $this->lang->line('reports_'.$name). ': '.to_currency($value); ?></div>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<?php
|
|
if($export_excel == 1)
|
|
{
|
|
$this->load->view("partial/footer_excel");
|
|
$content = ob_end_flush();
|
|
|
|
$filename = trim($filename);
|
|
$filename = str_replace(array(' ', '/', '\\'), '', $title);
|
|
$filename .= "_Export.xls";
|
|
header('Content-type: application/ms-excel');
|
|
header('Content-Disposition: attachment; filename='.$filename);
|
|
echo $content;
|
|
die();
|
|
}
|
|
else
|
|
{
|
|
?>
|
|
<script type="text/javascript" language="javascript">
|
|
$(document).ready(function()
|
|
{
|
|
|
|
var detail_data = <?php echo json_encode($details_data); ?>;
|
|
|
|
$('#table').bootstrapTable({
|
|
columns: <?php echo transform_headers_readonly($headers['summary']); ?>,
|
|
pageSize: <?php echo $this->config->item('lines_per_page'); ?>,
|
|
striped: true,
|
|
pagination: true,
|
|
sortable: true,
|
|
showColumns: true,
|
|
uniqueId: 'id',
|
|
data: <?php echo json_encode($summary_data); ?>,
|
|
iconSize: 'sm',
|
|
paginationVAlign: 'bottom',
|
|
detailView: true,
|
|
onExpandRow: function (index, row, $detail) {
|
|
$detail.html('<table></table>').find("table").bootstrapTable({
|
|
columns: <?php echo transform_headers_readonly($headers['details']); ?>,
|
|
data: detail_data[index]
|
|
});
|
|
}
|
|
});
|
|
|
|
<?php
|
|
if (isset($editable))
|
|
{
|
|
?>
|
|
table_support.submit_handler('<?php echo site_url("reports/get_detailed_" . $editable . "_row")?>');
|
|
dialog_support.init("a.modal-dlg");
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
});
|
|
</script>
|
|
<?php $this->load->view("partial/footer"); ?>
|
|
<?php
|
|
} // end if not is excel export
|
|
?>
|