?
Current Path : /home1/savoy/public_html/savoyglobal.net/sgms/application/views/Exits/ |
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/public_html/savoyglobal.net/sgms/application/views/Exits/edit_settlement_direct.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); $salary = $this->mastermodel->get_employee_current_salary($viewinfo->employee_id); $camp = $this->mastermodel->get_employee_current_camp($viewinfo->employee_id); $site = $this->mastermodel->get_employee_current_site($viewinfo->employee_id); $salary_details = $this->administrationmodel->get_employee_salary_info($viewinfo->employee_id); $allowance_list = $this->mastermodel->getdatas('allowance','allowance_name'); $deduction_list = $this->mastermodel->getdatas('deduction','deduction_name'); ?> <link href="<?=base_url()?>assets/css/tablesortnew.css" rel="stylesheet" type="text/css"> <div class="select-bar"> <label><img src="<?=base_url()?>assets/images/backbutton.png" title="Back" class="clickimage" onclick="viewdata('exits','viewinexitssearch','search_settlement_direct','view_settlement_direct','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25" /> </label> <span class="heading">Employee Settlement Details</span> </div> <fieldset> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('exits/addinexits/update_settlement_direct/view_settlement_direct/1',$attributes); $employee = $this->administrationmodel->get_emp_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> <input type="hidden" name="tab_name" id="tab_name" value="settlement_direct"/> <input type="hidden" name="settlement_direct_id" id="settlement_direct_id" value="<?=$viewinfo->settlement_direct_id;?>"/> </li> <li> <table class="sortnew"> <caption>Employee Personal Details</caption> <tr> <td>Employee Name</td> <td> <?php echo $employee->emp_non_full_name; ?> </td> </tr> <tr> <td>Employee No</td> <td> <?php echo $emp_non_no; ?> </td> </tr> <tr> <td>Joining Date</td> <td> <?php echo $employee->emp_non_date_joining; ?> </td> </tr> <tr> <td>Trade</td> <td> <?php echo $employee->trade_name; ?> </td> </tr> <tr> <td>Camp</td> <td> <?php echo $camp; ?> </td> </tr> <tr> <td>Site</td> <td> <?php echo $site; ?> </td> </tr> </table> </li> <li> <table class="sort"> <caption>Employee 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> <div id="multi"> <label for="data">Date of settlement</label> <?php $data = array( 'name' => 'date', 'id' => 'date', 'class' => 'required', 'value' => $this->mastermodel->convertdatenormalformat($viewinfo->date) ); echo form_input($data).form_error($data); ?> <img src="<?=base_url()?>assets/images/icons/calendar.png" alt="Click to popup the clendar!" /> </div> </li> <li> <table class="sort"> <tr> <td> Baisc Salary </td> <td> <input type="text" name="basic_salary" id="basic_salary" value="<?=$viewinfo->basic_salary;?>" /> </td> </tr> </table> </li> <li> <table class="sort"> <caption>Allowance</caption> <tr> <th align="center">Select</th> <th align="center">Allowance Type</th> <th align="center">Amount</th> </tr> <?php $i=1; $num = 0; foreach($allowance_list as $allowance) { $num = $this->mastermodel->number_rows('settlement_direct_allowance','allowance_id',$allowance['allowance_id'],'settlement_direct_id',$viewinfo->settlement_direct_id); $allowance_amount = $this->mastermodel->getSingleFieldValueTwo('settlement_direct_allowance','allowance_amount','allowance_id',$allowance['allowance_id'],'settlement_direct_id',$viewinfo->settlement_direct_id); ?> <tr> <td><input style="width:15px;" type="checkbox" name="select_allowance_<?=$i;?>" <?php if($num > 0){ echo "checked";}?> /></td> <td> <input type="hidden" name="allowance_id_<?=$i;?>" value="<?=$allowance['allowance_id'];?>"/> <?=$allowance['allowance_name'];?> </td> <td> <input type="text" name="allowance_amount_<?=$i;?>" id="allowance_amount_<?=$i;?>" value="<?=$allowance_amount;?>" /> </td> </tr> <?php $i++; } ?> </table> </li> <li> <table class="sort"> <caption>Deduction</caption> <tr> <th align="center">Select</th> <th align="center">Deduction Type</th> <th align="center">Amount</th> </tr> <?php $i=1; $num = 0; foreach($deduction_list as $deduction) { $num = $this->mastermodel->number_rows('settlement_direct_deduction','deduction_id',$deduction['deduction_id'],'settlement_direct_id',$viewinfo->settlement_direct_id); $deduction_amount = $this->mastermodel->getSingleFieldValueTwo('settlement_direct_deduction','deduction_amount','deduction_id',$deduction['deduction_id'],'settlement_direct_id',$viewinfo->settlement_direct_id); ?> <tr> <td><input style="width:15px;" type="checkbox" name="select_deduction_<?=$i;?>" <?php if($num > 0){ echo "checked";}?> /></td> <td> <input type="hidden" name="deduction_id_<?=$i;?>" value="<?=$deduction['deduction_id'];?>"/> <?=$deduction['deduction_name'];?> </td> <td> <input type="text" name="deduction_amount_<?=$i;?>" id="deduction_amount_<?=$i;?>" value="<?=$deduction_amount;?>" /> </td> </tr> <?php $i++; } ?> </table> </li> <li> <label for="data">Final Amount</label> <input type="text" name="final_amount" id="final_amount" value="<?=$viewinfo->final_amount;?>" > </li> <li> <label for="submit"> </label> <button type="submit" class="clickimage" onclick="addformdata('validateform')">Save</button> </li> </ul> <?php echo form_close();?> </fieldset>