File: /home/dmstechonline/crm.chaitanyahospitalvirar.com/application/views/admin/item/additemreport.php
<?php
$currency_symbol = $this->customlib->getHospitalCurrencyFormat();
?>
<div class="content-wrapper">
<section class="content">
<div class="row">
<div class="col-md-12">
<div class="box box-primary" >
<?php $this->load->view('admin/report/_inventory');?>
<div class="box-header ptbnull"></div>
<div class="box-header with-border">
<h3 class="box-title"><?php echo $this->lang->line('inventory_item_report'); ?></h3>
<div class="box-tools pull-right">
</div>
</div>
<div class="box-body">
<form id="form1" action="" method="post">
<div class="row">
<?php echo $this->customlib->getCSRF(); ?>
<div class="col-sm-6 col-md-4" >
<div class="form-group">
<label><?php echo $this->lang->line('search_type'); ?></label><small class="req"> *</small>
<select class="form-control" name="search_type" onchange="showdate(this.value)">
<option value=""><?php echo $this->lang->line('select') ?></option>
<?php foreach ($searchlist as $key => $search) {
?>
<option value="<?php echo $key ?>" <?php
if ((isset($search_type)) && ($search_type == $key)) {
echo "selected";
}
?>><?php echo $search ?></option>
<?php }?>
</select>
<span class="text-danger" id="error_search_type"><?php echo form_error('search_type'); ?></span>
</div>
</div>
<div class="col-sm-6 col-md-4" id="fromdate" style="display: none">
<div class="form-group">
<label><?php echo $this->lang->line('date_from'); ?></label>
<input id="date_from" name="date_from" placeholder="" type="text" class="form-control date" value="<?php echo set_value('date_from', date($this->customlib->getHospitalDateFormat())); ?>" />
<span class="text-danger"><?php echo form_error('date_from'); ?></span>
</div>
</div>
<div class="col-sm-6 col-md-4" id="todate" style="display: none">
<div class="form-group">
<label><?php echo $this->lang->line('date_to'); ?></label>
<input id="date_to" name="date_to" placeholder="" type="text" class="form-control date" value="<?php echo set_value('date_to', date($this->customlib->getHospitalDateFormat())); ?>" />
<span class="text-danger"><?php echo form_error('date_to'); ?></span>
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<button type="submit" name="search" value="search_filter" class="btn btn-primary btn-sm checkbox-toggle pull-right"><i class="fa fa-search"></i> <?php echo $this->lang->line('search'); ?></button>
</div>
</div>
</div>
</form>
</div><!-- /.box-body -->
<div class="box-header ptbnull"></div>
<div class="box-body table-responsive mailbox-messages">
<table class="table table-striped table-bordered table-hover allajaxlist" data-export-title="<?php echo $this->lang->line('inventory_item_report'); ?>">
<thead>
<tr>
<th><?php echo $this->lang->line('name'); ?></th>
<th><?php echo $this->lang->line('category'); ?></th>
<th><?php echo $this->lang->line('supplier'); ?></th>
<th><?php echo $this->lang->line('store'); ?></th>
<th><?php echo $this->lang->line('date'); ?></th>
<th class="text text-right"><?php echo $this->lang->line('quantity'); ?></th>
<th class="text text-right"><?php echo $this->lang->line('purchase_price') . " (" . $currency_symbol . ")"; ?></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div><!-- /.mail-box-messages -->
</div>
</div>
<div class="col-md-8">
</div>
</div>
<div class="row">
<div class="col-md-12">
</div>
</div>
</section>
</div>
<script type="text/javascript">
$(document).ready(function () {
$('#postdate').datepicker({
format: "dd-mm-yyyy",
autoclose: true
});
$("#btnreset").click(function () {
$("#form1")[0].reset();
});
});
var base_url = '<?php echo base_url() ?>';
function printDiv(elem) {
popup(jQuery(elem).html());
}
</script>
<script>
$(document).ready(function () {
$('.detail_popover').popover({
placement: 'right',
trigger: 'hover',
container: 'body',
html: true,
content: function () {
return $(this).closest('td').find('.fee_detail_popover').html();
}
});
});
</script>
<script type="text/javascript">
function showdate(value) {
if (value == 'period') {
$('#fromdate').show();
$('#todate').show();
} else {
$('#fromdate').hide();
$('#todate').hide();
}
}
</script>
<script>
$(document).ready(function (e) {
emptyDatatable('allajaxlist', 'data');
});
( function ( $ ) {
'use strict';
$(document).ready(function () {
$('#form1').on('submit', (function (e) {
e.preventDefault();
var search= 'search_filter';
var formData = new FormData(this);
formData.append('search', 'search_filter');
$.ajax({
url: '<?php echo base_url(); ?>admin/item/checkvalidation',
type: "POST",
data: formData,
dataType: 'json',
contentType: false,
cache: false,
processData: false,
success: function (data) {
if (data.status == "fail") {
$.each(data.error, function(key, value) {
$('#error_' + key).html(value);
});
} else {
$("#error_search_type").html('');
initDatatable('allajaxlist', 'admin/item/additemreportrecords/',data.param,[],100,
[
{"aTargets": [ -1,-2 ] ,'sClass': 'dt-body-right'},
]);
}
}
});
}
));
});
} ( jQuery ) );
</script>