?
Current Path : /home1/savoy/www/savoyglobal.net/sgms/application/views/Administration/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/www/savoyglobal.net/sgms/application/views/Administration/single_salary.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="select-bar"> <label><img src="<?=base_url()?>assets/images/backbutton.png" title="Back" class="clickimage" onclick="viewdata('administration','viewinadministrationsearch','search_salary','view_salary','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25" /> </label> <span class="heading">Employee Salary Details</span> </div> <fieldset> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('',$attributes); $employee = $this->administrationmodel->get_emp_info($viewinfo->employee_id); $allowance_list = $this->administrationmodel->get_data_salary_allowance_info($viewinfo->salary_id); $deduction_list = $this->administrationmodel->get_data_salary_deduction_info($viewinfo->salary_id); $salary_details = $this->administrationmodel->get_employee_salary_info($viewinfo->employee_id); if($employee->emp_non_no[0]==',') { $employee->emp_non_no=substr($employee->emp_non_no, 1); } $emp_non_no = str_replace(',',', ', $employee->emp_non_no); ?> <ul> <li> <label for="data">Employee Name</label> <div class="record_entry"> <?php echo $employee->emp_non_full_name; ?> </div> </li> <li> <label for="data">Employee No</label> <div class="record_entry"> <?php echo $emp_non_no; ?> </div> </li> <li> <label for="data">Joining Date</label> <div class="record_entry"> <?php echo $employee->emp_non_date_joining; ?> </div> </li> <li> <label for="data">Trade</label> <div class="record_entry"> <?php echo $employee->trade_name; ?> </div> </li> <li> <table class="sort"> <caption>Employee Previous Salary Details</caption> <tr> <th align="center">WEF Date</th> <th align="center">Basic Salary</th> <th align="center" colspan="2">Allowances</th> <th align="center" colspan="2">Deductions</th> </tr> <?php foreach($salary_details as $salary) { ?> <tr> <td><?=$salary['salary_increment_date'];?></td> <td><?=$salary['salary_increment'];?></td> <?php $allowance = explode('~', $salary['allowance']); $allowance_name= ''; $allowance_amount= ''; for($i=0;$i<sizeof($allowance);$i++) { ?> <?php if($i%2==0) $allowance_name .= $allowance[$i]."<br/>";?> <?php if($i%2==1) $allowance_amount .= $allowance[$i]."<br/>";?> <?php } ?> <td><?=$allowance_name;?></td><td><?=$allowance_amount;?></td> <?php $deduction= explode('~', $salary['deduction']); $deduction_name= ''; $deduction_amount= ''; ?> <?php for($i=0;$i<sizeof($deduction);$i++) { ?> <?php if($i%2==0) $deduction_name .= $deduction[$i]."<br/>";?> <?php if($i%2==1) $deduction_amount .= $deduction[$i]."<br/>";?> <?php } ?> <td><?=$deduction_name;?></td><td><?=$deduction_amount;?></td> </tr> <?php } ?> </table> </li> <li> <label for="data">WEF Date</label> <div class="record_entry"> <?=$this->mastermodel->convertdatenormalformat($viewinfo->salary_increment_date);?> </div> </li> <li> <table class="sort"> <caption>Revised Salary</caption> <tr> <td> Baisc Salary </td> <td> <?=$viewinfo->salary_increment;?> </td> </tr> </table> </li> <li> <table class="sort"> <caption>Allowance</caption> <tr> <th align="center">Allowance Type</th> <th align="center">Amount</th> </tr> <?php $i=1; foreach($allowance_list as $allowance) { ?> <tr> <td> <?=$allowance['allowance_name'];?> </td> <td> <?=$allowance['allowance_amount'];?> </td> </tr> <?php $i++; } ?> </table> </li> <li> <table class="sort"> <caption>Deduction</caption> <tr> <th align="center">Deduction Type</th> <th align="center">Amount</th> </tr> <?php $i=1; foreach($deduction_list as $deduction) { ?> <tr> <td> <?=$deduction['deduction_name'];?> </td> <td> <?=$deduction['deduction_amount'];?> </td> </tr> <?php $i++; } ?> </table> </li> <li> <label for="data">Remarks</label> <div class="record_entry"> <?php echo $viewinfo->remarks; ?> </div> </li> </ul> <?php echo form_close();?> </fieldset>