java110
2021-05-19 49e81b765077fdba50c7c679e0abdb5f188f8037
service-front/src/main/java/com/java110/front/smo/impl/FrontFeeServiceSMOImpl.java
old mode 100644 new mode 100755
@@ -131,6 +131,11 @@
        super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.PRIVILEGE_PROPERTY_FEE);
        JSONObject paramIn = JSONObject.parseObject(pd.getReqData());
        String remark = paramIn.getString("remark");
        if(!StringUtil.isEmpty(remark)){
            remark="-"+remark;
        }
        paramIn.put("remark", "现场收银台支付" + remark);
        String communityId = paramIn.getString("communityId");
        ResponseEntity responseEntity = super.getStoreInfo(pd, restTemplate);
        if (responseEntity.getStatusCode() != HttpStatus.OK) {
@@ -405,11 +410,11 @@
    private void validateLoadFeeDetail(IPageData pd) {
        Assert.jsonObjectHaveKey(pd.getReqData(), "communityId", "请求报文中未包含communityId节点");
        Assert.jsonObjectHaveKey(pd.getReqData(), "feeId", "请求报文中未包含roomId节点");
        //Assert.jsonObjectHaveKey(pd.getReqData(), "feeId", "请求报文中未包含feeId节点");
        JSONObject paramIn = JSONObject.parseObject(pd.getReqData());
        Assert.hasLength(paramIn.getString("communityId"), "小区ID不能为空");
        Assert.hasLength(paramIn.getString("feeId"), "费用ID不能为空");
        //Assert.hasLength(paramIn.getString("feeId"), "费用ID不能为空");
    }
    /**