📄 am_fm_fd.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=600>
<tr><td class=noborder><% MenuIndex %></td></tr>
</table>
<%
MyDBConnect
' Output Result
strSQL="select flow_id,template_id, flow_name,template_name,stat_name,account_name,flow_file,flow_urge_way"
strSQL=strSQL & " from t_flow a,t_flow_template b,v_user_account c,t_flow_stat d"
strSQL=strSQL & " where a.flow_template_id=b.template_id "
strSQL=strSQL & " and a.flow_author_id=c.account_id "
strSQL=strSQL & " and a.flow_stat=d.stat_id"
strSQL=strSQL & " and a.flow_id=" & Request.QueryString("fid")
DBQuery(strSQL)
%>
<br>
<br>
<table cellspacing=0 cellpadding=0 align=center width=400 border=1>
<tr><td class=tblTitle colspan=2>删 除 流 程</td></tr>
<tr>
<td class=tdLabel width=100px>流程名称:</td>
<td> <%=oRs("flow_name")%></td>
</tr>
<tr >
<td class=tdLabel>流程当前状态:</td>
<td> <%=oRs("stat_name")%></td>
</tr>
<tr>
<td class=tdLabel>流程模板:</td>
<td> <a href="am_ftm_ftp.asp?tid=<%=oRs("template_id")%>"><%=oRs("template_name")%></a></td>
</tr>
<tr>
<td class=tdLabel>创建者:</td>
<td> <%=oRs("account_name")%></td>
</tr>
<tr>
<td class=tdLabel>流程审批文件:</td>
<td> <%=GetSubject(oRs("flow_file"))%></td>
</tr>
<tr>
<td class=tdLabel>催办方法:</td>
<td> <%=oRs("flow_urge_way")%></td>
</tr>
</table>
<br>
<br>
<table cellspacing=0 cellpadding=0 border=1 align=center width=400>
<tr align=center>
<%
DBEndQuery
strSQL="select cur_step from t_cur_step where flow_id="
strSQL=strSQL & Request.QueryString("fid")
DBQuery(strSQL)
%>
<td colspan=4 class=tblTitle>流程步骤--当前处于第<%=oRs("cur_step")%>步</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_flow_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 flow_id=" & Request.QueryString("fid")
strSQL=strSQL & " order by step_no asc"
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>
<p align=center><a href=am_fm_fdr.asp?fid=<%=Request.QueryString("fid")%>>
<img border=0 src=image/Remove.gif alt="确认删除流程">确认删除</a>
<a href=am_fm.asp>取消删除</a>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -