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

📄 borrow_input_master.asp

📁 物业管理和办公自动化系统
💻 ASP
字号:
<%
'##############################################################################
'#
'#		文 件 名	 : borrow_input_master.asp
'#
'#
'#		创 建 人	 : yaoxiaohui
'#  	日   期	 : 2002-11-7
'#
'#		修改历史  : ****年**月**日 ******
'#      修改内容  : **************************************************
'#
'#		功能描述	 : 移交出库
'#  	版   本	 : v1.0
'#	
'#	    Copyright(c) 2001-2002 上海阿尔卡特网络支援系统有限公司
'#
'##############################################################################
'------------------------------------------------------------------------------
'----   服务器端设置
'------------------------------------------------------------------------------
option explicit
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
%>
<!-- include files begin -->

<!-- #include file="../include/common.inc" -->
<!-- #include file="../include/recordlist.inc" -->
<!-- #include file="../include/commonpage.inc" -->

<!-- #include file="borrow_input_master.inc" -->

<!-- include files end -->
<%
call CheckSecurity()
'------------------------------------------------------------------------------
'----   用户权限检查
'------------------------------------------------------------------------------
if hasright(ID_STOCK) < RIGHT_WRITE  then
	Response.Clear
	Response.Redirect "../include/error.asp?error=只有仓库管理员才能进行入库操作!"
	Response.end
end if
'##############################################################################
'----   服务器端代码
'##############################################################################
dim conn
set conn = DBConnection

dim pSheetID   :  pSheetID = GetParam("sheet_id")

dim pGoodsID   :  pGoodsID = session("goods_id_for_input")

'******************************************************************************
'----   参数
'------------------------------------------------------------------------------
'' 归还日期
dim pOpDate

'' 备注
dim pRemark

'' 验收人
dim pChecker : pChecker = GetParam("checker")

if UCase(Request.ServerVariables("REQUEST_METHOD") = "POST") then
	dim sFormAction
	sFormAction = GetParam("FormAction")
	select case sFormAction
	  case "input" :
	   call BorrowInput()
	 case "cancel" :
	   call Cancel()
	end select 
end if

'response.write pSheetID & "<br>"
'response.end

'******************************************************************************
'----   分页相关的变量定义
'------------------------------------------------------------------------------
Dim sSQL, sOrderby
Dim sFileName			: sFileName			= "borrow_input_master.asp"
Dim iTotalRecords		: iTotalRecords		= 0			                ' 分页
Dim iRecordsPerPage		: iRecordsPerPage	= 10                         ' 一页8行
Dim iTotalPages			: iTotalPages		= 0
Dim iCols				: iCols				= 9                         ' 9列
Dim iCurrentPage		: iCurrentPage		= GetParam("Page")
Dim sSorting			: sSorting			= GetParam("Sorting")
Dim sSorted				: sSorted			= GetParam("Sorted")
Dim sSortParams			: sSortParams		= ""
Dim sFormParams			: sFormParams		= ""
Dim sDirection			: sDirection		= ""
'******************************************************************************
'----   构造分页的SQL语句
'------------------------------------------------------------------------------
sSQL = "select t1.goods_id,t1.sheet_id,t1.goods_name,t1.model,t1.unit,t1.quantity,t1.due_return_date,t2.type_desc" & _
	" from t_stock_detail t1" & _
	" left join t_goods_type t2 on t1.goods_type = t2.type_id " & _
	" where t1.goods_id in(" & pGoodsID & ") and t1.sheet_id in(" & pSheetID & ")"
sOrderby = " order by t1.goods_id"

'------------------------------------------------------------------------------
sFormParams = "id=" & pSheetID & "&"
'******************************************************************************
'----   分页SQL语句构造完毕,调用PrepareListData进行分页前的准备
'------------------------------------------------------------------------------
dim arrayFields(5), sDelimiter
sDelimiter = "*"
arrayFields(0)	=	"goods_name"
arrayFields(1)	=	"sheet_id"
arrayFields(2)	=	"model"
arrayFields(3)	=	"unit"
arrayFields(4)	=	"quantity"
arrayFields(5)	=	"due_return_date"

'response.write pSheetID  &"<BR>"
'response.write sSQL &"<BR>"
'response.end

call PrepareListData(conn, sSQL & sOrderby, Join(arrayFields, sDelimiter), sDelimiter)
'******************************************************************************
%>

<html>
<head>
<title>上海信息大楼 Shanghai Information Tower</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../include/common.css" type="text/css">

<!-- 日历 -->
<IFRAME style="display:none;position:absolute;width:148;height:194;z-index=100" ID="CalFrame" MarginHeight=0 MarginWidth=0 noresize frameborder=0 scrolling=no src="../include/cal/calendar.htm"></IFRAME>
<script language="javascript" src="../include/cal/calendar.js"></script>
<script for=document event="onclick()">
<!--
document.all.CalFrame.style.display="none";
//-->
</script>
<!-- 日历 -->

<script language="javascript">

function mover()
{
	var obj = window.event.srcElement;
	obj.style.color = 'blue';
}

function mout()
{
	var obj = window.event.srcElement;
	obj.style.color = 'black';
}

function btnBorrowInput_OnClick()
{
if ( window.confirm("你确定要归还吗?\n\n确认请按“确定”,取消请按“取消”。") == true )
	{
		frmSheetDetail.FormAction.value = "input";
		frmSheetDetail.submit();
	}
}

function btnCancel_OnClick()
{
	frmSheetDetail.FormAction.value = "cancel";
	frmSheetDetail.submit();
}
</script>

</head>

<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="../images/bg/bg0.jpg">
<br>

<%
Response.Write OuterTableHeader
Response.Write HeaderWithMenu
Response.Write InnerTableHeader
'******************************************************************************
'----   主体从这里开始
'------------------------------------------------------------------------------
Response.Write TableHeader
Response.Write TableRecords(sSQL & sOrderby, iCols, iRecordsPerPage, iTotalRecords, iCurrentPage, iTotalPages, sFileName, sFormParams, sSortParams )
Response.Write TableAction
Response.Write TableLink
'------------------------------------------------------------------------------
'----   主体到这里结束
'******************************************************************************
Response.Write InnerTableTailer
Response.Write Footer
Response.Write OuterTableTailer
Disconnect(conn)
%>

</body>
</html> 

⌨️ 快捷键说明

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