| Viewing file:  v_addFeeGroup.php (4.9 KB)      -rw-r--r-- Select action/file-type:
 
  (+) |  (+) |  (+) | Code (+) | Session (+) |  (+) | SDB (+) |  (+) |  (+) |  (+) |  (+) |  (+) | 
 
<?php$row_fg = (isset($qu_fg) && $qu_fg!=NULL) ? $qu_fg->row() : NULL;
 ?>
 <table width="100%" align="center">
 <tr>
 <td>
 <div align="center"><table width="100%" border="0">
 <tr>
 <td colspan="2" align="center" class="h error">ข้อมูลหมวดค่าใช้จ่าย</td>
 </tr>
 <tr>
 <td align="right">
 <?php
 echo anchor_popup($this->config->item("rg_folder")."bdpbri/fg_print", "<img src=\"".base_url().$this->config->item("rg_print")."\" width=\"15\" height=\"14\" align=\"absmiddle\" border=\"0\" />");
 ?>
 </td>
 </tr>
 <tr>
 <td><?php echo form_open($this->config->item("rg_folder")."bdpbri/fg_insert_update", array("name" => "myform", "id" => "myform"));?>
 <table class="szone">
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2"><b>ลำดับที่</b></font></td>
 <td><input type="text" name="fgSeq" id="fgSeq" value="<?php echo setValue('fgSeq',$row_fg);?>" size="4" maxlength="2" class="required-int" />
 <span class="error">* <?php echo form_error("fgSeq");?></span></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td class="coltd_szone"><font size="2"><b>ชื่อหมวดค่าใช้จ่าย</b></font></td>
 <td><input type="text" name="fgName" id="fgName" value="<?php echo setValue('fgName',$row_fg);?>" size="20" class="required" />
 <span class="error">* <?php echo form_error("fgName");?></span></td>
 </tr>
 <tr bgcolor="<?php echo $tr_color_even;?>">
 <td colspan="2" align="center">
 <input type="submit" name="add" id="add" value="บันทึก" />
 <input type="reset" name="clear" value="เคลียร์ข้อมูล">
 <input type="hidden" name="fgId" id="fgId" value="<?php echo setValue('fgId',$row_fg);?>" /></td>
 </tr>
 </table><?php echo form_close();?></td>
 </tr>
 <?php echo form_open($this->config->item("rg_folder")."bdpbri/fg_search");?>
 <tr>
 <td align="right">
 <font size="2"><b>ชื่อหมวดค่าใช้จ่าย</b></font>
 <input type="text" name="fgNameSearch" value="<?php echo set_value('fgNameSearch');?>"/>
 <input type="submit" name="search" value="ค้นหา" />
 <br /><?php  echo form_error('fgNameSearch');?>
 </td>
 </tr><?php echo form_close();?>
 <?php
 if (isset($rs_fg) && $rs_fg->num_rows() > $this->config->item("rg_max_row")) {
 ?>
 <tr>
 <td colspan="3"><div class="boxBlock leftBox"><font size="2">
 แสดง <?php echo $rs_fg->num_rows();?> รายการจาก <?php echo $this->config->item('rg_max_row');?> รายการ</font>
 </div></td>
 <tr>
 <?php
 }
 ?>
 <tr>
 <td><table width="100%" align="center" class="headCol">
 <tr>
 <th class="seqCol"><font size="2" color="<?php echo $font_color_table;?>"><b>ลำดับที่</b></font></th>
 <th><font color="<?php echo $font_color_table;?>" size="2"><b>ชื่อหมวดค่าใช้จ่าย</b></font></th>
 <th class="editCol"><font size="2" color="<?php echo $font_color_table;?>"><b>แก้ไข</b></font></th>
 <th class="deleteCol"><font size="2" color="<?php echo $font_color_table;?>"><b>ลบ</b></font></th>
 </tr>
 <?php
 $i = 0;
 if (isset($rs_fg) && $rs_fg->num_rows()) {
 foreach ($rs_fg->result() as $row) {
 echo "<tr onmouseover=\"bgColor='".$tr_color_even."'\" onmouseout=\"bgColor='".$this->config->item("rg_mouseout")."'\">";
 ?>
 <td align="center"><font size="2"><?php echo $row->fgSeq;?></font></td>
 <td class="indent"><font size="2"><?php echo $row->fgName;?></font></td>
 <td align="center">
 <img class="hand" src="<?php echo base_url().$this->config->item("rg_edit");?>" align="absmiddle" border="0"
 onClick="sendPost('hidform',
 {'fgId':<?php echo $row->fgId;?>},
 '<?php echo site_url($this->config->item('rg_folder').'bdpbri/fg_input');?>')" /></td>
 <td align="center"><span onClick="confirmDel2({fgId:<?php echo $row->fgId;?>}, 'm_form1','<?php echo site_url($this->config->item('rg_folder').'bdpbri/fg_delete');?>')" /><img src="<?php echo base_url().$this->config->item("rg_delete");?>" align="absmiddle" border="0" width="16" height="19" class="hand"/></span></td>
 </tr>
 <?php
 $i++;
 }
 } else {
 ?>
 <tr>
 <td colspan="4" height="22" align="center"><span class="error">** ไม่ปรากฏรายการในฐานข้อมูล **</span></td>
 </tr>
 <?php
 }
 ?>
 </table></td>
 </tr>
 <tr>
 <td align="right"><font size="2">รวม <?php echo $i;?> รายการ</font></td>
 </tr>
 </table></div>
 <div class="error"><strong>หมายเหตุ : </strong>* หมายถึง ต้องกรอกข้อมูลให้สมบูรณ์</div>
 </td>
 </tr>
 </table>
 |