📄 am_om_fs.asp
字号:
<!--#INCLUDE FILE="z_common.asp"-->
<html>
<head>
<title>所有待审批流程管理</title>
<style>
<!-- @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>
<p>
<table cellspacing=0 cellpadding=0 align=center border=1 width=600>
<tr><td class=tblTitle colspan=7>所有待审批流程管理</td></tr>
<tr align=center>
<td class=tdHead>流程名</td>
<td class=tdHead>步骤序号</td>
<td class=tdHead>流程模板</td>
<td class=tdHead>创建者</td>
<td class=tdHead>审核文件路径</td>
<td class=tdHead>催办方法</td>
<td class=tdHead>审 批</td>
</tr>
<%
MyDBConnect
strSQL="select * from t_flow a,t_flow_step b,t_cur_step c,t_flow_template d,v_user_account e "
strSQL=strSQL & " where a.flow_id=b.flow_id and a.flow_id=c.flow_id and b.step_no=c.cur_step"
strSQL=strSQL & " and a.flow_template_id=d.template_id"
strSQL=strSQL & " and a.flow_author_id=e.account_id"
strSQL=strSQL & " and b.step_op_person='" & Session("UserID")
strSQL=strSQL & "' and a.flow_stat=1 "
If Request.QueryString("aid")<>"" Then
strSQL=strSQL & " and e.account_id='" & Request.QueryString("aid") & "'"
End If
DBQuery(strSQL)
%>
<%
Do while (Not oRs.eof) %>
<tr align=center>
<td> <%=oRs("flow_name")%></td>
<td> <%=oRs("cur_step")%></a></td>
<td> <%=oRs("template_name")%></td>
<td> <%=oRs("account_name")%></td>
<td> <%=GetSubject(oRs("flow_file"))%></td>
<td> <%=oRs("flow_urge_way")%></td>
<td> <a href=am_om_os.asp?fid=<%=oRs("flow_id")%>><img border=0 src=image/checkall.gif alt="审批流程"></a></td>
</tr>
<% oRs.MoveNext
Loop
%>
</table>
<%
DBEndQuery
DBDisconnect
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -