| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/comIT/ |
Upload File : |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<style>
/* the div that holds the date picker calendar */
.dpDiv {
}
/* the table (within the div) that holds the date picker calendar */
.dpTable {
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: center;
color: #505050;
background-color: #ece9d8;
border: 1px solid #AAAAAA;
}
/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
}
/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
}
/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
}
/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
}
/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
border: 1px solid #ece9d8;
}
/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
background-color: #CCCCCC;
border: 1px solid #AAAAAA;
}
/* the date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
.dpTDHover {
background-color: #aca998;
border: 1px solid #888888;
cursor: pointer;
color: red;
}
/* the table cell that holds the name of the month and the year */
.dpTitleTD {
}
/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
}
/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
}
/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
background-color: #CCCCCC;
border: 1px solid #AAAAAA;
color: white;
}
/* additional style information for the text that indicates the month and year */
.dpTitleText {
font-size: 12px;
color: gray;
font-weight: bold;
}
/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlight {
color: 4060ff;
font-weight: bold;
}
/* the forward/backward buttons at the top */
.dpButton {
font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
font-size: 10px;
color: gray;
background: #d8e8ff;
font-weight: bold;
padding: 0px;
}
/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
font-size: 10px;
color: gray;
background: #d8e8ff;
font-weight: bold;
}
</style>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ระบบงาน รับ-เบิก วัสดุ ครุภัณฑ์ คอมพิวเตอร์</title>
</head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="http://localhost/passadu_web/favicon.ico">
<style type="text/css">
<!--
body {
background-image: url();
background-color: #FFFFF;
background-repeat: repeat-x;
background-attachment:fixed;
}
-->
</style>
<body>
<table width="1000" height="15%" border="1" align="center" cellpadding="0" cellspacing="0"
class="tableborder_front_01_gray" bordercolor="#00CCCC">
<tbody><tr>
<td></td>
<td valign="top"><table width="1000" align="right" cellpadding="0" cellspacing="0" background="">
<tbody><tr>
<td width="1000" class="style15"><script type="text/javascript" language="JavaScript1.2" src="stmenu.js"></script>
<table width="1000" border="0" cellspacing="0" cellpadding="0">
<tbody><tr>
<td valign="top"><table width="1000" border="0" cellspacing="0" cellpadding="0">
<tbody><tr>
<td><img src="img/passadu_head_PNG.png" width="1000" height="120" border="0"></td>
</tr>
</tbody></table></td>
</tr>
<tr>
<td valign="top"><table width="1000" border="0" cellspacing="0" cellpadding="0" bordercolor="#33FF00">
<tbody><tr>
<td>
</td>
</tr>
<tr>
<td class="left"><img src="images/space_10x10.png" width="10" height="10"></td>
</tr>
</tbody></table></td>
</tr>
</tbody></table></td>
</tr>
</tbody></table></td>
<td></td>
</tr>
<tr>
<td width="50%" rowspan="2"><img src="images/px1.gif" width="1" height="1" alt="" border="0"></td>
<td valign="top" bgcolor="#FFFFFF"><table width="1000" border="0" cellpadding="0" cellspacing="0" >
<tbody><tr>
<td width="220" valign="top" bgcolor="#FFFFFF"><table width="200" cellpadding="0" cellspacing="0" >
<tbody><tr>
<td align="center" class="style15"><script language="JavaScript">
function updateDateField(dateFieldName, dateString)
{
var targetDateField = document.getElementsByName (dateFieldName).item(0);
if (dateString)
targetDateField.value = dateString;
var pickerDiv = document.getElementById(datePickerDivID);
pickerDiv.style.visibility = "hidden";
pickerDiv.style.display = "none";
adjustiFrame();
targetDateField.focus();
// after the datepicker has closed, optionally run a user-defined function called
// datePickerClosed, passing the field that was just updated as a parameter
// (note that this will only run if the user actually selected a date from the datepicker)
if ((dateString) && (typeof(datePickerClosed) == "function"))
datePickerClosed(targetDateField);
}
/**
Use an "iFrame shim" to deal with problems Where the datepicker shows up behind
selection list elements, if they're below the datepicker. The problem and solution are
described at:
http://dotnetjunkies.com/WebLog/jking/archive/2003/07/21/488.aspx
http://dotnetjunkies.com/WebLog/jking/archive/2003/10/30/2975.aspx
*/
function adjustiFrame(pickerDiv, iFrameDiv)
{
// we know that Opera doesn't like something about this, so if we
// think we're using Opera, don't even try
var is_opera = (navigator.userAgent.toLowerCase().indexOf("opera") != -1);
if (is_opera)
return;
// put a try/catch block around the whole thing, just in case
try {
if (!document.getElementById(iFrameDivID)) {
// don't use innerHTML to update the body, because it can cause global variables
// that are currently pointing to objects on the page to have bad references
//document.body.innerHTML += "<iframe id='" + iFrameDivID + "' src='javascript:false;' scrolling='no' frameborder='0'>";
var newNode = document.createElement("iFrame");
newNode.setAttribute("id", iFrameDivID);
newNode.setAttribute("src", "javascript:false;");
newNode.setAttribute("scrolling", "no");
newNode.setAttribute ("frameborder", "0");
document.body.appendChild(newNode);
}
if (!pickerDiv)
pickerDiv = document.getElementById(datePickerDivID);
if (!iFrameDiv)
iFrameDiv = document.getElementById(iFrameDivID);
try {
iFrameDiv.style.position = "absolute";
iFrameDiv.style.width = pickerDiv.offsetWidth;
iFrameDiv.style.height = pickerDiv.offsetHeight ;
iFrameDiv.style.top = pickerDiv.style.top;
iFrameDiv.style.left = pickerDiv.style.left;
iFrameDiv.style.zIndex = pickerDiv.style.zIndex - 1;
iFrameDiv.style.visibility = pickerDiv.style.visibility ;
iFrameDiv.style.display = pickerDiv.style.display;
} catch(e) {
}
} catch (ee) {
}
}
</script>
<style>
/* the div that holds the date picker calendar */
.dpDiv {
}
/* the table (within the div) that holds the date picker calendar */
.dpTable {
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: center;
color: #505050;
background-color: #ece9d8;
border: 1px solid #AAAAAA;
}
/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
}
/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
}
/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
}
/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
}
/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
border: 1px solid #ece9d8;
}
/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
background-color: #CCCCCC;
border: 1px solid #AAAAAA;
}
/* the date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
.dpTDHover {
background-color: #aca998;
border: 1px solid #888888;
cursor: pointer;
color: red;
}
/* the table cell that holds the name of the month and the year */
.dpTitleTD {
}
/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
}
/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
}
/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
background-color: #CCCCCC;
border: 1px solid #AAAAAA;
color: white;
}
/* additional style information for the text that indicates the month and year */
.dpTitleText {
font-size: 12px;
color: gray;
font-weight: bold;
}
/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlight {
color: 4060ff;
font-weight: bold;
}
/* the forward/backward buttons at the top */
.dpButton {
font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
font-size: 10px;
color: gray;
background: #d8e8ff;
font-weight: bold;
padding: 0px;
}
/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
font-size: 10px;
color: gray;
background: #d8e8ff;
font-weight: bold;
}
</style>
<link href="style.css" rel="stylesheet" type="text/css">
<table width="198" cellpadding="0" cellspacing="0" bordercolor="#00CCCC">
<tr>
<td width="196" class="style15">
<table width="100%" align="center" cellpadding="0" cellspacing="0" class="tableborder_front_01_gray" >
<tr>
<td><img src="img/passadu_head_menu_left_top_01.png" width="180" height="32" border="0" >
</td>
</tr>
<tr>
<td height="30" background="images/ast_head_menu_left_bg.png">
<table width="193" border="0" cellpadding="5" cellspacing="0">
<tr>
<td colspan="2" valign="middle" class="text_menu_left">
<img src="img/file_edit.png" width="24" height="22" align="absmiddle">
<span class="text_topic_orange">ทำรายการ รับ - เบิก</span>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" class="text_menu_left">
<a href="receive.php?order_by=record_list_id&list_by=ASC" class="text_menu_left">
• รับ วัสดุ ครุภัณฑ์</a>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" class="text_menu_left">
<a href="admin_add_record_list_pay.php?order_by=record_list_id&list_by=ASC" class="text_menu_left">
• เบิก วัสดุ ครุภัณฑ์</a>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" background="img/bg.PNG"class="text_menu_left">
<img src="img/file_edit.png" width="24" height="22" align="absmiddle">
<span class="text_topic_orange">ปรับปรุงข้อมูล</span></td>
</tr>
<tr>
<td width="132" valign="middle" class="text_menu_left">• ชนิด วัสดุ ครุภัณฑ์
</td>
<td width="41" valign="middle" class="text_menu_left">
<a href="admin_add_item_type.php?new_add_data_status=yes">
<img src="img/add1-16.png" alt="เพิ่ม" width="16" height="16" border="0">
</a>
<a href="admin_edit_item_type.php?order_by=item_type_id&list_by=DESC&page=1">
<img src="img/edit16.png" alt="แก้ไข" width="16" height="16" border="0">
</a>
</td>
</tr>
<tr>
<td valign="middle" class="text_menu_left">• ราคา วัสดุ ครุภัณฑ์
</td>
<td valign="middle" class="text_menu_left">
<a href="admin_add_item_price.php?new_add_data_status=yes">
<img src="img/add1-16.png" alt="เพิ่ม" width="16" height="16" border="0">
</a>
<a href="admin_edit_item_price.php?order_by=item_price_id&list_by=DESC&page=1">
<img src="img/edit16.png" alt="แก้ไข" width="16" height="16" border="0">
</a>
</td>
</tr>
<tr>
<td valign="middle" class="text_menu_left">• รายชื่อ หน่วยงานฯ
</td>
<td valign="middle" class="text_menu_left">
<a href="admin_add_department_list.php?new_add_data_status=yes">
<img src="img/add1-16.png" alt="เพิ่ม" width="16" height="16" border="0">
</a>
<a href="admin_edit_department_list.php?order_by=department_list_id&list_by=DESC&page=1">
<img src="img/edit16.png" alt="แก้ไข" width="16" height="16" border="0">
</a>
</td>
</tr>
<tr>
<td valign="middle" class="text_menu_left">• รายชื่อ ผู้ใช้งาน
</td>
<td valign="middle" class="text_menu_left">
<a href="admin_add_user_list.php?new_add_data_status=yes">
<img src="img/add1-16.png" alt="เพิ่ม" width="16" height="16" border="0">
</a>
<a href="admin_edit_user_list.php?order_by=user_list_id&list_by=DESC&page=1">
<img src="img/edit16.png" alt="แก้ไข" width="16" height="16" border="0">
</a>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" class="text_menu_left" background="img/bg.PNG">
<img src="images/file_edit.png" width="24" height="24" align="absmiddle">
<span class="text_topic_orange">รายงาน</span>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" class="text_menu_left">
<a href="admin_report_total_purchase.php" class="text_menu_left">• ยอดจัดซื้อ
</a>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" class="text_menu_left">
<a href="admin_report_total_balance_by_type.php" class="text_menu_left">• จำนวน คงเหลือ ตาม ชนิด</a>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" class="text_menu_left">
<a href="admin_report_total_balance_by_price.php" class="text_menu_left">• จำนวน คงเหลือ ตาม ราคา</a>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" class="text_menu_left">
<a href="admin_report_total_balance_by_year.php" class="text_menu_left">• จำนวน คงเหลือ ตาม ปีงบฯ</a>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" class="text_menu_left">
<a href="admin_report_total_receive_and_pay.php" class="text_menu_left">• จำนวน การรับ/เบิก </a>
</td>
</tr>
<tr>
<td colspan="2" valign="middle" class="text_menu_left">
<a href="admin_report_detail_receive_and_pay.php" class="text_menu_left">• รายละเอียด การรับ/เบิก </a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="style15"><img src="images/space_10x10.png" width="10" height="10"></td>
</tr>
<tr>
<td class="style15">
<table width="100%" align="center" cellpadding="0" cellspacing="0" background="" class="tableborder_front_01_gray">
<tr>
<td><img src="img/passadu_head_menu_left_top_02.png" width="180" height="32" border="0" />
</td>
</tr>
<tr>
<td height="30" background="images/ast_head_menu_left_bg.png">
<table width="180" border="0" cellpadding="5" cellspacing="0" bordercolor="#00CCCC">
<tr>
<td valign="middle" class="text_menu_left">
<img src="img/forbidden.png" width="45" height="43" align="absmiddle">
<span class="text_menu_left">สวัสดีคุณ Guest</span>
</td>
</tr>
<tr>
<td valign="middle" class="text_menu_left">
<img src="img/forgot-password-icon-0.png" width="34" height="28" align="absmiddle">
<span class="text_title"><a href="login.php" class="text_topic_red">Log In</a></span>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="style15"><img src="images/space_10x10.png" width="10" height="10"></td>
</tr>
</table>
</td>
</tr>
</tbody></table> </td>
<td width="800" valign="top" ><table width="790" border="0" cellspacing="0" cellpadding="0">
<tbody><tr>
<td>
<table width="790" align="left" cellpadding="0" cellspacing="0" class="tableborder_front_01_gray">
<tbody><tr>
<td height="32" width="700" valign="middle" background="img/bg.PNG" class="text_menu_left"></td>
</tr>
<tr>
<td align="center">เบิก วัสดุ ครุภัณฑ์อมพิวเตอร์</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
</td>
</tr>
</table></td>
</tr>
</tbody></table></td>
<td width="50%" rowspan="2"><img src="images/px1.gif" width="1" height="1" alt="" border="0"></td>
</tr>
<tr>
<td valign="top" ><table width="1000" align="right" cellpadding="0" cellspacing="0" background="">
<tbody><tr>
<td width="1000" height="18" class="style15"><link href="style.css" rel="stylesheet" type="text/css">
<table width="1000" border="0" cellpadding="0" cellspacing="0" background="images/passadu_foot_PNG">
<tbody><tr>
<td valign="middle" class="left"></td>
</tr>
<tr>
<td height="47" align="right" valign="middle" background="images/passadu_foot_PNG.png" class="text_topic_white"><marquee width="500" behavior="alternate" scrollamount="2">
ข้อมูลตั้งแต่ 28-02-2553 | ปรับปรุงโปรแกรมล่าสุด 23-12-2563
</marquee> </td>
</tr>
</tbody></table></td>
</tr>
</tbody></table></td>
</tr>
</tbody></table>
</body>
</html>