HomepageForWorkflow.jsp
1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ page import="java.util.*"%>
<%@ page import="weaver.general.Util"%>
<%
String hpid = Util.null2String(request.getParameter("hpid"));
String wfid = Util.null2String(request.getParameter("wfid"), "0");
String modeid = Util.null2String(request.getParameter("modeid"), "0");
String nodeid = Util.null2String(request.getParameter("nodeid"));
String formid = Util.null2String(request.getParameter("formid"));
String isbill = Util.null2String(request.getParameter("isbill"));
String moduleid = Util.null2String(request.getParameter("moduleid"));
String layouttype = Util.null2String(request.getParameter("layouttype"));
String layoutname = Util.null2String(request.getParameter("layoutname"));
String url = "/spa/portal/static4engine/engine.html#/appcenter/synergy/synergy4wfform"
+ "?hpid="
+ hpid
+ "&wfid="
+ wfid
+ "&modeid="
+ modeid
+ "&nodeid="
+ nodeid
+ "&formid="
+ formid
+ "&isbill="
+ isbill
+ "&moduleid="
+ moduleid
+ "&layouttype="
+ layouttype
+ "&layoutname="
+ layoutname;
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style type="text/css">
html,body {width: 100%;height: 100%;padding: 0;margin: 0;}
iframe {width: 100%;height: 100%;border: none;}
</style>
<script type="text/javascript">
function closeDialogCallback() {
parentDialog.close();
}
</script>
</head>
<body>
<iframe src="<%=url%>" width="100%" height="100%"></iframe>
</body>
</html>