106 lines
4.3 KiB
PHP
Executable File
106 lines
4.3 KiB
PHP
Executable File
|
|
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1>
|
|
<center>Employee Salary Details</center>
|
|
</h1>
|
|
</section>
|
|
<section class="content">
|
|
<div class="row">
|
|
<div class="col-xs-12 text-right">
|
|
<div class="form-group">
|
|
<a class="btn btn-primary" href="<?php echo base_url(); ?>emppaydate/addemppaydate">Add New Employee Pay List</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="box">
|
|
<div class="box-header">
|
|
|
|
<div class="box-tools">
|
|
<form action="<?php echo base_url() ?>emppaydate/emppayListing" method="POST" id="searchList">
|
|
<div class="input-group">
|
|
<input type="text" name="searchText" value="<?php echo $searchText; ?>" class="form-control input-sm pull-right" style="width: 150px;" placeholder="Search"/>
|
|
<div class="input-group-btn">
|
|
<button class="btn btn-sm btn-default searchList"><i class="fa fa-search"></i></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div><!-- /.box-header -->
|
|
<div class="box-body table-responsive no-padding" >
|
|
<table id="datatable" class="table table-hover tableSorter" >
|
|
<tr bgcolor="steelblue">
|
|
<th>Pay Data ID</th>
|
|
<th>Employee ID</th>
|
|
<th>Basic Pay</th>
|
|
<th>HRA Rate</th>
|
|
<th>OT Rate</th>
|
|
<th>Allowances</th>
|
|
<th>PF Rate</th>
|
|
<th>ESI Rate</th>
|
|
<th>Food Allowances</th>
|
|
<th>Is Active</th>
|
|
|
|
<th>Edit</th>
|
|
</tr>
|
|
|
|
|
|
<?php
|
|
if(!empty($userRecords))
|
|
{
|
|
foreach($userRecords as $record)
|
|
{
|
|
?>
|
|
<tr>
|
|
|
|
<td><?php echo $record->Pay_Data_ID ?></td>
|
|
<td><?php echo $record->EmpID ?></td>
|
|
<td><?php echo $record->Basic_Pay ?></td>
|
|
<td><?php echo $record->HRA_Rate ?></td>
|
|
<td><?php echo $record->OT_Rate ?></td>
|
|
<td><?php echo $record->Allowances ?></td>
|
|
<td><?php echo $record->PF_Rate ?></td>
|
|
<td><?php echo $record->ESI_Rate ?></td>
|
|
<td><?php echo $record->Food_Allowances ?></td>
|
|
|
|
<td><?php echo $record->is_Active ? 'Yes' : 'No'?></td>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
<a href="<?php echo base_url().'emppaydate/editOldemppay/'.$record->Pay_Data_ID; ?>"><i class="btn btn-info">EDIT</i></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
</table>
|
|
|
|
</div><!-- /.box-body -->
|
|
<div class="box-footer clearfix">
|
|
<?php echo $this->pagination->create_links(); ?>
|
|
</div>
|
|
</div><!-- /.box -->
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>
|
|
<script type="text/javascript">
|
|
jQuery(document).ready(function(){
|
|
jQuery('ul.pagination li a').click(function (e) {
|
|
e.preventDefault();
|
|
var link = jQuery(this).get(0).href;
|
|
var value = link.substring(link.lastIndexOf('/') + 1);
|
|
jQuery("#searchList").attr("action", baseURL + "emppayListings/" + value);
|
|
jQuery("#searchList").submit();
|
|
});
|
|
});
|
|
</script>
|