?
Current Path : /home1/savoy/public_html/savoyglobal.net/sibs_draft/system/application/views/HR/ |
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/sibs_draft/system/application/views/HR/generatepayslip.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <script type="text/javascript" src="<?=base_url()?>/assets/js/jquery.form.js"></script> <?php $this->load->view('commonfunctions'); ?> <script type="text/javascript"> jQuery(document).ready(function () { $('.one').datepick({dateFormat: 'dd-mm-yyyy'}); }); </script> <div class="select-bar"> </div> <fieldset> <legend>Pay Slip</legend> <?php $attributes = array('id' => 'multiplesalaryform' ,'class'=>'customForm'); echo form_open('hr/multiplepostsalarypayment',$attributes); ?> <ul> <li> </li> <li> <label>Salary Date</label> <input class="one" name="date" id="date" readonly="true" title="For the Month Of" type="text" style="background-image: url(../../../../assets/images/datefocus.gif);"> <span id="dateInfo" class="red_bold">*</span> </li> <li> <label> </label> <table border="0" class="sort" style="width:40%;float: left"> <tr> <th> Posted </th> <th> Unposted </th> </tr> <tr> <td> <input type="radio" name="trans" id="posted" onclick="loadpostedsalary()"/> </td> <td> <input type="radio" name="trans" id="unposted" onclick="loadunpostedsalary()"/> </td> </tr> </table> </li> <li id="salpay"></li> <span id="processbutton"> <li> <label for="submit"> </label> <table class="sort" cellpadding="0" cellspacing="0" align="left" > <caption>Payment Details</caption> <thead> <tr> <th>From Account</th> <th>Memo</th> </tr> </thead> <tbody> <tr> <td> <select name="bankacc" id="bankacc" style="width:160px"> <?php $bankacc=$this->mastermodel->getdatas('bank_accounts'); if (count($bankacc)) { foreach ($bankacc as $key => $acc) { echo "<option value='".$acc['id'].'~'.$acc['account_code']. "' >" . $acc['bank_account_name'] . "</option>"; } } ?> </select> <span id="bankaccInfo" class="red_bold"> </span> </td> <td> <textarea name="memo" id="memo" style='width:150px;height:50px' ></textarea> </td> </tr> </tbody> </table> </li> <li> <center><button type="submit" class="clickimage" id="button1" onclick="multiplepostsalarypayment()">Post</button></center> </li> </span> </ul> <?php echo form_close();?> </fieldset>