| | |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 回款报表 |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/report-forms/{version}", method = RequestMethod.POST) |
| | | @ApiVersion(1) |
| | | public String reportForms(HttpServletRequest request){ |
| | | try { |
| | | // 获取参数 |
| | | FieldSetEntity fse = null; |
| | | Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA); |
| | | if (bean != null) { |
| | | RequestParameterEntity reqp = (RequestParameterEntity) bean; |
| | | fse = reqp.getFormData(); |
| | | } |
| | | DataTableEntity dt = contractPaymentService.paymentCollectionData(); |
| | | return OK_List(dt); |
| | | } catch (BaseException e) { |
| | | e.printStackTrace(); |
| | | SpringMVCContextHolder.getSystemLogger().error(e); |
| | | return this.error(e); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | SpringMVCContextHolder.getSystemLogger().error(e); |
| | | return this.error(SystemCode.SYSTEM_FIND_CONTRACT_PAYMENT_FAIL.getValue(), |
| | | SystemCode.SYSTEM_FIND_CONTRACT_PAYMENT_FAIL.getText()); |
| | | } |
| | | } |
| | | |
| | | } |