⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 direct_ward.asp

📁 物流管理系统
💻 ASP
字号:
<%@ LANGUAGE="VBScript"%>
<% 
response.buffer=true
Response.Expires = 0
Response.CacheControl = "Private" 
%>
<%const title="自提操作"%>
<!-- #include file=../data/username.inc-->
<!--#include file=../data/myPrg.asp-->
<html>
<head>
<meta http-equiv="Content-Type"content="text/html; charset=gb_2312-80">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title><%=title%></title>
<link rel=stylesheet type=text/css href=../data/forum.css>
<%
newcompanyid = request("companyid")
if newcompanyid = "" then
	Response.Write "<script language=javascript>"
	Response.Write "alert(""请先选择公司再做此步操作!"");"
	Response.write "history.go(-1);"
	Response.Write "</script>"
	Response.End
elseif not isnumeric(newcompanyid) then
	Response.Write "<script language=javascript>"
	Response.Write "alert(""companyid必须为整数!"");history.go(-1);"
	Response.Write "</script>"
	Response.End
else
	newcompanyid = cint(newcompanyid)  
end if
%>
<script LANGUAGE="javascript">
<!--
function input_onsubmit(directid) 
{
  if(document.input1.take_address.value=="")
    {
      alert("请填写提货地点!")
      document.input1.take_address.focus()
      return false
    }
    
  var directid = directid;
  if (directid == 1)
	 window.location.href = "inward.asp?companyid=<%=newcompanyid%>&direct=1&take_address="+document.input1.take_address.value+"&line_no="+document.input1.line_no.value+"&take_no="+document.input1.take_no.value;
  else
	 window.location.href = "direct_outward.asp?companyid=<%=newcompanyid%>&direct=1&take_address="+document.input1.take_address.value+"&line_no="+document.input1.line_no.value+"&take_no="+document.input1.take_no.value; 

}
//-->
</script>
</head>
<body topmargin="0" onload="javascript:document.input1.take_address.focus()">
<%
Showtitle(title)
arra = split(session("username"),";")
UserCompanyid = arra(0)
flag = arra(1)
User = arra(2)
userno = arra(4)
%>
<form method="POST" name="input1">
<p align=center><font color=red>请输入提货信息</font>
<p>
<table align=center border=0>
<tr>
   <td nowrap align=right><font color=blue>提货地点:</td>
   <td>
<input class=smallInput type=textbox name="take_address" value='' maxlength='80' onkeydown="javascript:if(event.keyCode==13)event.keyCode=9"  >**
 </td>
 </tr>
 <tr>
   <td nowrap align=right><font color=blue>航班号:</td>
   <td><input class=smallInput type=textbox name="line_no" value='' onkeydown="javascript:if(event.keyCode==13)event.keyCode=9"></td>
 </tr>
  <tr>
   <td nowrap align=right><font color=blue>空运提单号:</td>
   <td>
<input class=smallInput type=textbox name="take_no" value='' onkeydown="javascript:if(event.keyCode==13)event.keyCode=9" >
  </td>
 </tr>
  <tr>
   <td>
   <td><br>
   <input type=hidden name=companyid value="<%=newcompanyid%>">
   <input class=buttonface type=button onclick="javascript:input_onsubmit(1)" name=ru value=" 入 库 ">
   <input class=buttonface type=button onclick="javascript:input_onsubmit(2)" name=chu value=" 出 库 ">  
 </tr>

</table>
</form>
<!--#include file=../data/copyright.asp-->
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -