📄 remind.inc
字号:
<%
'###############################################################################
'#
'# 文件名 : item_output.inc
'#
'# 创建人 : yaoxiaohui
'# 日期 : 2002-11-06
'#
'# 修改历史 : ****年**月**日 ******
'# 修改内容 : *********************************
'#
'# 功能描述 : 领用函数文件
'# 版 本 : v1.0
'#
'# Copyright(c) 2001-2002 上海阿尔卡特网络支援系统有限公司
'#
'###############################################################################
'*******************************************************************************
Function RemindTable()
RemindTable = _
"<form name=""frmRemind"" method=post action=""remind.asp"">" & vbLF & _
"<input type=""hidden"" name=""FormAction"">" & vbLF & _
"<input type=""hidden"" name=""goods_id"" value=""" & pRemindID & """>" & vbLF & _
"<input type=""hidden"" name=""sheet_id"" value=""" & pSheetID & """>" & vbLF & _
"<table cellspacing=0 cellpadding=3 width=600 align=center border=0>" & vbLF & _
" <tr height=20>" & vbLF & _
" <td bgcolor=""blue"" align=center style=""color:white;font-weight:600"">库存不足提醒</td></tr>" & vbLF & _
" <tr height=15 bgcolor=white><td> </td></tr>" & vbLF & _
" <tr height=30 bgcolor=white>" & vbLF & _
" <td class=tdValue align=center>库存物品代码为 " & pRemindID & " 的物品和设备库存不足!</td></tr>" & vbLF & _
" <tr height=30 bgcolor=white>" & vbLF & _
" <td class=tdValue align=center>要处理吗?</td></tr>" & vbLF & _
" <tr height=30 bgcolor=white>" & vbLF & _
" <td align=center>" & vbLF & _
" <span title=""进入采购提醒处理界面!"" style=""cursor:hand"" onmouseover=""mover();"" onmouseout=""mout();"" onclick=""btnNext_OnClick();"">" & vbLF & _
" <img border=0 src=""../images/edit.gif"" style=""vertical-align:middle"">现在处理</span>" & vbLF & _
" <span title=""回到出库主界面!"" style=""cursor:hand"" onmouseover=""mover();"" onmouseout=""mout();"" onclick=""btnBack_OnClick();"">" & vbLF & _
" <img border=0 src=""../images/edit.gif"" style=""vertical-align:middle"">以后再说</span>" & vbLF & _
" </td>" & vbLF & _
" </tr>" & vbLF & _
"</table></form>" & vbLF
End Function
'*******************************************************************************
Function GotoPur()
response.redirect "../purchase/purchase_remind.asp"
End Function
'*******************************************************************************
Function Back()
response.redirect "sheet_goto.asp?sheet_id=" & pSheetID
End Function
'*******************************************************************************
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -