136 lines
5.3 KiB
PHP
136 lines
5.3 KiB
PHP
|
|
<!-- <script>
|
|
$(document).ready(function() {
|
|
|
|
$('table').tableSort( {
|
|
animation :'slide',
|
|
speed:500
|
|
} );
|
|
});
|
|
|
|
</script> -->
|
|
<style type="text/css">
|
|
.num {
|
|
text-align:right;
|
|
}
|
|
</style>
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1>
|
|
<center>Employee Monthly Payment Listing</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(); ?>monthlypay/addmonthly">Add New Monthly List</a>
|
|
</div>
|
|
</div>
|
|
</div>-->
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="box">
|
|
<div class="box-header">
|
|
<!--<center><h3 class="box-title">-->
|
|
<div class="box-tools">
|
|
<!-- <form action="<?php echo base_url() ?>assetListing" method="POST" id="searchList">-->
|
|
<form action="<?php echo base_url() ?>monthlypay/monthlyListing" 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><!--</h3></center>-->
|
|
|
|
</div><!-- /.box-header -->
|
|
<div class="box-body">
|
|
<table id="monthlylistings" class="table table-bordered table-hover" style="background-color:#fff;font-size:12px;">
|
|
<thead style="background-color:#ddf">
|
|
<tr>
|
|
<th>Month Year</th>
|
|
<th>Employee Id</th>
|
|
<th>Employee Name</th>
|
|
<th>LOP Days</th>
|
|
<th>OT Hours Worked in Hrs</th>
|
|
<th>Loan Recovered in ₹</th>
|
|
<!-- <th>Loan Balance</th> -->
|
|
<th>Incentives in ₹</th>
|
|
<th>Other Deductions in ₹</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
|
|
<?php
|
|
if(!empty($userRecords))
|
|
{
|
|
//print_r($userRecords);
|
|
foreach($userRecords as $record)
|
|
{
|
|
?>
|
|
|
|
<tr>
|
|
<td style="text-align:right;"><?php echo $record->Month_Year ?></td>
|
|
<td><?php echo $record->EmpID ?></td>
|
|
<td><?php echo $record->FirstName ." ". $record->LastName ?></td>
|
|
<td style="text-align:right;"><?php echo $record->LOP_Days ?></td>
|
|
<td style="text-align:right;"><?php echo $record->OT_Hrs_Worked ?></td>
|
|
<td style="text-align:right;"><?php if(is_numeric($record->Loan_Recovered)){echo number_format($record->Loan_Recovered,2,'.','');}else {echo $record->Loan_Recovered;} ?></td>
|
|
<!-- <td><?php echo $record->Loan_Balance ?></td> -->
|
|
<td style="text-align:right;"><?php echo $record->Incentives ?></td>
|
|
<td style="text-align:right;"><?php echo $record->Other_Deductions ?></td>
|
|
|
|
|
|
<td>
|
|
|
|
<a href="<?php echo base_url().'monthlypay/editOldmonthly/'.$record->EmpID.'/'.$record->Month_Year;?>"><i class="btn btn-primary">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 + "monthlyListings/" + value);
|
|
// jQuery("#searchList").submit();
|
|
// });
|
|
// });
|
|
$(function () {
|
|
|
|
$('#monthlylistings').DataTable({
|
|
"paging": true,
|
|
"lengthChange": true,
|
|
"searching": true,
|
|
"ordering": true,
|
|
"aaSorting": [[ 0, "desc" ]],
|
|
"info": true,
|
|
"autoWidth": true
|
|
|
|
});
|
|
});
|
|
</script>
|