?
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/viewstaffsalary.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); if (isset($_SESSION['searchoption'])) { if (!empty($_SESSION['searchoption'])) { $searchtxt = $_SESSION['searchtxt']; $searchoption = $_SESSION['searchoption']; } else { $searchtxt = ""; $searchoption = ""; } } else { $searchtxt = ""; $searchoption = ""; } ?> <div class="select-bar"> <label> <img src="<?= base_url() ?>/assets/images/add-icon.png" title="Add New" class="clickimage" onclick="addstaffsalary(1)" alt="Add New" align = "top" width="25" height="25" /></label> <label> Search For <input type="text" name="search" id="search" value="<?= $searchtxt; ?>" style="background-image: none;"/> in <select id ="selectsearch" name="selectsearch"><option value="staffid">Select</option> <option value="staffid" <?php if ($searchoption == "staffid") echo "selected"; ?>>Name</option> <option value="date" <?php if ($searchoption == "date") echo "selected"; ?>>Date</option> </select> </label> <label for="submit"> <button type="submit" class="clickimage" id="submit" onclick="searchstaffsalary(document.getElementById('search').value,document.getElementById('selectsearch').value);">Search</button> </label> </div> <table class="sort" cellpadding="0" cellspacing="0"> <caption>Staff Salary</caption> <thead> <tr> <th>Sl No.</th> <th>EMPLOYEE NO</th> <th>Employee Name</th> <th>W.E.F Date</th> <th>Basic Salary</th> <th class="last">Action</th> </tr> <?php if ($searchinfo == "") { if ($viewinfo->num_rows() > 0) { $z = 1; foreach ($viewinfo->result() as $row) { if ($z % 2 == 0) { $alt = "alt"; } else $alt = "alt1"; $stf = $this->mastermodel->get_data_srow('staffpersonaldetails', $row->staffid, 'id'); $date = $this->mastermodel->convdatformat($row->date); echo '<tr class="' . $alt . '"> <td>' . $no . '</td> <td>' . $stf->employeeid . '</td> <td>'; ?> <a href="javascript:void(0)" onclick="singlestaffsalary(0,<?= $row->id ?>)"><?php echo $stf->name; ?></a> <?php echo '</td> <td>' . $date . '</td><td>' . $row->basicsalary . '</td> <td >'; ?> <div id="console_fronticons"> <div class="fronticons"> <img src="<?= base_url() ?>/assets/images/edit-icon.gif" title="Edit" width="20" height="20" alt="Edit" align = "center" onclick="editstaffsalary(2,<?= $row->id; ?>)"/> </div> <div class="fronticons"> <?= anchor('hr/delete/staffsalary/' . $row->id . '/45', '<img src="' . base_url() . '/assets/images/delete-icon.png" title="Delete" width="20" height="20" align = "center" >', array('class' => 'delete', 'onclick' => "return confirm('Are you sure want to delete this record?')")) ?> </div> </div> <?php echo '</td></tr>'; $no++; $z++; } } } else { $res = mysql_query($searchinfo); if (mysql_num_rows($res) > 0) { $z = 1; while ($row = mysql_fetch_array($res)) { if ($z % 2 == 0) { $alt = "alt"; } else $alt = "alt1"; $stf = $this->mastermodel->get_data_srow('staffpersonaldetails', $row['staffid'], 'id'); $date = $this->mastermodel->convdatformat($row['date']); echo '<tr class="' . $alt . '"><td>' . $no . '</td> <td>' . $stf->employeeid . '</td><td>'; ?> <a href="javascript:void(0)" onclick="singlestaffsalary(0,<?= $row['id'] ?>)"><?php echo $stf->name; ?></a> <?php echo '</td> <td>' . $date . '</td> <td>' . $row['basicsalary'] . '</td> <td >'; ?><img src="<?= base_url() ?>/assets/images/edit-icon.gif" class = "clickimage" title="Edit" width="20" height="20" alt="Edit" align = "center" onclick="editstaffsalary(1,<?= $row['id']; ?>)"/> <?= anchor('hr/delete/staffsalary/' . $row['id'] . '/45', '<img src="' . base_url() . '/assets/images/delete-icon.png" class = "clickimage" title="Delete" width="20" height="20" align = "center" >', array('class' => 'delete', 'onclick' => "return confirm('Are you sure want to delete this record?')")) ?> <?php echo '</td></tr>'; $no++; $z++; } } } ?> </table> <ul class="paginate"> <li class="pagsel"onclick="paginationstaffsalarysearch('1','<?= $searchoption ?>','<?= $searchtxt ?>')"> <img src="<?php echo base_url() ?>/assets/images/first.gif"/> </li> <li class="pagsel" <?php if ($pagenum > 1) { ?> onclick="paginationstaffsalarysearch('<?= $pagenum - 1 ?>','<?= $searchoption ?>','<?= $searchtxt ?>')" <?php } ?> > <img src="<?php echo base_url() ?>/assets/images/prev.gif"/> </li> <?php //Pagination Numbers for ($i = $startpage; $i <= $endpage; $i++) { if ($pagenum == $i) { ?> <li class="pagsel" onclick="paginationstaffsalarysearch('<?= $i ?>','<?= $searchoption ?>','<?= $searchtxt ?>')"><?= $i ?></li> <?php } else { ?> <li class="pag" onclick="paginationstaffsalarysearch('<?= $i ?>','<?= $searchoption ?>','<?= $searchtxt ?>')"><?= $i ?></li> <?php } } ?> <li class="pagsel" <?php if ($pagenum < $pages) { ?> onclick="paginationstaffsalarysearch(<?= $pagenum + 1 ?>,'<?= $searchoption ?>','<?= $searchtxt ?>')"<?php } ?>> <img style="vertical-align:top" src="<?php echo base_url() ?>/assets/images/next.gif"/> </li> <li class="pagsel" onclick="paginationstaffsalarysearch('<?= $pages ?>','<?= $searchoption ?>','<?= $searchtxt ?>')"><img src="<?php echo base_url() ?>/assets/images/last.gif"/> </li> </ul>