zj
2025-02-17 76bc979b654c23be393c9c46c9e3099cdd3785ec
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package project.web.admin.monitor;
 
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.HashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
 
import javax.servlet.http.HttpServletRequest;
 
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;
 
import kernel.exception.BusinessException;
import kernel.web.ApplicationUtil;
import kernel.web.Page;
import kernel.web.PageActionSupport;
import project.monitor.loan.LoanService;
import project.monitor.loan.SimpleLoanOrder;
 
/**
 * @author JORGE
 * @description 借贷管理
 */
@RestController
@SuppressWarnings("unchecked")
public class AdminLoanController extends PageActionSupport {
    /**
     * 借贷服务
     */
    @Autowired
    private LoanService loanService;
    
    /**
     * SLF4J日志组件
     */
    private static final Logger logger = LoggerFactory.getLogger(AdminLoanController.class);
    
    /**
     * 时间格式
     */
    private static final DateFormat DATA_FORMATTER=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    
    /**
     * 借贷额度正则式
     */
    private static final Pattern QUOTA_REGEX=Pattern.compile("([A-Z]{2,8}):([1-9]{1}[0-9]{0,7})");
    
    /**
     * 获取借贷申请单列表
     * @return 申请单列表
     */
    @RequestMapping("normal/loanadmin!list.action")
    public ModelAndView listLoanOrder(HttpServletRequest request) {
        String status=request.getParameter("status");
        String orderNo=request.getParameter("orderNo");
        String userName=request.getParameter("userName");
        int pageNo=checkAndSetPageNo(request.getParameter("pageNo"));
        if(null==status || (status=status.trim()).isEmpty()) status="0";
        
        HashMap<String,Object> paramMap=new HashMap<String,Object>();
        paramMap.put("status", new Integer(status));
        paramMap.put("userName", userName);
        paramMap.put("orderNo", orderNo);
        paramMap.put("pageNo", pageNo);
        paramMap.put("pageSize", 30);
        
        Page page=null;
        try {
            page=loanService.pagedQuery(paramMap);
        }catch(Throwable e) {
            logger.error("list loan order occur error:", e);
        }
        
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.addObject("pageNo", pageNo);
        modelAndView.addObject("status", status);
        modelAndView.addObject("pageSize", pageSize);
        if(null!=page) modelAndView.addObject("page",page);
        modelAndView.setViewName("simple_loan_order_list");
        
        return modelAndView;
    }
    
    /**
     * 改变借贷申请单状态
     * @return 申请单列表
     */
    @RequestMapping("normal/loanadmin!change.action")
    public ModelAndView changeLoanOrderState(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView();
        
        String orderId=getParamValue(request,modelAndView,"orderId");
        if(null==orderId) return modelAndView;
        
        String status=getParamValue(request,modelAndView,"status");
        if(null==status) return modelAndView;
        
        try {
            loanService.updateLoanOrderState(orderId, status);
            modelAndView.addObject("message", "操作成功");
        }catch(BusinessException e) {
            modelAndView.addObject("message", e.getMessage());
            logger.error("change loan order state error:", e);
        }catch(Throwable e) {
            modelAndView.addObject("message", "操作失败");
            logger.error("change loan order state error:", e);
        }
        
        modelAndView.setViewName("redirect:/normal/loanadmin!list.action");
        
        return modelAndView;
    }
    
    /**
     * 返回借贷申请单添加页面
     * @return 添加申请单表单页面
     */
    @RequestMapping("normal/loanadmin!toAdd.action")
    public ModelAndView addBefore(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.setViewName("simple_loan_order_add");
        
        try {
            HashMap<String,Object> paramMap=loanService.getLoanParams(null);
            if(null!=paramMap) {
                modelAndView.addObject("paramMap",paramMap);
                ApplicationUtil.getHttpSession().setAttribute("paramMap", paramMap);
            }else {
                modelAndView.addObject("code", "0");
                modelAndView.addObject("message", "获取借贷参数失败!");
            }
        }catch(Throwable e) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message","程序错误");
            logger.error("error:", e);
        }
        
