?
Current Path : /home1/savoy/www/savoyglobal.net/sibs_draft/system/application/views/Sales/ |
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/Sales/adddailyactivity.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <script type="text/javascript"> jQuery(document).ready(function () { $('.one').datepick({dateFormat: 'dd-mm-yyyy'}); }); </script> <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>Add Daily Activities</legend> <?php $attributes = array('id' => 'customForm'); echo form_open('sales/adddailyactivity',$attributes);?> <?php ?> <ul> <li> <label>Date</label> <input class="one" name="date" id="date" readonly="true" value="<?=date("d-m-Y");?>" type="text" style="background-image: url(../../../../assets/images/datefocus.gif);"> <span id="dateInfo" class="red_bold">*</span> </li> <li> <?php $emp_id= $this->customermodel->getSingleFieldValue('users','staff_id','id',$_SESSION['userid']); if($emp_id==0) $emp_id=1; ?> <input type="hidden" name="staffid" id="staffid" value="<?=$emp_id;?>"> </li> <li></li> <fieldset> <legend>Customer Details</legend> <li> <input name="addRows" value="Add More" onclick="addRowToTableSales();" title="Add more Customer details." type="button"> <input name="deleteRows" value="Remove" onclick="removeRowFromTableSales();" title="Delete the last Customer details." type="button"> </li> <li id="stfinfodet"></li> <table class="sort" id="addrow" border="0" cellpadding="0" cellspacing="0" width="60%"> <tbody><tr class="red_bold" align="left" valign="top"> <th width="10%">Time</th> <th width="20%">Customer Name</th> <th width="18%">Contact Person</th> <th width="18%">Designation</th> <th width="18%">Tel No</th> <th width="12%">Remarks</th> </tr> <tr class="bold_black" align="left" valign="top"> <td><input name="txt_conTime_1" id="txt_conTime_1" style="width: 60px;" type="text"> <input name="hid_conCnt" id="hid_conCnt" value="3" type="hidden"></td> <td><input name="txt_conName_1" id="txt_conName_1" style="width: 150px;" type="text"></td> <td><input name="txt_conPers_1" id="txt_conPers_1" style="width: 100px;" type="text"></td> <td><input name="txt_conDesg_1" id="txt_conDesg_1" style="width: 100px;" type="text"></td> <td><input name="txt_conTel_1" id="txt_conTel_1" style="width: 80px;" type="text"></td> <td><textarea name="txt_conStat_1" id="txt_conStat_1" style="width: 120px;"></textarea></td> </tr> </tbody></table> </fieldset> <li></li> <li><label for="submit"> </label> <button type="submit" class="clickimage" id="submit" onclick="return doallthethree();">Save</button> </li> </ul> <?php echo form_close();?> </fieldset>