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

📄 am_fm_fp.asp

📁 物业管理和办公自动化系统
💻 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
	' 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 border=1 width=400>
<tr><td colspan=2 class=tblTitle>流 程 属 性</td></tr>
<tr>
	<td width=120px class=tdLabel>&nbsp;流程名称:</td>
	<td>&nbsp;<%=oRs("flow_name")%></td>
</tr>
<tr >
	<td class=tdLabel>&nbsp;流程当前状态:</td>
	<td>&nbsp;<%=oRs("stat_name")%></td>
</tr>
<tr>
	<td class=tdLabel>&nbsp;流程模板:</td>
	<td>&nbsp;<a href="am_ftm_ftp.asp?tid=<%=oRs("template_id")%>"><%=oRs("template_name")%></a></td>
</tr>
<tr>
	<td class=tdLabel>&nbsp;创建者:</td>
	<td>&nbsp;<%=oRs("account_name")%></td>
</tr>
<tr>
	<td class=tdLabel>&nbsp;流程审批文件:</td>
	<td>&nbsp;<%=GetSubject(oRs("flow_file"))%></td>
</tr>
<tr>
	<td class=tdLabel>&nbsp;催办方法:</td>
	<td>&nbsp;<%=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>&nbsp;" & oRs("step_no")&"</td>")
		Response.Write("<td>&nbsp;" & oRs("account_name")&"</td>")
		Response.Write("<td>&nbsp;" & oRs("operation_name")&"</td>")
		Response.Write("<td>&nbsp;" & oRs("step_desc")&"</td>")
		Response.Write("</tr>")
		oRs.MoveNext 
    Loop 
	DBEndQuery
%>
<tr align=center>
<td colspan=4>
<a href=graph1.asp?fid=<%=Request.QueryString("fid")%>>横向流程图</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;
<a href=graph2.asp?fid=<%=Request.QueryString("fid")%>>纵向流程图</a>
</td>
</tr>
</table>

<p align=center><a href=am_fm_fm.asp?fid=<%=Request.QueryString("fid")%>>
<img border=0  src=image/RecordEdit.gif alt="修改流程">修改流程</a>
<a href=am_fm_fd.asp?fid=<%=Request.QueryString("fid")%>><img border=0  src=image/Remove.gif alt="删除流程">删除流程</a>

</body>
</html>

⌨️ 快捷键说明

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