?
Current Path : /home1/savoy/www/savoyglobal.net/sibs_draft/system/application/views/Report/ |
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/sibs_draft/system/application/views/Report/singleproduction.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <?php /* * To change this template, choose Tools | Templates * and open the template in the editor. */ foreach($viewinfo as $updata) { $dailyactivityid=$updata['id']; $staffid=$updata['staffid']; $date=$updata['date']; $date=$this->mastermodel->convdatformat($date); } $stf=$this->mastermodel->get_data_srow('staffpersonaldetails',$staffid,'id'); ?> <div class="select-bar"> <label> <img src="<?=base_url()?>/assets/images/backbutton.png" title="Back" class="clickimage" onclick="loaddailyactivity('<?=$_SESSION['pagenum']?>','<?=$_SESSION['searchoption']?>','<?=$_SESSION['searchtxt']?>')" alt="Back" align = "center" width="25" height="25" /></label> </div> <fieldset> <legend>Daily Activity</legend> <ul> <li> <label>Date</label><label class="lbl_column">:</label> <label class="lbl_title"> <?php echo $date;?></label></li> <li> <label>Employee Name:</label><label class="lbl_column">:</label> <label class="lbl_title"> <?php echo $stf->name; ?></label></li> <li></li> <fieldset> <legend>Customer Details</legend> <table id="addrow" border="0" cellpadding="0" cellspacing="0" width="100%"> <tbody><tr class="red_bold" align="left" valign="top"> <td width="8%">S. No.</td> <td width="10%">Time</td> <td width="14%">Customer Name</td> <td width="15%">Description</td> <td width="20%">Remarks</td> </tr> <?php $id=1; foreach ($viewactivity as $activity) {?> <tr class="bold_black" align="left" valign="top"> <td><?=$id?></td> <td><?=$activity['name']?></td> <td><?=$activity['time']?></td> <td><?=$activity['description']?></td> <td><?=nl2br($activity['remarks'])?></td> </tr> <?php $id++; } ?> </tbody></table> </fieldset> <li> </ul> </fieldset>