📄 cailiao_in_store.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="checkuser.asp"-->
<html>
<head>
<title>∷企业生产管理信息系统::</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/main.css" rel="stylesheet" type="text/css">
<SCRIPT language=JavaScript src="css/User_Info_Modify.js"></SCRIPT>
<style type="text/css">
<!--
td { font-family: "宋体"; font-size: 9pt}
body { font-family: "宋体"; font-size: 9pt}
select { font-family: "宋体"; font-size: 9pt}
A {text-decoration: none; color: #336699; font-family: "宋体"; font-size: 9pt}
A:hover {text-decoration: underline; color: #FF0000; font-family: "宋体"; font-size: 9pt}
-->
</style>
<SCRIPT LANGUAGE=javascript>
<!--
function Juge(powersearch)
{
if (powersearch.pinming.value == "")
{
alert("名称不能为空!");
powersearch.pinming.focus();
return (false);
}
if (powersearch.use_price.value == "")
{
alert("单价不能为空!");
powersearch.use_price.focus();
return (false);
}
if (powersearch.use_num.value == "")
{
alert("数量不能为空!");
powersearch.use_num.focus();
return (false);
}
}
function SelectAll() {
for (var i=0;i<document.selform.selBigClass.length;i++) {
var e=document.selform.selBigClass[i];
e.checked=!e.checked;
}
}
//-->
</script>
<script>
var po_ca_show = new Array();
var po_ca_value = new Array();
var po_detail_show = new Array();
var po_detail_value = new Array();
var funtype1;
//Modified by Ryan Gao 2006-03-30 16:01:09
<%
i=0
set rs1=server.createobject("adodb.recordset")
rs1.open "select * from fenlei",conn,1,1
if not rs1.eof then
do while not rs1.eof
j=0
%>
po_ca_show[<%=i%>] = '<%=rs1("fenleiname")%>';
po_ca_value[<%=i%>] = '<%=rs1("fenleiname")%>';
po_detail_show[<%=i%>] = new Array();
po_detail_value[<%=i%>] = new Array();
<%
fenleiname=rs1("fenleiname")
set rs2=server.createobject("adodb.recordset")
rs2.open "select * from cailiao where fenlei='"&fenleiname&"' order by pinming",conn,1,1
if not rs2.eof then
do while not rs2.eof
%>
po_detail_show[<%=i%>][<%=j%>] = '<%=rs2("pinming")%> | <%=rs2("guige")%> | <%=rs2("unit")%>';
po_detail_value[<%=i%>][<%=j%>] = '<%=rs2("pinming")%>|<%=rs2("guige")%>|<%=rs2("unit")%>';
<%
rs2.movenext
j=j+1
loop
else
%>
po_detail_show[<%=i%>][<%=j%>] = '此类暂无材料';
po_detail_value[<%=i%>][<%=j%>] = '';
<%
end if
rs2.close
set rs2=nothing
%>
<%
rs1.movenext
i=i+1
loop
end if
rs1.close
set rs1=nothing
%>
</script>
<script Language="JavaScript">
var psid="";
function DoLoad(form,funtypev){
var n;
var i,j,k;
var num;
num= GetObjID('funtype[]');
num1= GetObjID('pinming');
if (!funtypev)
return;
k=0;
for (i=0;i<po_ca_show.length;i++) {
for(j = 0; j < po_detail_value[i].length; j++){
if(funtypev.indexOf(po_detail_value[i][j])!=-1) {
NewOptionName = new Option(po_detail_show[i][j], po_detail_value[i][j]);
form.elements[num].options[k] = NewOptionName;
k++;
}
}
}
}
function Do_po_Change(form){
var num,n, i, m;
num= GetObjID('d_position1');
m = document.powersearch.elements[num].selectedIndex-1;
n = document.powersearch.elements[num + 1].length;
for(i = n - 1; i >= 0; i--)
document.powersearch.elements[num + 1].options[i] = null;
if (m>=0) {
for(i = 0; i < po_detail_show[m].length; i++){
NewOptionName = new Option(po_detail_show[m][i], po_detail_value[m][i]);
document.powersearch.elements[num + 1].options[i] = NewOptionName;
}
document.powersearch.elements[num + 1].options[0].selected = true;
}
}
function InsertItem(ObjID, Location)
{
len=document.powersearch.elements[ObjID].length;
for (counter=len; counter>Location; counter--)
{
Value = document.powersearch.elements[ObjID].options[counter-1].value;
Text2Insert = document.powersearch.elements[ObjID].options[counter-1].text;
document.powersearch.elements[ObjID].options[counter] = new Option(trimPrefixIndent(Text2Insert), Value);
}
}
function GetLocation(ObjID, Value)
{
total=document.powersearch.elements[ObjID].length;
for (pp=0; pp<total; pp++)
if (document.powersearch.elements[ObjID].options[pp].text == "---"+Value+"---")
{ return (pp);
break;
}
return (-1);
}
function GetObjID(ObjName)
{
for (var ObjID=0; ObjID < window.powersearch.elements.length; ObjID++)
if ( window.powersearch.elements[ObjID].name == ObjName )
{ return(ObjID);
break;
}
return(-1);
}
</script>
</HEAD>
<BODY topMargin=0 rightMargin=0 leftMargin=0>
<!--#include file="top.asp"-->
<%
select case request("action")
case "add"
call SaveAdd()
case "modify"
call SaveModify()
case "del"
call delCate()
case "edit"
isEdit=True
call myform(isEdit)
case else
isEdit=False
call myform(isEdit)
end select
sub SaveAdd
fenlei1=request.Form("d_position1")
pinming=request.Form("pinming")
names=Split(pinming,"|")
pinming=names(0)
guige=names(1)
unit=names(2)
set rs1=server.createobject("adodb.recordset")
if guige="" then
sql1="select * from cailiao_store where pinming='"&pinming&"'"
else
sql1="select * from cailiao_store where pinming='"&pinming&"' and guige='"&guige&"'"
end if
rs1.open sql1,conn,1,3
if not rs1.eof and not rs1.bof then
rs1("number")=rs1("number")+request.Form("use_num")
rs1("price") = request.Form("use_price")
else
rs1.addnew
rs1("fenlei") = trim(request.Form("d_position1"))
rs1("Unit") = unit
rs1("guige") = guige
rs1("pinming") = pinming
rs1("number")=request.Form("use_num")
rs1("price") = request.Form("use_price")
end if
rs1.update
rs1.close
set rs1=nothing
set rs=server.createobject("adodb.recordset")
sql="select * from cailiao_in_store"
rs.open sql,conn,1,3
rs.addnew
rs("fenlei") = trim(request.Form("d_position1"))
rs("guige") = guige
rs("pinming") = pinming
rs("uptime") = request.Form("uptime")
rs("Unit") = unit
rs("Supplier") = trim(request.Form("Supplier"))
rs("caigouyuan") = trim(request.Form("caigouyuan"))
rs("gonghuodanwei") = trim(request.Form("gonghuodanwei"))
rs("use_price") = request.Form("use_price")
rs("use_num") = request.Form("use_num")
rs("use_Amount") = request.Form("use_num") * request.Form("use_price")
rs("content") = trim(request.Form("content"))
rs.update
response.Write "<script language=javascript>alert('入库成功!');</script>"
response.write "<meta http-equiv=""refresh"" content=""0;url=cailiao_in_store.asp"">"
response.end
rs.close
set rs=nothing
end sub
sub SaveModify
fenlei1=request.Form("d_position1")
pinming=request.Form("pinming")
names=Split(pinming,"|")
pinming=names(0)
guige=names(1)
unit=names(2)
num=names(3)
num0=request.Form("use_num")
num1=num-num0
set rs1=server.createobject("adodb.recordset")
if guige="" then
sql1="select * from cailiao_store where pinming='"&pinming&"'"
else
sql1="select * from cailiao_store where pinming='"&pinming&"' and guige='"&guige&"'"
end if
rs1.open sql1,conn,1,3
if not rs1.eof and not rs1.bof then
rs1("number")=rs1("number")-num1
rs1("price") = request.Form("use_price")
end if
rs1.update
rs1.close
set rs1=nothing
set rs=server.createobject("adodb.recordset")
sql="select * from cailiao_in_store where id="&request.Form("id")
rs.open sql,conn,1,3
rs("fenlei") = trim(request.Form("d_position1"))
rs("guige") = guige
rs("pinming") = pinming
rs("Unit") = unit
rs("uptime") = request.Form("uptime")
rs("Supplier") = trim(request.Form("Supplier"))
rs("caigouyuan") = trim(request.Form("caigouyuan"))
rs("use_price") = request.Form("use_price")
rs("use_num") = request.Form("use_num")
rs("gonghuodanwei") = trim(request.Form("gonghuodanwei"))
rs("use_Amount") = request.Form("use_num") * request.Form("use_price")
rs("content") = trim(request.Form("content"))
rs.update
response.Write "<script language=javascript>alert('修改成功!');</script>"
response.write "<meta http-equiv=""refresh"" content=""0;url=cailiao_in_store.asp"">"
response.end
rs.close
set rs=nothing
end sub
sub delCate()
conn.execute("delete from cailiao_in_store where id in ("&Request.Form("selBigClass")&")")
response.Write "<script language=javascript>alert('删除成功!');</script>"
response.write "<meta http-equiv=""refresh"" content=""0;url=cailiao_in_store.asp"">"
response.end
end sub
%> <% sub myform(isEdit) %>
<TABLE width=800 align=center border="1" cellspacing="0" cellpadding="0" bordercolor="#0055E6">
<TBODY>
<TR>
<td align="center" valign="top"> <%if oskey="supper" or oskey="cailiao" then%>
<%
if isedit then
set rs=server.createobject("adodb.recordset")
rs.open "select * from cailiao_in_store where id=" & request("id"),conn,1,1
%>
<table width="800" border="0" cellpadding="0" cellspacing="0" >
<tr >
<td height=26 background="images/background.gif">
<b><font color="#ffffff">编辑入库信息</font></b>
</td>
</tr>
</table>
<%
else
%>
<table width="800" border="0" cellpadding="0" cellspacing="0" >
<tr >
<td height=26 background="images/background.gif">
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -