mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 09:48:02 -05:00
82 lines
3.0 KiB
PHP
82 lines
3.0 KiB
PHP
<?php $this->load->view("partial/header"); ?>
|
|
|
|
<div id="page_title"><?php echo $this->lang->line('reports_report_input'); ?></div>
|
|
|
|
<?php
|
|
if(isset($error))
|
|
{
|
|
echo "<div class='alert alert-dismissible alert-danger'>".$error."</div>";
|
|
}
|
|
?>
|
|
|
|
<?php echo form_open('#', array('id'=>'item_form', 'enctype'=>'multipart/form-data', 'class' => 'form-horizontal')); ?>
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('reports_date_range'), 'report_date_range_label', array('class'=>'control-label col-xs-2 required')); ?>
|
|
<div class="col-xs-3">
|
|
<?php echo form_input(array('name'=>'daterangepicker', 'class'=>'form-control input-sm', 'id'=>'daterangepicker')); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm" id="report_specific_input_data">
|
|
<?php echo form_label($specific_input_name, 'specific_input_name_label', array('class'=>'required control-label col-xs-2')); ?>
|
|
<div class="col-xs-3">
|
|
<?php echo form_dropdown('specific_input_data',$specific_input_data, '', 'id="specific_input_data" class="form-control"'); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('reports_sale_type'), 'reports_sale_type_label', array('class'=>'required control-label col-xs-2')); ?>
|
|
<div id='report_sale_type' class="col-xs-3">
|
|
<?php echo form_dropdown('sale_type', array('all' => $this->lang->line('reports_all'),
|
|
'sales' => $this->lang->line('reports_sales'),
|
|
'returns' => $this->lang->line('reports_returns')), 'all', 'id="input_type" class="form-control"'); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-sm">
|
|
<?php echo form_label($this->lang->line('common_export_excel'), 'export_excel', !empty($basic_version) ? array('class'=>'control-label required col-xs-3') : array('class'=>'control-label col-xs-2')); ?>
|
|
<div class="col-xs-3">
|
|
<label class="radio-inline">
|
|
<input type="radio" name="export_excel" id="export_excel_yes" value='1' /> <?php echo $this->lang->line('common_export_excel_yes'); ?>
|
|
</label>
|
|
<label class="radio-inline">
|
|
<input type="radio" name="export_excel" id="export_excel_no" value='0' checked='checked' /> <?php echo $this->lang->line('common_export_excel_no'); ?>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
echo form_button(array(
|
|
'name'=>'generate_report',
|
|
'id'=>'generate_report',
|
|
'content'=>$this->lang->line('common_submit'),
|
|
'class'=>'btn btn-primary btn-sm')
|
|
);
|
|
?>
|
|
<?php echo form_close(); ?>
|
|
|
|
<?php $this->load->view("partial/footer"); ?>
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
$(document).ready(function()
|
|
{
|
|
<?php $this->load->view('partial/daterangepicker'); ?>
|
|
|
|
$("#generate_report").click(function()
|
|
{
|
|
var sale_type = $("#sale_type").val();
|
|
var location = window.location + '/' + start_date + '/' + end_date + '/' + $('#specific_input_data').val() + '/' + sale_type;
|
|
|
|
if ($("#export_excel_yes").attr('checked'))
|
|
{
|
|
location += '/' + 1;
|
|
}
|
|
else
|
|
{
|
|
location += '/' + 0;
|
|
}
|
|
|
|
window.location = location;
|
|
});
|
|
});
|
|
</script>
|