?
Current Path : /home1/savoy/www/savoyglobal.net/drafthr/system/application/views/Accounting/ |
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/drafthr/system/application/views/Accounting/edit-gl-class-page.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <div class="select-bar"> <label> <img src="<?=base_url()?>/assets/images/backbutton.png" title="Back" class="clickimage" onclick="showgl_acc_class(1,'class_name','')" alt="Back" align = "center" width="25" height="25" /></label> </div> <?php $attributes = array('id' => 'customForm'); echo form_open('',$attributes); $result= $editglclass->row(); $ctype_val= $this->customermodel->getSingleFieldValue('char_type','gl_types','id',$result->ctype); ?> <fieldset> <legend>Edit GL Account Classes</legend> <table> <tr> <td> <label for="classid">Class ID :</label> </td> <td height="55px"> <input type="text" readonly="readonly" value="<?php echo $result->cid; ?>" name="class_id" id="class_id"/> <span id="class_idInfo" class="red_bold">*</span> </td> </tr> <tr> <td> <label> Class Name :</label> </td> <td> <input type="text" value="<?php echo $result->class_name; ?>" name="class_name" id="class_name"/> <span id="class_nameInfo" class="red_bold">*</span> </td> </tr> <tr> <td> <label> Class Type :</label> </td> <td> <select id="class_type" name="class_type"> <option value="<?=$result->ctype?>"><?=$ctype_val?></option> <?php $classtype=$this->mastermodel->getdatas('gl_type'); if (count($classtype)) { foreach ($classtype as $key => $list) { if($list['gl_types']!=$ctype_val) { echo "<option value='". $list['id'] . "' >" . $list['gl_types'] . "</option>"; } } } ?> </select> </td> </tr> <tr> <td>Inactive :</td><td><input type="checkbox" name="inactive" id="inactive" <?php if ($result->inactive=='1') { echo "checked='checked'";} ?>></td> </tr> <tr> <td></td> <td> <button type="button" name="class-update" onclick="update_glacc_class('<?= $result->cid; ?>' ,'<?= $currpage ?>','<?=$field ?>','<?=$text ?>')" id="class-update"> Update GL Class </button> </td> </tr> </table> </fieldset> <?php echo form_close(); ?>