FnaLoanApplyOperation.jsp
15.3 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<%@page import="weaver.fna.general.FnaCommon"%>
<%@ page import="weaver.general.Util"%>
<%@ page import="weaver.general.TimeUtil"%>
<%@ page import="weaver.file.*" %>
<%@ page language="java" contentType="text/html; charset=UTF-8" %> <%@ include file="/systeminfo/init_wev8.jsp" %>
<jsp:useBean id="RequestManager" class="weaver.workflow.request.RequestManager" scope="page"/>
<jsp:useBean id="RecordSet" class="weaver.conn.RecordSet" scope="page"/>
<jsp:useBean id="RecordSet1" class="weaver.conn.RecordSet" scope="page"/>
<jsp:useBean id="RecordSetStart" class="weaver.conn.RecordSet" scope="page"/>
<jsp:useBean id="RecordSetBED"class="weaver.conn.RecordSet" scope="page"/>
<jsp:useBean id="RecordSetBHF"class="weaver.conn.RecordSet" scope="page"/>
<jsp:useBean id="ResourceComInfo" class="weaver.hrm.resource.ResourceComInfo" scope="page"/>
<jsp:useBean id="WFManager" class="weaver.workflow.workflow.WFManager" scope="page"/>
<jsp:useBean id="FieldInfo" class="weaver.workflow.mode.FieldInfo" scope="page"/>
<jsp:useBean id="WFNodeDtlFieldManager" class="weaver.workflow.workflow.WFNodeDtlFieldManager" scope="page"/>
<%
FileUpload fu = new FileUpload(request);
String f_weaver_belongto_userid=fu.getParameter("f_weaver_belongto_userid");//需要增加的代码
String f_weaver_belongto_usertype=fu.getParameter("f_weaver_belongto_usertype");//需要增加的代码
user= HrmUserVarify.getUser(request, response, f_weaver_belongto_userid, f_weaver_belongto_usertype) ;//需要增加的代码
String src = Util.null2String(fu.getParameter("src"));
String iscreate = Util.null2String(fu.getParameter("iscreate"));
int requestid = Util.getIntValue(fu.getParameter("requestid"),-1);
int workflowid = Util.getIntValue(fu.getParameter("workflowid"),-1);
String workflowtype = Util.null2String(fu.getParameter("workflowtype"));
int isremark = Util.getIntValue(fu.getParameter("isremark"),-1);
int formid = Util.getIntValue(fu.getParameter("formid"),-1);
int isbill = 1;
int billid = Util.getIntValue(fu.getParameter("billid"),-1);
int nodeid = Util.getIntValue(fu.getParameter("nodeid"),-1);
String nodetype = Util.null2String(fu.getParameter("nodetype"));
String requestname = Util.fromScreen(fu.getParameter("requestname"),user.getLanguage());
String requestlevel = Util.fromScreen(fu.getParameter("requestlevel"),user.getLanguage());
String messageType = Util.fromScreen(fu.getParameter("messageType"),user.getLanguage());
String remark = Util.null2String(fu.getParameter("remark"));
if(requestid != -1){
String sqlwhere = FnaCommon.getCanQueryRequestSqlCondition(user, "a", "a");
String _sql = "select 1 from workflow_requestbase a where 1=1 "+sqlwhere+" and a.requestid = "+requestid;
RecordSetStart.executeSql(_sql);
if(RecordSetStart.getCounts()<1){
response.sendRedirect("/notice/noright.jsp") ;
return ;
}
}
if( src.equals("") || workflowid == -1 || formid == -1 || isbill == -1 || nodeid == -1 || nodetype.equals("") ) {
//response.sendRedirect("/notice/RequestError.jsp");
out.print("<script>wfforward('/notice/RequestError.jsp');</script>");
return ;
}
RequestManager.setSrc(src) ;
RequestManager.setIscreate(iscreate) ;
RequestManager.setRequestid(requestid) ;
RequestManager.setWorkflowid(workflowid) ;
RequestManager.setWorkflowtype(workflowtype) ;
RequestManager.setIsremark(isremark) ;
RequestManager.setFormid(formid) ;
RequestManager.setIsbill(1) ;
RequestManager.setBillid(billid) ;
RequestManager.setNodeid(nodeid) ;
RequestManager.setNodetype(nodetype) ;
RequestManager.setRequestname(requestname) ;
RequestManager.setRequestlevel(requestlevel) ;
RequestManager.setRemark(remark) ;
RequestManager.setRequest(fu) ;
RequestManager.setUser(user) ;
//add by chengfeng.han 2011-7-28 td20647
int isagentCreater = Util.getIntValue((String)session.getAttribute(workflowid+"isagent"+user.getUID()));
int beagenter = Util.getIntValue((String)session.getAttribute(workflowid+"beagenter"+user.getUID()),0);
RequestManager.setIsagentCreater(isagentCreater);
RequestManager.setBeAgenter(beagenter);
//end
//add by xhheng @ 2005/01/24 for 消息提醒 Request06
RequestManager.setMessageType(messageType) ;
boolean savestatus = RequestManager.saveRequestInfo() ;
requestid = RequestManager.getRequestid() ;
if( !savestatus ) {
if( requestid != 0 ) {
String message=RequestManager.getMessage();
if(!"".equals(message)){
out.print("<script>wfforward('/workflow/request/ViewRequest.jsp?requestid="+requestid+"&message="+message+"&f_weaver_belongto_userid="+f_weaver_belongto_userid+"&f_weaver_belongto_usertype="+f_weaver_belongto_usertype+"');</script>");
return ;
}
//response.sendRedirect("/workflow/request/ManageRequest.jsp?requestid="+requestid+"&message=1");
out.print("<script>wfforward('/workflow/request/ManageRequest.jsp?requestid="+requestid+"&message=1&f_weaver_belongto_userid="+f_weaver_belongto_userid+"&f_weaver_belongto_usertype="+f_weaver_belongto_usertype+"');</script>");
return ;
}
else {
//response.sendRedirect("/workflow/request/RequestView.jsp?message=1");
out.print("<script>wfforward('/workflow/request/RequestView.jsp?message=1&f_weaver_belongto_userid="+f_weaver_belongto_userid+"&f_weaver_belongto_usertype="+f_weaver_belongto_usertype+"');</script>");
return ;
}
}
String ismode = "";
int showdes = 0;
int modeid = 0;
RecordSet.executeSql("select ismode,showdes,printdes from workflow_flownode where workflowid=" + workflowid + " and nodeid=" + nodeid);
if (RecordSet.next()) {
ismode = Util.null2String(RecordSet.getString("ismode"));
showdes = Util.getIntValue(Util.null2String(RecordSet.getString("showdes")), 0);
}
if (ismode.equals("1") && showdes != 1) {
RecordSet.executeSql("select id from workflow_nodemode where isprint='0' and workflowid=" + workflowid + " and nodeid=" + nodeid);
if (RecordSet.next()) {
modeid = RecordSet.getInt("id");
} else {
RecordSet.executeSql("select id from workflow_formmode where isprint='0' and formid=" + formid + " and isbill='" + isbill + "'");
if (RecordSet.next()) {
modeid = RecordSet.getInt("id");
}
}
}
if( src.equals("save") || src.equals("submit") ) { // 修改细表和主表信息
double amountsum = 0 ;
ArrayList detaileditfields=FieldInfo.getSaveDetailFields(formid,isbill,workflowid,nodeid,new ArrayList());
WFNodeDtlFieldManager.setNodeid(nodeid);
WFNodeDtlFieldManager.setGroupid(0);
WFNodeDtlFieldManager.selectWfNodeDtlField();
String dtldelete = WFNodeDtlFieldManager.getIsdelete();
if(detaileditfields.size()>0||dtldelete.equals("1")||iscreate.equals("1")){
if(modeid<1){
if( !iscreate.equals("1") ) RecordSet.executeSql("delete Bill_FnaLoanApplyDetail where id="+billid);
else {
requestid = RequestManager.getRequestid() ;
billid = RequestManager.getBillid() ;
}
if(src.equals("submit")){
//删除提交失败产生的费用垃圾数据
if( requestid ==0 ) requestid=-1;
String deletesql="delete FnaLoanInfo where requestid="+requestid;
RecordSet.executeSql( deletesql ) ;
}
String crmids = "";
String prjids = "";
Hashtable fieldnameType_hs = new Hashtable();
ArrayList fieldnameList = new ArrayList();
RecordSet.execute("select fieldname, type from workflow_billfield where billid=157 and fieldhtmltype=3 and type in (7,18,8,135) and (viewtype is null or viewtype<>1)");
while(RecordSet.next()){
String fieldname_tmp = Util.null2String(RecordSet.getString(1));
if("".equals(fieldname_tmp)){
continue;
}
String type_tmp = Util.null2String(RecordSet.getString(2));
fieldnameType_hs.put(fieldname_tmp, type_tmp);
fieldnameList.add(fieldname_tmp);
}
if(fieldnameList.size() <= 0){
RecordSet.execute("select * from Bill_FnaLoanApply where requestid="+requestid);
if(RecordSet.next()){
for(int i=0; i<fieldnameList.size(); i++){
String fieldname_tmp = Util.null2String((String)fieldnameList.get(i));
String type_tmp = Util.null2String((String)fieldnameType_hs.get(fieldname_tmp));
String value_tmp = Util.null2String(RecordSet.getString(fieldname_tmp));
if(!"".equals(value_tmp)){
if("7".equals(type_tmp) || "18".equals(type_tmp)){ //客户字段
if(!"".equals(crmids)){
crmids += (","+value_tmp);
}else{
crmids = value_tmp;
}
}else if("8".equals(type_tmp) || "135".equals(type_tmp)){ //项目字段
if(!"".equals(crmids)){
prjids += (","+value_tmp);
}else{
prjids = value_tmp;
}
}
}
}
}
}
int rowsum = Util.getIntValue(Util.null2String(fu.getParameter("indexnum")));
for(int i=0;i<rowsum;i++) {
int organizationtype = Util.getIntValue(fu.getParameter("organizationtype_"+i),3);
int organizationid = Util.getIntValue(fu.getParameter("organizationid_"+i),0);
int relatedprj = Util.getIntValue(fu.getParameter("relatedprj_"+i),0);
int relatedcrm = Util.getIntValue(fu.getParameter("relatedcrm_"+i),0);
double amount= Util.getDoubleValue(fu.getParameter("amount_"+i),0);
String description = Util.toHtml(fu.getParameter("description_"+i));
//if(amount == 0 ) continue ;
if(organizationid==0&&relatedprj==0&&relatedcrm==0&&amount==0&&description.equals("")) {
continue ;
}
if(relatedcrm > 0){
if(!"".equals(crmids)){
crmids += (","+relatedcrm);
}else{
crmids = ""+relatedcrm;
}
}
if(relatedprj > 0){
if(!"".equals(prjids)){
prjids += (","+relatedprj);
}else{
prjids = ""+relatedprj;
}
}
amountsum += amount ;
String sql="insert into Bill_FnaLoanApplyDetail (id,organizationtype,organizationid,amount,description,relatedprj,relatedcrm,dsporder) values("+billid+","+ organizationtype +","+ organizationid+","
+ amount +",'"+description+"',"+relatedprj+","+relatedcrm+","+i+")";
RecordSet.executeSql(sql);
}
String updatesql = "total=" + amountsum ;
updatesql = " update Bill_FnaLoanApply set " + updatesql + " where id = " + billid ;
RecordSet.executeSql( updatesql ) ;
RequestManager.setCrmids(crmids);
RequestManager.setPrjids(prjids);
}else{
requestid = RequestManager.getRequestid();
billid = RequestManager.getBillid();
if(src.equals("submit")){
//删除提交失败产生的费用垃圾数据
if( requestid ==0 ) requestid=-1;
String deletesql="delete FnaLoanInfo where requestid="+requestid;
RecordSet.executeSql( deletesql ) ;
}
RecordSet.executeSql("select * from Bill_FnaLoanApplyDetail where id=" + billid);
while (RecordSet.next()) {
double amount = Util.getDoubleValue(RecordSet.getString("amount"), 0);
amountsum += amount ;
}
String updatesql = "total=" + amountsum ;
updatesql = " update Bill_FnaLoanApply set " + updatesql + " where id = " + billid ;
RecordSet.executeSql( updatesql ) ;
}
}
}
if (src.equals("reject")) {
if( requestid ==0 ) requestid=-1;
String deletesql="delete from FnaLoanInfo where requestid="+requestid;
RecordSet.executeSql( deletesql ) ;
}
boolean flowstatus = RequestManager.flowNextNode() ;
if( !flowstatus ) {
//response.sendRedirect("/workflow/request/ManageRequest.jsp?requestid="+requestid+"&message=2");
out.print("<script>wfforward('/workflow/request/ManageRequest.jsp?requestid="+requestid+"&message=2&f_weaver_belongto_userid="+f_weaver_belongto_userid+"&f_weaver_belongto_usertype="+f_weaver_belongto_usertype+"');</script>");
return ;
}
boolean logstatus = RequestManager.saveRequestLog();
if (RequestManager.getNextNodetype().equals("3")) {
String sql = "select debitremark from Bill_FnaLoanApply where id=" + billid;
RecordSet.executeSql(sql);
RecordSet.next();
String debitremark = RecordSet.getString("debitremark");
if(modeid<1){
int rowsum = Util.getIntValue(Util.null2String(fu.getParameter("indexnum")));
for (int i = 0; i < rowsum; i++) {
int organizationtype = Util.getIntValue(fu.getParameter("organizationtype_" + i),3);
int organizationid = Util.getIntValue(fu.getParameter("organizationid_" + i),0);
int relatedprj = Util.getIntValue(fu.getParameter("relatedprj_" + i), 0);
int relatedcrm = Util.getIntValue(fu.getParameter("relatedcrm_" + i), 0);
double amount = Util.getDoubleValue(fu.getParameter("amount_" + i), 0);
String description = Util.toHtml(fu.getParameter("description_" + i));
if (organizationid<=0) continue;
String occurdate= TimeUtil.getCurrentDateString();
String insertsql = "insert into FnaLoanInfo (organizationtype,organizationid,occurdate,amount,loantype,requestid,remark,debitremark,relatedprj,relatedcrm) values (" + organizationtype + "," + organizationid + ",'" + occurdate + "',"
+ amount + ",1," + requestid + ",'" + description + "','" + debitremark +"',"+relatedprj+","+relatedcrm+ ")";
//System.out.println(insertsql);
RecordSet.executeSql(insertsql);
}
}else{
RecordSet.executeSql("select * from Bill_FnaLoanApplyDetail where id=" + billid);
while (RecordSet.next()) {
int organizationtype = Util.getIntValue(RecordSet.getString("organizationtype"),3);
int organizationid = Util.getIntValue(RecordSet.getString("organizationid"),0);
double amount = Util.getDoubleValue(RecordSet.getString("amount"), 0);
int relatedprj = Util.getIntValue(RecordSet.getString("relatedprj"), 0);
int relatedcrm = Util.getIntValue(RecordSet.getString("relatedcrm"), 0);
String description = Util.toHtml(RecordSet.getString("description"));
if (organizationid<=0) continue;
String occurdate= TimeUtil.getCurrentDateString();
String insertsql = "insert into FnaLoanInfo (organizationtype,organizationid,occurdate,amount,loantype,requestid,remark,debitremark,relatedprj,relatedcrm) values (" + organizationtype + "," + organizationid + ",'" + occurdate + "',"
+ amount + ",1," + requestid + ",'" + description + "','" + debitremark +"',"+relatedprj+","+relatedcrm+ ")";
//System.out.println(insertsql);
RecordSet.executeSql(insertsql);
}
}
}
WFManager.setWfid(workflowid);
WFManager.getWfInfo();
String isShowChart = Util.null2String(WFManager.getIsShowChart());
if ("1".equals(isShowChart)) {
//response.sendRedirect("/workflow/request/WorkflowDirection.jsp?requestid=" + requestid + "&workflowid=" + workflowid + "&isbill=" + isbill + "&formid=" + formid);
out.print("<script>wfforward('/workflow/request/WorkflowDirection.jsp?requestid=" + requestid + "&workflowid=" + workflowid + "&isbill=" + isbill + "&formid=" + formid+"&f_weaver_belongto_userid="+f_weaver_belongto_userid+"&f_weaver_belongto_usertype="+f_weaver_belongto_usertype+"');</script>");
} else {
//response.sendRedirect("/workflow/request/RequestView.jsp");
%>
<%@ include file="/workflow/request/RedirectPage.jsp" %>
<%
}
%>