mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-19 06:47:56 -05:00
database.sql script merged with current ospos one remaining problems in reporting (sale_type to add in sales_temp query?) data model should be refactored to allow more genericity for custom item locations (2+) inventory tracking should be adapted to use multiple locations (instead of duplicating items for different locations)
93 lines
3.5 KiB
PHP
93 lines
3.5 KiB
PHP
<?php $this->load->view("partial/header"); ?>
|
|
<div id="page_title" style="margin-bottom:8px;"><?php echo $this->lang->line('reports_report_input'); ?></div>
|
|
<?php
|
|
if(isset($error))
|
|
{
|
|
echo "<div class='error_message'>".$error."</div>";
|
|
}
|
|
?>
|
|
<?php echo form_label($this->lang->line('reports_date_range'), 'report_date_range_label', array('class'=>'required')); ?>
|
|
<div id='report_date_range_simple'>
|
|
<input type="radio" name="report_type" id="simple_radio" value='simple' checked='checked'/>
|
|
<?php echo form_dropdown('report_date_range_simple',$report_date_range_simple, '', 'id="report_date_range_simple"'); ?>
|
|
</div>
|
|
|
|
<div id='report_date_range_complex'>
|
|
<input type="radio" name="report_type" id="complex_radio" value='complex' />
|
|
<?php echo form_dropdown('start_month',$months, $selected_month, 'id="start_month"'); ?>
|
|
<?php echo form_dropdown('start_day',$days, $selected_day, 'id="start_day"'); ?>
|
|
<?php echo form_dropdown('start_year',$years, $selected_year, 'id="start_year"'); ?>
|
|
-
|
|
<?php echo form_dropdown('end_month',$months, $selected_month, 'id="end_month"'); ?>
|
|
<?php echo form_dropdown('end_day',$days, $selected_day, 'id="end_day"'); ?>
|
|
<?php echo form_dropdown('end_year',$years, $selected_year, 'id="end_year"'); ?>
|
|
</div>
|
|
|
|
<?php echo form_label($specific_input_name, 'specific_input_name_label', array('class'=>'required')); ?>
|
|
|
|
<div id='report_specific_input_data'>
|
|
<?php echo form_dropdown('specific_input_data',$specific_input_data, '', 'id="specific_input_data"'); ?>
|
|
</div>
|
|
|
|
<?php echo form_label($this->lang->line('reports_sale_type'), 'reports_sale_type_label', array('class'=>'required')); ?>
|
|
<div id='report_sale_type'>
|
|
<?php echo form_dropdown('sale_type',array('all' => $this->lang->line('reports_all'),
|
|
'sales_retail' => $this->lang->line('reports_sales_retail'),
|
|
'sales_wholesale' => $this->lang->line('reports_sales_wholesale'),
|
|
'returns' => $this->lang->line('reports_returns')) , 'all', 'id="sale_type"'); ?>
|
|
</div>
|
|
|
|
<div>
|
|
Export to Excel: <input type="radio" name="export_excel" id="export_excel_yes" value='1' /> Yes
|
|
<input type="radio" name="export_excel" id="export_excel_no" value='0' checked='checked' /> No
|
|
</div>
|
|
|
|
<?php
|
|
echo form_button(array(
|
|
'name'=>'generate_report',
|
|
'id'=>'generate_report',
|
|
'content'=>$this->lang->line('common_submit'),
|
|
'class'=>'submit_button')
|
|
);
|
|
?>
|
|
|
|
<?php $this->load->view("partial/footer"); ?>
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
$(document).ready(function()
|
|
{
|
|
$("#generate_report").click(function()
|
|
{
|
|
var sale_type = $("#sale_type").val();
|
|
var export_excel = 0;
|
|
if ($("#export_excel_yes").attr('checked'))
|
|
{
|
|
export_excel = 1;
|
|
}
|
|
|
|
if ($("#simple_radio").attr('checked'))
|
|
{
|
|
window.location = window.location+'/'+$("#report_date_range_simple option:selected").val()+ '/' + $('#specific_input_data').val() + '/' + sale_type
|
|
+ '/' + export_excel;
|
|
}
|
|
else
|
|
{
|
|
var start_date = $("#start_year").val()+'-'+$("#start_month").val()+'-'+$('#start_day').val();
|
|
var end_date = $("#end_year").val()+'-'+$("#end_month").val()+'-'+$('#end_day').val();
|
|
|
|
window.location = window.location+'/'+start_date + '/'+ end_date + '/' + $('#specific_input_data').val() + '/' + sale_type + '/'+ export_excel;
|
|
}
|
|
});
|
|
|
|
$("#start_month, #start_day, #start_year, #end_month, #end_day, #end_year").click(function()
|
|
{
|
|
$("#complex_radio").attr('checked', 'checked');
|
|
});
|
|
|
|
$("#report_date_range_simple").click(function()
|
|
{
|
|
$("#simple_radio").attr('checked', 'checked');
|
|
});
|
|
|
|
});
|
|
</script>
|