?
Current Path : /home1/savoy/public_html/savoyglobal.net/horeitia/application/views/Timesheet/ |
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/horeitia/application/views/Timesheet/view_customer.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <div class="select-bar"> <label> <img src="<?=base_url()?>assets/images/add-icon.png" title="Add New" class="clickimage" onclick="addformdisplay('add_customer','Timesheet')" alt="Add New" align = "center" width="25" height="25" /> </label> </div> <div id="searchdiv"> <?php $attributes=array('id'=>'searchvalidateform','class'=>'customForm'); echo form_open('timesheet/viewintimesheetsearch/search_customer/view_customer/1',$attributes); if(isset($_SESSION['searchdata'])) { $searchdata=$_SESSION['searchdata']; if(!empty($searchdata)) { $searchtext=$searchdata['searchtext']; $searchfield=$searchdata['searchopt']; } else { $searchtext = ""; $searchfield = ""; } } else { $searchtext = ""; $searchfield = ""; } ?> Search For <input type="text" name="searchtext" id="searchtext" value="<?=$searchtext;?>"> In <select name="searchopt" id="searchopt"> <option value="customer_name">Select</option> <option <?php if ($searchfield == "customer_name") echo "selected"; ?> value="customer_name">Customer Name</option> <option <?php if ($searchfield == "customer_code") echo "selected"; ?> value="customer_code">Customer Code</option> <option <?php if ($searchfield == "customer_city") echo "selected"; ?> value="customer_city">City</option> <option <?php if ($searchfield == "customer_marketing_executve") echo "selected"; ?> value="customer_marketing_executve">Marketing Executive</option> </select> <input type="submit" id="button1" onclick="addformdata('searchvalidateform')" class="clickimage" value="Search"/> <?php echo form_close(); ?> </div> <table class="sort" cellpadding="0" cellspacing="0"> <caption>Customers</caption> <thead> <tr> <th>Sl No</th> <th>Customer Name</th> <th>Customer Code</th> <th>City</th> <th>Marketing Executive</th> <th>Contact No</th> <th width="10%">Action</th> </tr> </thead> <tbody> <?php if ($viewinfo->num_rows() > 0) { $table="payroll_purchase_order"; $field="customer_id"; $z=1; foreach ($viewinfo->result() as $row) { if($z%2==0) $alt="alt"; else $alt="alt1"; echo '<tr class="'.$alt.'"> <td>'.$id.'</td>'; ?> <td><a href="#" onclick="displayformdata('timesheet','single_page','<?=$row->customer_id;?>','payroll_customer','customer_id','single_customer')" ><?=$row->customer_name;?></a></td> <?php echo ' <td>'.$row->customer_code.'</td> <td>'.$row->customer_city.'</td> <td>'.$row->customer_marketing_executve.'</td> <td>'.$row->customer_contact_no.'</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" class="clickimage" onclick="editformdata('timesheet','edit_page','<?=$row->customer_id;?>','payroll_customer','customer_id','edit_customer')" alt="" /> </div> <div class="fronticons"> <img src="<?=base_url()?>assets/images/delete-icon.png" title="Delete" width="20" height="20" onclick="deletedata('payroll_customer',<?=$row->customer_id;?>,'customer_id','timesheet','viewintimesheetsearch','search_customer','view_customer','<?=$table?>','<?=$field?>')" alt="Delete" align = "center"/> </div> </div> </td> <?php $id++; $z++; } } ?> </tbody> </table> <div id="pager"> <ul id="pagination-digg"> <li <?php if($pagenum>1){ ?>class="previous" <?php } else { ?> class="previous-off" <?php } ?> > <?php if($pagenum>1){ ?><a href="#" onclick="viewdata('timesheet','viewintimesheetsearch','search_customer','view_customer',<?=$pagenum-1?>);" > <?php } ?> «Previous </a> </li> <?php //Pagination Numbers for($i=$startpage; $i<=$endpage; $i++) { if($pagenum==$i ) { ?> <li class="active" ><?=$i?></li> <?php } else { ?> <li><a href="#" onclick="viewdata('timesheet','viewintimesheetsearch','search_customer','view_customer',<?=$i?>);"><?=$i?></a></li> <?php } } ?> <li <?php if($pagenum<$endpage){ ?> class="next" <?php } else { ?> class="next-off" <?php } ?>> <?php if($pagenum<$endpage){ ?><a href="#" onclick="viewdata('timesheet','viewintimesheetsearch','search_customer','view_customer',<?=$pagenum+1?>);"> <?php } ?> Next » </a> </li> </ul> </div>