|
|
|
ช่วยดูโค๊ดตัดสต๊อคให้หน่อยครับ มันไม่ไปตัดกับสต๊อค |
|
|
|
|
|
|
|
ผมอยากใส่การตัดสต๊อคในหน้าการเซฟลงฐานข้อมูล ครับ มันต้องไปใส่ตรงไหน ผมลองใส่ก้อไม่ขึ้นสักที
หน้ายืม (PHP)
<?php
session_start();
include("connect/connect.php");
if($_SESSION['ID'] == "")
{
echo "Please Login!";
exit();
}
$strSQL = "SELECT * FROM users WHERE ID = '".$_SESSION['ID']."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
?>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" href="css/smoothness/jquery-ui-1.7.2.custom.css">
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript">
$(function(){
// แทรกโค้ต jquery
// กำหนดแบบทั่วไป
$("#tabs").tabs();
// กำหนดแบบเลื่อนหัวข้อซ้าย ขวาได้
// $("#tabs").tabs().find(".ui-tabs-nav").sortable({axis:'x'});
// กำหนดแบบให้ซ่อนรายละเอียด เมื่อคลิกที่หัวข้อแท็บซ้ำ
// $("#tabs").tabs({collapsible: true});
// กำหนดให้แสดงรายละเอียดเมื่อนำเมาท์มาอยู่เหนือหัวข้อแท็บ
// $("#tabs").tabs({event: 'mouseover'});
});
$(document).ready(function() {
$("#parent_cat").change(function() {
$.get('loadsubcat.php?parent_cat=' + $(this).val(), function(data) {
$("#kind_type_id").html(data);
$('#loader').slideUp(200, function() {
$(this).remove();
});
});
});
});
</script>
<style type="text/css">
/* ปรับขนาดตัวอักษรของข้อความใน tabs
สามารถปรับเปลี่ยน รายละเอียดอื่นๆ เพิ่มเติมเกี่ยวกับ tabs
ในไฟล์ css/smoothness/jquery-ui-1.7.2.custom.css หัวข้อ tabs
*/
.ui-tabs{
font-family:tahoma;
font-size:11px;
}
</style>
</head>
<body>
<div id="tabs">
<ul>
<li><a href="#tabs-2">คืน</a></li>
<li><a href="#tabs-1">เบิก</a></li>
</ul>
<div id="tabs-2">
<form action="function.php" method="post" id="a">
<table width="1258" border="0">
<tr>
<td width="230"> </td>
<td width="1018"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
<p> </p>
<div></div>
</form>
<p> </p>
</div>
<div id="tabs-1">
<div>
<form action="insert_borrow.php" method="post" id="bb">
<?php
$objQuery_view = mysql_query("SELECT
users.ID,
users.`name`,
department.dep_name,
rank.rank_name
FROM
users
INNER JOIN rank ON users.rank_id = rank.rank_id
INNER JOIN department ON users.dep_id = department.dep_id WHERE users.ID = '".$_SESSION['ID']."'
") or die ("Err Can not to result");
?>
<?php
while($objResult = mysql_fetch_array($objQuery_view))
{
$id = $objResult["ID"];
$name = $objResult["name"];
$dep = $objResult["dep_name"];
$rank = $objResult["rank_name"];
?>
<?php } ?>
<table width="850" border="0">
<tr>
<input type="hidden" name="ID" value="<?php echo $id ?>">
<td width="200" align="right" scope="col"><label for="reason">ผู้ยืม:</label></td>
<td width="229" scope="col"><input name="name" type="text" id="textfield5" value="<?php echo $name ?>" readonly></td>
<td width="125" align="right" scope="col">ยศ:</td>
<td width="228" scope="col"><input name="textfield4" type="text" id="textfield" readonly value="<?php echo $rank ?>"></td>
</tr>
<tr>
<td align="right" scope="col"><label for="date_e">หน่วยงาน:</label></td>
<td scope="col"><input name="date_e" type="text" id="textfield4" value="<?php echo $dep ?>" readonly></td>
<td align="right" scope="col">วันที่ยืม
<label for="date_e">:</label></td>
<td scope="col"><input name="date_b" type="text" id="date_b" value="<?php echo date("d/m/Y"); ?>" readonly></td>
</tr>
<tr>
<td align="right"><label for="textfield4">กำหนดส่งคืน:</label></td>
<td><input type="text" name="date_e" id="date_e" /></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<p> </p>
<table width="850" border="0">
<tr>
<td width="154" align="left" bgcolor="#666666" scope="col">ประเภท</td>
<td width="229" align="left" bgcolor="#666666" scope="col">ชนิด</td>
<td width="228" align="left" bgcolor="#666666" scope="col">เบิกในกรณี</td>
<td width="60" align="left" bgcolor="#666666" scope="col">จำนวน</td>
<td width="60" align="left" bgcolor="#666666" scope="col"> </td>
</tr>
<tr>
<?php $query_parent = mysql_query("SELECT * FROM stock_kind") or die("Query failed: ".mysql_error());?>
<td><select name="parent_cat" id="parent_cat">
<option value=""> ------- เลือก ------ </option>
<?php while($row = mysql_fetch_array($query_parent)): ?>
<option value="<?php echo $row['kind_id']; ?>"><?php echo $row['kind_name']; ?></option>
<?php endwhile; ?>
</select></td>
<td><select name="kind_type_id" id="kind_type_id">
</select></td>
<td><input name="reason" type="text" id="reason" placeholder="เบิกในกรณี" size="30"></td>
<td><input name="count" type="text" id="count" size="2"></td>
<td> </td>
</tr>
</table>
<p> </p>
<p>
<input name="submit" type="submit" id="submit" form="bb" value="Submit">
</p>
</form>
</div>
<p> </p>
<p> </p>
</div>
</div>
หน้าเซฟ (PHP)
ิ<?php
include("connect/connect.php");
$strSQL = "INSERT INTO borrow ";
$strSQL .="(borrow_id,ID,kind_type_id,date_b,date_e,reason,count) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["borrow_id"]."','".$_POST["ID"]."','".$_POST["kind_type_id"]."','".$_POST["date_b"]."' ";
$strSQL .=",'".$_POST["date_e"]."','".$_POST["reason"]."','".$_POST["count"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "<meta http-equiv='Content-Type' content='text/html; charset=tis620' />";
echo "<script language='javascript'>alert('บันทึกข้อมูลเรียบร้อยแล้ว...');</script>";
echo "<meta http-equiv='refresh' content='0;URL=test1.php'>";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
</body>
</html>
Tag : PHP, MySQL, CakePHP
|
|
|
|
|
|
Date :
2014-03-15 12:28:51 |
By :
tonsom |
View :
762 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถึงตอนนี้ยังทำไม่ได้เลยครับ
|
|
|
|
|
Date :
2014-03-15 16:54:39 |
By :
tonsom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอแรงช่วยหน่อยเพื่อนร่วม thaicreate
|
|
|
|
|
Date :
2014-03-16 19:08:23 |
By :
tonsom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (SQL)
UPDATE table_name SET STOCK = STOCK - 10 WHERE ID = '123';
รูปแบบการตัด Stock ครับ
|
|
|
|
|
Date :
2014-03-17 06:19:20 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|