mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-18 06:17:55 -05:00
92 lines
2.7 KiB
PHP
92 lines
2.7 KiB
PHP
<?php $this->load->view("partial/header"); ?>
|
|
|
|
<script type="text/javascript">
|
|
dialog_support.init("a.modal-dlg");
|
|
</script>
|
|
|
|
<?php
|
|
if(isset($error))
|
|
{
|
|
echo "<div class='alert alert-dismissible alert-danger'>".$error."</div>";
|
|
}
|
|
?>
|
|
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title"><span class="glyphicon glyphicon-stats"> </span><?php echo $this->lang->line('reports_graphical_reports'); ?></h3>
|
|
</div>
|
|
<div class="list-group">
|
|
<?php
|
|
foreach($grants as $grant)
|
|
{
|
|
if (preg_match('/reports_/', $grant['permission_id']) && !preg_match('/(inventory|receivings)/', $grant['permission_id']))
|
|
{
|
|
show_report('graphical_summary', $grant['permission_id']);
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title"><span class="glyphicon glyphicon-list"> </span><?php echo $this->lang->line('reports_summary_reports'); ?></h3>
|
|
</div>
|
|
<div class="list-group">
|
|
<?php
|
|
foreach($grants as $grant)
|
|
{
|
|
if (preg_match('/reports_/', $grant['permission_id']) && !preg_match('/(inventory|receivings)/', $grant['permission_id']))
|
|
{
|
|
show_report('summary', $grant['permission_id']);
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title"><span class="glyphicon glyphicon-list-alt"> </span><?php echo $this->lang->line('reports_detailed_reports'); ?></h3>
|
|
</div>
|
|
<div class="list-group">
|
|
<?php
|
|
$person_id = $this->session->userdata('person_id');
|
|
show_report_if_allowed('detailed', 'sales', $person_id);
|
|
show_report_if_allowed('detailed', 'receivings', $person_id);
|
|
show_report_if_allowed('specific', 'customer', $person_id, 'reports_customers');
|
|
show_report_if_allowed('specific', 'discount', $person_id, 'reports_discounts');
|
|
show_report_if_allowed('specific', 'employee', $person_id, 'reports_employees');
|
|
?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
if ($this->Employee->has_grant('reports_inventory', $this->session->userdata('person_id')))
|
|
{
|
|
?>
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title"><span class="glyphicon glyphicon-book"> </span><?php echo $this->lang->line('reports_inventory_reports'); ?></h3>
|
|
</div>
|
|
<div class="list-group">
|
|
<?php
|
|
show_report('', 'reports_inventory_low');
|
|
show_report('', 'reports_inventory_summary');
|
|
?>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->load->view("partial/footer"); ?>
|