FnaPayApplyOperation.jsp
19.1 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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<%@page import="weaver.fna.general.FnaCommon"%>
<%@ page import="weaver.general.Util"%>
<%@ page import="weaver.file.*" %>
<%@ page import="java.util.ArrayList" %>
<%@ 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"/>
<jsp:useBean id="FnaBudgetControlByBill" class="weaver.fna.maintenance.FnaBudgetControlByBill" scope="page"/>
<jsp:useBean id="DepartmentComInfo" class="weaver.hrm.company.DepartmentComInfo" 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");
}
}
}
String remindmessage = "";//返回的提醒信息
String poststr = "";
if( src.equals("save") || src.equals("submit") ) { // 修改细表和主表信息
double amountsum = 0 ;
double applyamountsum = 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 from Bill_FnaPayApplyDetail where id="+billid);
else {
requestid = RequestManager.getRequestid() ;
billid = RequestManager.getBillid() ;
}
if(src.equals("submit")){
//删除提交失败产生的垃圾数据
String deletesql="delete from FnaExpenseInfo 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=156 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_FnaPayApply 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);
double applyamount= Util.getDoubleValue(fu.getParameter("applyamount_"+i),0);
String subject = Util.null2String(fu.getParameter("subject_"+i));
String budgetperiod = Util.null2String(fu.getParameter("budgetperiod_"+i));
String description = Util.toHtml(fu.getParameter("description_"+i));
//if(applyamount == 0 ) continue ;
if(organizationid==0&&relatedprj==0&&relatedcrm==0&&amount==0&&applyamount==0&&subject.equals("")&&budgetperiod.equals("")&&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;
}
}
applyamountsum+=applyamount;
amountsum += amount ;
if(subject.equals("")) subject="0";
String sql="insert into Bill_FnaPayApplyDetail (id,organizationtype,organizationid,amount,subject,description,budgetperiod,relatedprj,relatedcrm,applyamount,dsporder) values("+billid+","+ organizationtype +","+ organizationid+","
+ amount+","+ subject +",'"+description+"','"+budgetperiod+"',"+relatedprj+","+relatedcrm+","+applyamount+","+i+")";
//System.out.println("sql:"+sql);
RecordSet.executeSql(sql);
double finalamount = 0;
if(amount>0){
finalamount = amount;
}else{
finalamount = applyamount;
}
boolean iscanfancontrol = FnaBudgetControlByBill.isFnaControl(workflowid,nodeid,organizationid, organizationtype);
if(iscanfancontrol){
poststr += "|"+subject+","+ organizationid+","+ budgetperiod+","+finalamount;
}
if (src.equals("submit")&&organizationid>0) {
if(amount==0) amount=applyamount;
String insertsql = "insert into FnaExpenseInfo (organizationtype,organizationid,occurdate,amount,subject,status,type,requestid,relatedprj,relatedcrm,description) values (" + organizationtype + "," + organizationid + ",'" + budgetperiod + "',"
+ amount + "," + subject + ",0,1," + requestid +","+relatedprj+","+relatedcrm+ ",'"+description+"')";
//System.out.println(insertsql);
RecordSet.executeSql(insertsql);
}
}
if (amountsum == 0) amountsum = applyamountsum;
String updatesql = "total=" + amountsum ;
updatesql = " update Bill_FnaPayApply 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")){
//删除提交失败产生的垃圾数据
String deletesql = "delete from FnaExpenseInfo where requestid=" + requestid;
RecordSet.executeSql(deletesql);
}
RecordSet.executeSql("select * from Bill_FnaPayApplyDetail where id=" + billid);
while (RecordSet.next()) {
int organizationtype = Util.getIntValue(RecordSet.getString("organizationtype"),3);
int organizationid = Util.getIntValue(RecordSet.getString("organizationid"),0);
String budgetperiod = Util.null2String(RecordSet.getString("budgetperiod"));
double amount = Util.getDoubleValue(RecordSet.getString("amount"), 0);
double applyamount = Util.getDoubleValue(RecordSet.getString("applyamount"), 0);
String subject = Util.null2String(RecordSet.getString("subject"));
int relatedprj = Util.getIntValue(RecordSet.getString("relatedprj"), 0);
int relatedcrm = Util.getIntValue(RecordSet.getString("relatedcrm"), 0);
String description = Util.toHtml(RecordSet.getString("description"));
//if(applyamount == 0 ) continue ;
// if (organizationtype.equals("") || organizationid.equals("")) {
// continue;
// }
applyamountsum += applyamount;
amountsum += amount;
if (subject.equals(""))
subject = "0";
if (src.equals("submit")&&organizationid>0) {
if (amount == 0) amount = applyamount;
String insertsql = "insert into FnaExpenseInfo (organizationtype,organizationid,occurdate,amount,subject,status,type,requestid,relatedprj,relatedcrm,description) values (" + organizationtype + "," + organizationid + ",'" + budgetperiod + "',"
+ amount + "," + subject + ",0,1," + requestid + "," + relatedprj + "," + relatedcrm + ",'" + description + "')";
//System.out.println(insertsql);
RecordSet.executeSql(insertsql);
}
double finalamount = 0;
if(amount>0){
finalamount = amount;
}else{
finalamount = applyamount;
}
boolean iscanfancontrol = FnaBudgetControlByBill.isFnaControl(workflowid,nodeid,organizationid, organizationtype);
if(iscanfancontrol){
poststr += "|"+subject+","+ organizationid+","+ budgetperiod+","+finalamount;
}
}
if (amountsum == 0) amountsum = applyamountsum;
String updatesql = "total=" + amountsum;
updatesql = " update Bill_FnaPayApply set " + updatesql + " where id = " + billid;
RecordSet.executeSql(updatesql);
}
}else{
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);
double applyamount= Util.getDoubleValue(fu.getParameter("applyamount_"+i),0);
String subject = Util.null2String(fu.getParameter("subject_"+i));
String budgetperiod = Util.null2String(fu.getParameter("budgetperiod_"+i));
String description = Util.toHtml(fu.getParameter("description_"+i));
if(organizationid==0&&relatedprj==0&&relatedcrm==0&&amount==0&&applyamount==0&&subject.equals("")&&budgetperiod.equals("")&&description.equals("")) {
//continue ;
}
double finalamount = 0;
if(amount>0){
finalamount = amount;
}else{
finalamount = applyamount;
}
boolean iscanfancontrol = FnaBudgetControlByBill.isFnaControl(workflowid,nodeid,organizationid, organizationtype);
if(iscanfancontrol){
poststr += "|"+subject+","+ organizationid+","+ budgetperiod+","+finalamount;
}
}
}
//预算控制
if(poststr!=""){
poststr =poststr.substring(1);
//返回的值
String returnStr = FnaBudgetControlByBill.checkBudgetList(poststr,requestid,true, user.getLanguage(), user);
if(returnStr!=null && !returnStr.equals("")){
remindmessage = returnStr;
}
}
}
if(!remindmessage.equals("")){
String delesql="delete from FnaExpenseInfo where requestid="+requestid;
RecordSet.executeSql( delesql ) ;
session.setAttribute(requestid+"_"+1021,remindmessage);
out.print("<script>wfforward('/workflow/request/ViewRequest.jsp?requestid="+requestid+"&message=1021&f_weaver_belongto_userid="+f_weaver_belongto_userid+"&f_weaver_belongto_usertype="+f_weaver_belongto_usertype+"');</script>");
return ;
}
if (src.equals("reject")||src.equals("delete")) {
if(src.equals("reject")){
if(RequestManager.getNextNodetype().equals("0")){//退回到创建节点才删除费用
String deletesql="delete from FnaExpenseInfo where requestid="+requestid;
RecordSet.executeSql( deletesql ) ;
}
}else{
String deletesql="delete from FnaExpenseInfo 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_FnaPayApply where id="+billid;
RecordSet.executeSql(sql);
RecordSet.next();
String debitremark=RecordSet.getString("debitremark");
sql = "update FnaExpenseInfo set status=1,debitremark='"+debitremark+"' where requestid=" + requestid;
RecordSet.executeSql(sql);
}
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 {
%>
<%@ include file="/workflow/request/RedirectPage.jsp" %>
<%
}
%>