FlowEdit.jsp
4.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<%@ page import="weaver.general.Util" %>
<%@ page import="java.util.*" %>
<%@ page language="java" contentType="text/html; charset=GBK" %>
<jsp:useBean id="RecordSet" class="weaver.conn.RecordSet" scope="page" />
<%@ include file="/systeminfo/init.jsp" %>
<% if(!HrmUserVarify.checkUserRight("CheckFlowInfo:Maintenance",user)) {
response.sendRedirect("/notice/noright.jsp") ;
return ;
}
%>
<HTML><HEAD>
<STYLE>.SectionHeader {
FONT-WEIGHT: bold; COLOR: white; BACKGROUND-COLOR: teal
}
</STYLE>
<LINK href="/css/Weaver.css" type=text/css rel=STYLESHEET>
<SCRIPT language="javascript" src="/js/weaver.js"></script>
</HEAD>
<%
String imagefilename = "/images/hdMaintenance.gif";
String titlename = SystemEnv.getHtmlLabelName(93,user.getLanguage())+": "+ SystemEnv.getHtmlLabelName(18043,user.getLanguage());
String needfav ="1";
String needhelp ="";
String id=Util.null2String(request.getParameter("id"));
RecordSet.execute("select a.*,b.workflowname from HrmPerformanceFlow a left join workflow_base b on a.relatingflow=b.id where a.id="+id);
String flowid="";
String type_1="";
String flowname="";
if (RecordSet.next())
{
flowid=Util.toScreen(RecordSet.getString("relatingFlow"),user.getLanguage());
type_1=Util.toScreen(RecordSet.getString("type_1"),user.getLanguage());
flowname=Util.toScreen(RecordSet.getString("workflowname"),user.getLanguage());
}
%>
<BODY>
<%@ include file="/systeminfo/TopTitle.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent.jsp" %>
<%
RCMenu += "{"+SystemEnv.getHtmlLabelName(86,user.getLanguage())+",javascript:OnSubmit(),_self} " ;
RCMenuHeight += RCMenuHeightStep ;
RCMenu += "{"+SystemEnv.getHtmlLabelName(1290,user.getLanguage())+",javaScript:window.history.go(-1),_self} " ;
RCMenuHeight += RCMenuHeightStep ;
%>
<%@ include file="/systeminfo/RightClickMenu.jsp" %>
<table width=100% height=100% border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col width="10">
<col width="">
<col width="10">
<tr>
<td height="10" colspan="3"></td>
</tr>
<tr>
<td ></td>
<td valign="top">
<TABLE class=Shadow>
<tr>
<td valign="top">
<FORM name=resource id=resource action="FlowOperation.jsp" method=post>
<input type=hidden name=operationtype value=edit>
<input type=hidden name=id value=<%=id%>>
<TABLE class=ViewForm>
<COLGROUP>
<COL width="50%">
<COL width="50%">
<TBODY>
<TR>
<TD vAlign=top>
<TABLE width="100%">
<COLGROUP> <COL width=10%> <COL width=70%> <TBODY>
<TR class=title>
<TH colSpan=2 ><%=SystemEnv.getHtmlLabelName(15058,user.getLanguage())%></TH>
</TR>
<TR class=spacing>
<TD class=line1 colSpan=2></TD>
</TR>
<TR>
<TD><%=SystemEnv.getHtmlLabelName(63,user.getLanguage())%></TD>
<TD class=Field>
<select class=inputStyle id=type_1
name=type_1>
<option value=0 <%if (type_1.equals("0")) {%> selected <%}%>><%=SystemEnv.getHtmlLabelName(18102,user.getLanguage())%></option>
<option value=1 <%if (type_1.equals("1")) {%> selected <%}%> ><%=SystemEnv.getHtmlLabelName(18103,user.getLanguage())%></option>
</select>
</TD>
</TR>
<TR><TD class=Line colSpan=2></TD></TR>
<TR>
<TD><%=SystemEnv.getHtmlLabelName(18077,user.getLanguage())%></TD> <!--??-->
<TD class=Field>
<BUTTON type="button" class=Browser id=SelectFlowID onClick="onShowFlowID()"></BUTTON>
<span
id=flowidspan>
<%=flowname%>
</span>
<INPUT class=inputStyle id=relatingFlow
type=hidden name=relatingFlow value=<%=flowid%> >
</TD>
</TR>
<TR><TD class=Line colSpan=2></TD></TR>
</TBODY>
</TABLE>
</TD>
</FORM>
</td>
</tr>
</TABLE>
</td>
<td></td>
</tr>
<tr>
<td height="10" colspan="3"></td>
</tr>
</table>
<SCRIPT language="javascript">
function OnSubmit(){
{ if(check_form(document.resource,"relatingFlow"))
{
document.resource.submit();
}
}
}</SCRIPT>
<SCRIPT language="vbs">
sub onShowFlowID()
id = window.showModalDialog("/systeminfo/BrowserMain.jsp?url=/workflow/request/FlowBrowser.jsp")
if (Not IsEmpty(id)) then
if id(0)<> "" then
flowidspan.innerHtml = id(1)
resource.relatingFlow.value=id(0)
else
flowidspan.innerHtml = ""
resource.relatingFlow.value=""
end if
end if
end sub
</script>
</BODY>
</HTML>