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

📄 am_ftm_ftd.asp

📁 物业管理和办公自动化系统
💻 ASP
字号:
<!--#INCLUDE FILE="z_common.asp"-->
<html>
<head>
<title>流程模板删除</title>
</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 template_id,template_name,template_type_name,account_name"
	strSQL=strSQL & " from t_flow_template a,t_flow_template_type b,v_user_account c "
	strSQL=strSQL & " where a.template_type=b.template_type_id "
	strSQL=strSQL & " and a.template_author_id=c.account_id "
	strSQL=strSQL & " and a.template_id=" & Request.QueryString("tid")
	DBQuery(strSQL)
%>
<br>
<br>
<table align=center width=400>
<tr >
	<td >模板名称  </td>
	<td ><%=oRs("template_name")%></td>
</tr>
<tr >
	<td >模板类型</td>
	<td ><%=oRs("template_type_name")%></td>
</tr>
<tr>
	<td >创建者</td>
	<td><%=oRs("account_name")%></td>
</tr>
</table>
<br>
<br>
<table border=1 align=center width=400>
<tr align=center>
	<td colspan=4>流程模板步骤</td>
</tr>
<tr align=center>
	<td>步骤序号</td>
	<td>审批人</td>
	<td>操作</td>
	<td>描述</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 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_ftm_ftdr.asp?tid=<%=Request.QueryString("tid")%>>
<img border=0  src=image/Remove.gif alt="确认删除流程模板">确认删除</a>
<a href=am_ftm.asp>取消删除</a>

</body>
</html>

⌨️ 快捷键说明

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