Viewing file:      v_detailFee.php (4.12 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php
 $row_fee = (isset($qu_fee) && $qu_fee!=NULL) ? $qu_fee->row() : NULL;
 ?>
 <table width="100%">
     <tr>
         <td><fieldset>
             <legend align="center"><font class="h error">รายละเอียดข้อมูลค่าใช้จ่าย</font></legend>
             <div align="center"><table class="szone">
                 <tr>
                     <td><br /></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">ลำดับที่</font></td>
                     <td><font size="2"><?php echo $row_fee->feeSeq;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">รายการค่าใช้จ่าย</font></td>
                     <td><font size="2"><?php echo $row_fee->feeName;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">ประเภทค่าใช้จ่าย</font></td>
                     <td><font size="2"><?php echo $row_fee->feeType;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">ประเภทการจ่าย</font></td>
                     <td><font size="2"><?php echo $row_fee->pytName;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">ประเภทการคำนวณ</font></td>
                     <td><font size="2"><?php echo $row_fee->feeCalType;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">ประเภทการเบิก</font></td>
                     <td><font size="2"><?php echo $row_fee->feeCanRefund;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">การออกเอกสาร</font></td>
                     <td><font size="2"><?php echo $row_fee->feeOutBudget;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">หมวดค่าใช้จ่าย</font></td>
                     <td><font size="2"><?php echo $row_fee->fgName;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">ลักษณะการจ่าย</font></td>
                     <td><font size="2"><?php echo $row_fee->feeOnTop;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td class="coltd_szone"><font size="2">ระดับการศึกษาที่ต้องจ่าย</font></td>
                     <td><font size="2"><?php echo (is_null($row_fee->feeElvId)) ? 'ทุกระดับการศึกษา' : $row_fee->levelName;?></font></td>
                 </tr>
                 <tr bgcolor="<?php echo $tr_color_even;?>">
                     <td align="center" colspan="2"><input type="button" name="close" value="ปิดหน้าต่าง" onClick="window.close()"></td>
                 </tr>
             </table></div>
         </fieldset></td>
     </tr>
 </table>
 <table width="100%">
     <tr>
         <td class="coltd_mark"><font size="2" color="<?php echo $font_color_err;?>"><b>หมายเหตุ : </b></font></td>
         <td><font size="2" color="<?php echo $font_color_err;?>">A = Fix ตามกระทรวงฯ/สบช. กำหนด, D = กำหนดเอง</font></td>
     </tr>
     <tr>
         <td></td>
         <td><font size="2" color="<?php echo $font_color_err;?>">Y = ใช้คำนวณ, N = ไม่ใช้คำนวณ</font></td>
     </tr>
     <tr>
         <td></td>
         <td><font size="2" color="<?php echo $font_color_err;?>">Y = เบิกได้ตามสิทธิ์, N = เบิกไม่ได้</font></td>
     </tr>
     <tr>
         <td></td>
         <td><font size="2" color="<?php echo $font_color_err;?>">N = ใบเสร็จรับเงิน (เงินในงบประมาณ), Y = ใบสำคัญรับเงิน (เงินนอกงบประมาณ)</font></td>
     </tr>
     <tr>
         <td></td>
         <td><font size="2" color="<?php echo $font_color_err;?>">N = จ่ายทุกคน, Y = จ่ายเฉพาะโควต้าพิเศษ (On Top)</font></td>
     </tr>
 </table>
  |