        return modelAndView;
    }
    
    /**
     * 添加借贷申请单
     * @return 添加状态
     */
    @RequestMapping("normal/loanadmin!add.action")
    public ModelAndView add(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.setViewName("simple_loan_order_add");
        
        String partyId=getParamValue(request,modelAndView,"partyId");
        if(null==partyId) return modelAndView;
        
        String term=getParamValue(request,modelAndView,"term");
        if(null==term) return modelAndView;
        
        String state=getParamValue(request,modelAndView,"state");
        if(null==state) return modelAndView;
        
        String quota=getParamValue(request,modelAndView,"quota");
        if(null==quota) return modelAndView;
        
        String symbol=getParamValue(request,modelAndView,"symbol");
        if(null==symbol) return modelAndView;
        
        String dailyRate=getParamValue(request,modelAndView,"dailyRate");
        if(null==dailyRate) return modelAndView;
        
        String repayment=getParamValue(request,modelAndView,"repayment");
        if(null==repayment) return modelAndView;
        
        String repayCycle=getParamValue(request,modelAndView,"repayCycle");
        if(null==repayCycle) return modelAndView;
        
        String lendingInstitution=getParamValue(request,modelAndView,"lendingInstitution");
        if(null==lendingInstitution) return modelAndView;
        
        String houseImgs=request.getParameter("houseImgs");
        if(null==houseImgs || (houseImgs=houseImgs.trim()).isEmpty()) {
            houseImgs=null;
        }
        
        String incomeImg=request.getParameter("incomeImg");
        if(null==incomeImg || (incomeImg=incomeImg.trim()).isEmpty()) {
            incomeImg=null;
        }
        
        Integer quotaInt=new Integer(quota);
        if(checkInvalidQuota(modelAndView,symbol,quotaInt)) return modelAndView;
        
        SimpleLoanOrder simpleLoanOrder=new SimpleLoanOrder(partyId,quotaInt,symbol);
        simpleLoanOrder.setLendingInstitution(new Integer(lendingInstitution));
        simpleLoanOrder.setRepayCycle(new Integer(repayCycle));
        simpleLoanOrder.setRepayment(new Integer(repayment));
        simpleLoanOrder.setDailyRate(new Double(dailyRate));
        simpleLoanOrder.setState(new Integer(state));
        simpleLoanOrder.setTerm(new Integer(term));
        simpleLoanOrder.setHouseImgs(houseImgs);
        simpleLoanOrder.setIncomeImg(incomeImg);
        
        try {
            boolean flag=loanService.addLoanOrder(simpleLoanOrder);
            if(flag) {
                modelAndView.addObject("message","借贷申请提交成功!");
            }else {
                modelAndView.addObject("code", "1");
                modelAndView.addObject("message","借贷申请提交失败!");
            }
        }catch(Throwable e) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message","程序错误");
            logger.error("error:", e);
        }
        
        return modelAndView;
    }
    
    /**
     * 返回借贷申请单修改页面
     * @return 修改申请单页面
     */
    @RequestMapping("normal/loanadmin!toModify.action")
    public ModelAndView modifyBefore(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.setViewName("simple_loan_order_edit");
        
        String orderNo=getParamValue(request,modelAndView,"orderNo");
        if(null==orderNo) return modelAndView;
        
        try {
            HashMap<String,Object> paramMap=loanService.getLoanParams(null);
            if(null!=paramMap) {
                modelAndView.addObject("paramMap",paramMap);
                ApplicationUtil.getHttpSession().setAttribute("paramMap", paramMap);
            }else {
                modelAndView.addObject("code", "0");
                modelAndView.addObject("message", "获取借贷参数失败!");
                return modelAndView;
            }
            
            SimpleLoanOrder loanOrder=loanService.getLoanOrder(orderNo);
            if(null!=loanOrder) {
                modelAndView.addObject("order",loanOrder);
            }else {
                modelAndView.addObject("code", "0");
                modelAndView.addObject("message", "获取借贷订单失败!");
                return modelAndView;
            }
        }catch(Throwable e) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message","程序错误");
            logger.error("error:", e);
        }
        
        return modelAndView;
    }
    
    /**
     * 修改借贷申请单
     * @return 修改申请单状态
     */
    @RequestMapping("normal/loanadmin!modify.action")
    public ModelAndView modify(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.setViewName("simple_loan_order_edit");
        
        String id=getParamValue(request,modelAndView,"orderNo");
        if(null==id) return modelAndView;
        
        String term=getParamValue(request,modelAndView,"term");
        if(null==term) return modelAndView;
        
        String quota=getParamValue(request,modelAndView,"quota");
        if(null==quota) return modelAndView;
        
        String symbol=getParamValue(request,modelAndView,"symbol");
        if(null==symbol) return modelAndView;
        
        String dailyRate=getParamValue(request,modelAndView,"dailyRate");
        if(null==dailyRate) return modelAndView;
        
        String repayment=getParamValue(request,modelAndView,"repayment");
        if(null==repayment) return modelAndView;
        
        String repayCycle=getParamValue(request,modelAndView,"repayCycle");
        if(null==repayCycle) return modelAndView;
        
        String createTime=getParamValue(request,modelAndView,"createTime");
        if(null==createTime) return modelAndView;
        
        String lendingInstitution=getParamValue(request,modelAndView,"lendingInstitution");
        if(null==lendingInstitution) return modelAndView;
        
        Integer quotaInt=new Integer(quota);
        if(checkInvalidQuota(modelAndView,symbol,quotaInt)) return modelAndView;
        
        SimpleLoanOrder simpleLoanOrder=new SimpleLoanOrder(quotaInt,symbol,id);
        simpleLoanOrder.setLendingInstitution(new Integer(lendingInstitution));
        simpleLoanOrder.setRepayCycle(new Integer(repayCycle));
        simpleLoanOrder.setRepayment(new Integer(repayment));
        simpleLoanOrder.setDailyRate(new Double(dailyRate));
        simpleLoanOrder.setTerm(new Integer(term));
        
        try {
            simpleLoanOrder.setCreateTime(DATA_FORMATTER.parse(createTime));
        } catch (ParseException e) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message",e.getMessage());
            return modelAndView;
        }
        
        try {
            boolean flag=loanService.modLoanOrder(simpleLoanOrder);
            if(flag) {
                modelAndView.addObject("message","借贷申请单修改成功!");
            }else {
                modelAndView.addObject("code", "1");
                modelAndView.addObject("message","借贷申请单修改失败!");
            }
        }catch(Throwable e) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message","程序错误");
            logger.error("error:", e);
        }
        
        return modelAndView;
    }
    
    /**
     * 删除借贷申请单
     * @return 申请单列表
     */
    @RequestMapping("normal/loanadmin!delete.action")
    public ModelAndView deleteLoanOrder(HttpServletRequest request) {
        ModelAndView modelAndView = new ModelAndView();
        
        String orderId=getParamValue(request,modelAndView,"orderId");
        if(null==orderId) return modelAndView;
        
        try {
            loanService.deleteLoanOrder(orderId);
            modelAndView.addObject("message", "操作成功");
        }catch(BusinessException e) {
            modelAndView.addObject("message", e.getMessage());
            logger.error("delete loan order state error:", e);
        }catch(Throwable e) {
            modelAndView.addObject("message", "操作失败");
            logger.error("delete loan order occur error:", e);
        }
        
        modelAndView.setViewName("redirect:/normal/loanadmin!list.action");
        
        return modelAndView;
    }
    
    /**
     * 获取参数值
     * @param request 请求对象
     * @param resultObject 结果对象
     * @param paramName 参数名
     * @return 参数值
     */
    private static final String getParamValue(HttpServletRequest request,ModelAndView modelAndView,String paramName) {
        String paramValue=request.getParameter(paramName);
        if(null==paramValue || (paramValue=paramValue.trim()).isEmpty()) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message",String.format("获取参数[%s]为空!",paramName));
            return null;
        }else {
            return paramValue;
        }
    }
    
    /**
     * 校验借贷额度是否有效
     * @param resultObject 结果对象
     * @param quota 借贷额度
     * @return 是否无效
     */
    private static final boolean checkInvalidQuota(ModelAndView modelAndView,String symbol,Integer quota) {
        HashMap<String,Object> paramMap=(HashMap<String,Object>)ApplicationUtil.getHttpSession().getAttribute("paramMap");
        if(null==paramMap) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message","从会话中获取借贷参数[paramMap]为空!");
            return true;
        }
        
        Matcher matcher=QUOTA_REGEX.matcher((String)paramMap.get("maxQuota"));
        Integer maxQuota=null;
        while(matcher.find()) {
            if(symbol.equalsIgnoreCase(matcher.group(1))) {
                maxQuota=new Integer(matcher.group(2));
                break;
            }
        }
        
        if(null==maxQuota) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message","未找到额度最大值!");
            return true;
        }
        
        matcher=QUOTA_REGEX.matcher((String)paramMap.get("minQuota"));
        Integer minQuota=null;
        while(matcher.find()) {
            if(symbol.equalsIgnoreCase(matcher.group(1))) {
                minQuota=new Integer(matcher.group(2));
                break;
            }
        }
        
        if(null==minQuota) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message","未找到额度最小值!");
            return true;
        }
        
        if(quota<minQuota || quota>maxQuota) {
            modelAndView.addObject("code", "1");
            modelAndView.addObject("message","借贷额度不在允许范围内!");
            return true;
        }
        
        return false;
    }
}