📄 am_ftm_sdr.asp
字号:
<!--#INCLUDE FILE="z_common.asp"-->
<html>
<head>
<title>删除流程模板结果</title>
<style type="text/css">
<!-- @import url(../common.css); -->
</style>
</head>
<body>
<p>
<table cellspacing=0 cellpadding=0 align=center border=0 width=400>
<tr><td class=noborder><% MenuIndex %></td></tr>
</table>
<%
MyDBConnect
'delete steps
strSQL="delete from t_template_step where template_id=" & Request.QueryString("tid")
strSQL=strSQL & " and step_no=" & Request.QueryString("sid")
DBExecute strSQL
'update steps
strSQL="update t_template_step set step_no = step_no - 1 where step_no >" & Request.QueryString("sid")
strSQL=strSQL & " and template_id=" & Request.QueryString("tid")
DBExecute strSQL
%>
<p align=center>*********删除成功*********<br>
<table cellspacing=0 cellpadding=0 border=1 align=center width=400>
<tr align=center>
<td colspan=4 class=tblTitle>流程模板步骤</td>
</tr>
<tr align=center>
<td class=tdHead>步骤序号</td>
<td class=tdHead>审批人</td>
<td class=tdHead>操作</td>
<td class=tdHead>描述</td>
</tr>
<%
strSQL="select * from t_template_step a,v_user_account b,t_step_operation c"
strSQL=strSQL & " where a.step_op_person=b.account_id "
strSQL=strSQL & " and a.step_op_id=c.operation_id "
strSQL=strSQL & " and template_id=" & Request.QueryString("tid")
strSQL=strSQL & " order by a.step_no"
DBQuery(strSQL)
Do while (Not oRs.eof)
Response.Write("<tr align=center>")
Response.Write("<td> " & oRs("step_no")&"</td>")
Response.Write("<td> " & oRs("account_name")&"</td>")
Response.Write("<td> " & oRs("operation_name")&"</td>")
Response.Write("<td> " & oRs("step_desc")&"</td>")
Response.Write("</tr>")
oRs.MoveNext
Loop
DBEndQuery
%>
</table>
<a href=am_ftm_ftm.asp?tid=<%=Request.QueryString("tid")%>>
<img border=0 src="image/RecordEdit.gif" alt="修改流程模板">继续修改流程模板</a>
<%
' Close Recordset
DBDisconnect
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -