Viewing file:      v_importToEa.php (2.8 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<div align="center">
 <table>
     <tr>
         <td align="center" class="h error">นำเข้าข้อมูลจากระบบทะเบียนนักศึกษา</td>
     </tr>
     <tr>
         <td><br /></td>
     </tr>
     <tr>
         <td><table class="headCol">
             <tr bgcolor="<?php echo $this->config->item('table_c_even');?>">
                 <th class="domAmtCol">ปีที่สำเร็จการศึกษา</th>
                 <th class="domAmtCol">สถานะการอัพเดท</th>
                 <th class="amtCol">จำนวน (คน)</th>
                 <th class="domAmtCol">วันที่อัพเดทล่าสุด</th>
                 <th class="stdCodeCol">อัพเดทโดย</th>
             </tr>
 <?php
     if(isset($opt) && count($opt)) {
         foreach($opt as $key_opt => $val_opt) {
             echo "<tr onmouseover=\"bgColor='".$this->config->item('tr_c_even')."'\" onmouseout=\"bgColor='".$this->config->item("rg_mouseout")."'\">";
 ?>
                 <td align="center"><?php echo $val_opt['graduateY'];?></td>
                 <td align="center"><?php //echo $val_opt['update'];?>
                 <img src="<?php echo base_url().$this->config->item('ea_import');?>" class="hand" title="นำเข้าข้อมูล" onClick="sendPost('form1',
                 {'graduateY':<?php echo $val_opt['graduateY'];?>},
                  '<?php echo site_url($this->config->item('ea_folder').'import/importStdByGraduateY');?>')" />  
                 <img src="<?php echo base_url().$this->config->item('ea_list');?>" class="hand" title="รายชื่อนักศึกษา" onClick="sendPost('form2',
                 {'graduateY':<?php echo $val_opt['graduateY'];?>},
                  '<?php echo site_url($this->config->item('ea_folder').'import/showStdList');?>',{'width':600,'height':500})"/></td>
                 <td align="center"><?php echo $val_opt['update'];?></td>
                 <td class="indent"><?php echo $val_opt['date'];?></td>
                 <td class="indent"><?php echo $val_opt['userupdate'];?></td>
             </tr>
 <?php
         }
     }
 ?>
         </table></td>
     </tr>
 </table>
 <div>
     <table class="mark">
         <tr>
             <td><br /></td>
         </tr>
         <tr>
             <td class="coltd_mark"><span class="error"><b>หมายเหตุ :</b></span></td>
             <td><span class="error">1.ปีที่สำเร็จการศึกษา จะแสดงโดยอัตโนมัติต่อเมื่อเจ้าหน้าที่อนุมัติสำเร็จการศึกษาให้นักศึกษาแล้วเท่านั้น</span></td>
         </tr>
         <tr>
             <td class="coltd_mark"></td>
             <td><span class="error">2.การนำเข้าข้อมูลจากระบบทะเบียน นักศึกษาต้องมีสถานะ <b>"สำเร็จการศึกษา"</b> แล้วเท่านั้น</span></td>
         </tr>
     </table>
 </div>
 </div>
  |