| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ include file="/jsp/framework/head.jsp" %>
- <%@ page import="cn.sinobest.framework.comm.iface.IOperator" %>
- <%@ page import="cn.sinobest.sysmngr.comm.ConVar" %>
- <%@ page import="cn.sinobest.framework.util.ConfUtil" %>
- <%@ page import="cn.sinobest.framework.util.Util" %>
- <%@ page import="cn.sinobest.framework.util.DTOUtil" %>
- <%@ taglib uri="/WEB-INF/hnisi.tld" prefix="hnisi" %>
- <%-- 导航栏标签 --%>
- <hnisi:gNavStr />
- <%
-
- String pid = DTOUtil.getValue("pid");//获取流水号
- if(null == pid || pid.trim().equals("")){
- pid = request.getParameter("pid");
- }
- String whereCls = "PROCESSINSTANCE_ID = '" + pid + "' and state in('0','2','8') ";
- String whereCls1= "PROCESSINSTANCE_ID = '" + pid + "' and state not in('0','2','8') order by TASK_ID asc";
- //String whereCls1= "PROCESSINSTANCE_ID = '" + pid + "' order by TASK_ID asc";
-
- IOperator Operator = null;
- Object obj = request.getSession().getAttribute(ConVar.LOGIN_SESSION_ID);
- String OperID="";
- if(obj != null){
- Operator = (IOperator)obj;
- OperID = Operator.getOperID();
- }
- %>
- <%-- 流程概括查询表单 --%>
- <form name="aform" action="${ctx}/sysmngr/web/authmngr/query.do" method="post">
- <%-- 流程概括 --%>
- <hnisi:gt id="fw_wfbusins_q2_bpm" >
- <hnisi:gtData whereCls="<%=whereCls%>" id="fw_wfbusins_q2_bpm"></hnisi:gtData>
- </hnisi:gt>
- <%-- 环节列表 --%>
- <hnisi:glt id="fw_wfbusins_l2_bpm" whereCls="<%=whereCls1%>" height="200">
- </hnisi:glt>
- <p align="center">
- <%-- 关闭按钮--%>
- <hnisi:btn name="btnCls" onclick="closeWin()" value="关闭" />
- </p>
- </form>
- <script type="text/javascript">
- /**
- * 关闭弹出窗口
- */
- function closeWin() {
- window.close();
- }
-
-
- $(function(){
- new Service({
- serviceId:'blankService',
- method:'getOper',
- parameters:{'OPERID':<%=OperID%>}
- }).sentAjax('发送操作请求',function(data){
- CFW.oGt.fnSetForm(aform,{"SPONSOR":data[0].OPERNAME,"APPROVAL_ORGAN":data[0].OPERUNITNAME});
- });
- });
-
-
-
- </script>
- </body>
- </html>
|