Files
opensourcepos/app/Views/reports/graphical.php
2024-06-15 17:19:15 +02:00

34 lines
697 B
PHP

<?php
/**
* @var string $title
* @var string $subtitle
* @var string $chart_type
* @var array $summary_data_1
*/
?>
<?php echo view('partial/header') ?>
<script type="text/javascript">
dialog_support.init("a.modal-dlg");
</script>
<div id="page_title"><?php echo esc($title) ?></div>
<div id="page_subtitle"><?php echo esc($subtitle) ?></div>
<div class="ct-chart ct-golden-section" id="chart1"></div>
<?php echo view(esc($chart_type)) ?>
<div id="chart_report_summary">
<?php
foreach($summary_data_1 as $name => $value)
{
?>
<div class="summary_row"><?php echo lang("Reports.$name"). ': ' . to_currency($value) ?></div>
<?php
}
?>
</div>
<?php echo view('partial/footer') ?>