<? ob_start(); session_start(); if($_SESSION["adminlogin"]=="") { header('location:index.php'); exit(); } //============ Start Session และทำการเรียก Function ติดต่อฐานข้อมูล require_once('../connect/connect.php'); require_once('../connect/function.php'); //=========== ทำการเพิ่มรายการวัตถุดิบ if($_GET["Action"]=="Save") { //=========== บันทึกข้อมูล $sql_up = "insert into gen_stock (ProductID,Date,Quantity) Values ('$_GET[ProductID]','".date("Y-m-d")."','$_POST[txtQuantity]')"; $dbquery_up = mysql_query($sql_up); $sql_up = "update product set Stock=Stock - ($_POST[txtQuantity]) where ProductID='$_GET[ProductID]'"; $dbquery_up = mysql_query($sql_up); echo"<script language='JavaScript'>"; echo"alert('เพิ่มข้อมูลเรียบร้อยแล้ว');"; echo"window.location='gen_stock.php';"; echo"</script>"; } ?> <html> <title>..:: ระบบจัดการฐานข้อมูล ::</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link rel="stylesheet" href="../css/styles.css" type="text/css"> <script language="JavaScript" src="editor.js"></script> <script language="JavaScript" type="text/JavaScript"> <!-- function MM_jumpMenu(targ,selObj,restore){ //v3.0 eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); if (restore) selObj.selectedIndex=0; } //--> </script> <div align="center"><br> <table cellspacing=1 cellpadding=4 width="68%" bgcolor=#CCCCCC border=0 align="center" height="10"> <tbody> <tr bgcolor=#e5e5e5> <td width="100%" bgcolor="#FFFFFF"> <div align="center"></div> <table cellspacing=1 cellpadding=4 width="100%" border=0 align="center" height="10"> <tbody> <tr bgcolor=#e5e5e5> <td width="35%" bgcolor="#FFFFFF"> <div align="left"><b><img src="../image/allrowto.gif" width="11" height="11" align="absbottom"> เบิกวัตถุดิบ </b></div></td> <td width="22%" align=middle bgcolor="#FFFFFF"> <div align="left"> </div></td> <td width="43%" bgcolor="#FFFFFF"> <div align="right"><a href="gen_stock.php">กลับไป</a></div></td> </tr> </tbody> </table></td> </tr> </tbody> </table> </div> <script language="JavaScript"> function checkvalue() { //=========== ตรวจสอบค่าว่าง <? if($_GET["ProductID"] == "") { ?> alert('กรุณาเลือกวัตถุดิบ'); document.all.ddlStockID.focus(); return false; <? } ?> if(document.all.txtQuantity.value =="") { alert('กรุณากรอกจำนวนที่เบิก'); document.all.txtQuantity.focus(); return false; } if(parseint(document.all.txtQuantity.value) > parseint(document.all.hidMax.value)) { alert('จำนวนที่เบิกจะต้องน้อยไม่มากกว่า'+parseint(document.all.txtQuantity.value)); document.all.txtQuantity.focus(); return false; } } </script> <form name="frmNew" method="post" action="<?=$_SERVER['PHP_SELF'];?>?ProductID=<?=$_GET["ProductID"];?>&Action=Save" enctype="multipart/form-data" onSubmit="return checkvalue();"> <table cellspacing=1 cellpadding=3 width="51%" bgcolor=#CCCCCC border=0 align="center" height="10"> <tbody> <tr bgcolor=#e5e5e5> <td width="31" bgcolor="#FFFFFF"> <script language="Javascript1.2"><!-- // load htmlarea _editor_url = ""; // URL to htmlarea files var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]); if (navigator.userAgent.indexOf('Mac') >= 0) { win_ie_ver = 0; } if (navigator.userAgent.indexOf('Windows CE') >= 0) { win_ie_ver = 0; } if (navigator.userAgent.indexOf('Opera') >= 0) { win_ie_ver = 0; } if (win_ie_ver >= 5.5) { document.write('<scr' + 'ipt src="' +_editor_url+ 'editor.js"'); document.write(' language="Javascript1.2"></scr' + 'ipt>'); } else { document.write('<scr'+'ipt>function editor_generate() { return false; }</scr'+'ipt>'); } // --></script> <table width="100%" border="0" cellspacing="2" cellpadding="2"> <tr> <td width="25%"> </td> <td width="75%"> </td> </tr> <tr> <td valign="top">วันที่</td> <td> <?=date("Y-m-d");?> </td> </tr> <tr> <td valign="top">รหัสสินค้า<font color="#FF0000">** </font></td> <td><select name="ddlStockID" id="ddlStockID" onChange="MM_jumpMenu('parent',this,0)"> <option value="?ProductID=">-- เลือกรายการเบิก--</option> <? $i=0; //=========== ทำการ query เพื่อเลือกรายการสินค้า $sql_stock = "select * from product where 1 $condition order by ProductID asc"; $dbquery_stock = mysql_query($sql_stock); $num_rows_stock = mysql_num_rows($dbquery_stock); while ($result= mysql_fetch_array($dbquery_stock)) { $i++; if($result["ProductID"] ==$_GET["ProductID"]) { $sel = "selected"; } else { $sel = ""; } ?> <option value="?ProductID=<?=$result["ProductID"];?>" <?=$sel;?>> <?=$result["ProductCode"];?> [ <?=$result["ProductName"];?> ]</option> <? } ?> </select> </td> </tr> <? if($_GET["ProductID"] != "") { $result=select("stock","where 1=1 and ProductID='".$_GET["ProductID"]."'"); ?> <tr> <td valign="top">จำนวนที่เบิกได้</td> <td> <?=$result["Stock"];?> <input name="hidMax" type="hidden" id="hidMax" value="<?=$result["Stock"];?>"></td> </tr> <? } ?> <tr> <td valign="top">จำนวนที่เบิก <font color="#FF0000">** </font></td> <td><input name="txtQuantity" type="text" class="txtbox" id="txtQuantity" value="<?=$_POST["txtQuantity"];?>" size="10" maxlength="10"></td> </tr> <tr> <td> </td> <td><input name="Submit" type="submit" class="button" value="บันทึก"> <input name="Cancel" type="button" class="button" id="Cancel" value="ยกเลิก" onClick="window.location='gen_stock.php';"></td> </tr> <tr> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </table></td> </tr> </tbody> </table> </form>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง