From d3767d594de66cb5f9d1294931acefea1866f783 Mon Sep 17 00:00:00 2001 From: renkang <8417338+k94314517@user.noreply.gitee.com> Date: 星期五, 24 一月 2025 18:24:25 +0800 Subject: [PATCH] 客户资料 巡检任务业务 --- server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractBillServiceImpl.java | 230 ++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 files changed, 194 insertions(+), 36 deletions(-) diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractBillServiceImpl.java b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractBillServiceImpl.java index e941edb..436e79a 100644 --- a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractBillServiceImpl.java +++ b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/YwContractBillServiceImpl.java @@ -28,6 +28,7 @@ import org.apache.commons.lang3.StringUtils; import org.checkerframework.checker.units.qual.C; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; import org.springframework.util.CollectionUtils; @@ -66,11 +67,17 @@ private YwContractMapper ywContractMapper; @Autowired + private YwAccountMapper ywAccountMapper; + + @Autowired private MemberMapper memberMapper; @Autowired private YwTempConfigMapper ywTempConfigMapper; + + @Value("${zip_file_path}") + private String zipFilePath; @Override public Integer create(YwContractBill ywContractBill) { @@ -682,12 +689,13 @@ .selectAs(YwContractDetail::getType,YwContractBill::getDetailType) .selectAs(YwContract::getZlPayType,YwContractBill::getZlPayType) .selectAs(YwContract::getWyPayType,YwContractBill::getWyPayType) - .select(" ( select ifnull(sum(r.rent_area),0) from yw_room y left join yw_contract_room yr on y.id = yr.room_id where yr.contract_id = t.contract_id and y.IS_INVESTMENT = 0 and yr.type = 0 ) " , YwContractBill::getTotalArea) + .select(" ( select ifnull(sum(y.rent_area),0) from yw_room y left join yw_contract_room yr on y.id = yr.room_id where yr.contract_id = t.contract_id and y.IS_INVESTMENT = 0 and yr.type = 0 ) " , YwContractBill::getTotalArea) .leftJoin(YwContract.class,YwContract::getId,YwContractBill::getContractId) .leftJoin(YwCustomer.class,YwCustomer::getId,YwContract::getRenterId) .leftJoin(YwContractDetail.class,YwContractDetail::getId,YwContractBill::getDetailId) .in(YwContractBill::getId,billIds) ); + this.dealRoomDetail(ywContractBillList); List<YwTempConfig> ywTempConfigList = ywTempConfigMapper.selectList(new QueryWrapper<YwTempConfig>().lambda().eq(YwTempConfig::getIsdeleted,Constants.ZERO)); if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isEmpty(ywTempConfigList)){ throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"鏈煡璇㈠埌妯℃澘閰嶇疆椤�,璇疯仈绯荤鐞嗗憳"); @@ -700,7 +708,7 @@ } List<File> fileList = new ArrayList<>(); for (YwContractBill ywContractBill:ywContractBillList) { - this.dealTempData(tempList,ywContractBill,loginUserInfo); + List<YwTempConfig> dealList = this.dealTempData(tempList,ywContractBill,loginUserInfo); String fileName = "鍌垂閫氱煡鍗昣" +ywContractBill.getCode() +"_" + System.currentTimeMillis()+".docx"; YwTempConfig ywTempConfig = new YwTempConfig(); if(Constants.equalsInteger(ywContractBill.getType(),Constants.ZERO)){ @@ -717,7 +725,7 @@ if(Objects.isNull(ywTempConfig)){ throw new BusinessException(ResponseStatus.DATA_EMPTY.getCode(),"妯℃澘淇℃伅寮傚父,璇疯仈绯荤鐞嗗憳"); } - String path = ExcelReplaceCommon.modifyWordTemplate(ywTempConfig.getUrl(),tempList,fileName); + String path = ExcelReplaceCommon.modifyWordTemplate(ywTempConfig.getUrl(),dealList,fileName,zipFilePath); File f = new File(path); if(f !=null && f.isFile()){ fileList.add(f); @@ -739,9 +747,13 @@ } - public void dealTempData(List<YwTempConfig> ywTempConfigList , YwContractBill ywContractBill, LoginUserInfo loginUserInfo){ + public List<YwTempConfig> dealTempData(List<YwTempConfig> ywTempConfigList , YwContractBill ywContractBill, LoginUserInfo loginUserInfo){ //鏌ヨ鏀舵敮璐﹀彿鏁版嵁 + YwAccount ywAccount = ywAccountMapper.selectOne(new QueryWrapper<YwAccount>().lambda().eq(YwAccount::getIsdeleted,Constants.ZERO).eq(YwAccount::getStatus,Constants.ZERO).eq(YwAccount::getCompanyId,ywContractBill.getCompanyId()) + .orderByDesc(YwAccount::getId) + .last(" limit 1 ")); + List<YwTempConfig> dealList = new ArrayList<>(); for (YwTempConfig y:ywTempConfigList) { if(y.getTitle().equals("${璐圭敤鍚嶇О}")&&Objects.nonNull(ywContractBill.getCostType())){ //璐圭敤绫诲瀷锛�0=绉熻祦璐癸紱1=鐗╀笟璐癸紱2=绉熻祦鎶奸噾锛�3=鐗╀笟鎶奸噾锛�4=姘寸數璐癸紱5=鏉傞」璐癸紱6=鍏朵粬; 7=淇濊瘉閲� @@ -798,15 +810,15 @@ y.setUrl("鍏冩瘡骞崇背澶�"); }else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.ONE)){ y.setUrl("鍏冩瘡骞崇背鏈�"); - }else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.ONE)){ + }else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.TWO)){ y.setUrl("鍏冩瘡骞崇背骞�"); - } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.ONE)){ + } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.THREE)){ y.setUrl("鍏冩瘡澶�"); - } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.ONE)){ + } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.FOUR)){ y.setUrl("鍏冩瘡鏈�"); - } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.ONE)){ + } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.FIVE)){ y.setUrl("鍏冩瘡骞�"); - } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.ONE)){ + } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.SIX)){ y.setUrl("鍏冩瘡鍦�"); } }else if(y.getTitle().equals("${搴旀敹鏃ユ湡}")&&Objects.nonNull(ywContractBill.getPlanPayDate())){ @@ -821,7 +833,7 @@ } }else if(y.getTitle().equals("${绉熷鍚嶇О}")&&StringUtils.isNotBlank(ywContractBill.getCustomerName())){ y.setUrl(ywContractBill.getCustomerName()); - }else if(y.getTitle().equals("${妤煎畤/妤煎眰/鎴挎簮}")){ + }else if(y.getTitle().equals("${鎴块棿淇℃伅}")){ if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(ywContractBill.getYwContractRoomList())){ StringBuilder roomPathName = new StringBuilder(); for (YwContractRoom ywContractRoom:ywContractBill.getYwContractRoomList()) { @@ -846,21 +858,37 @@ }else if(y.getTitle().equals("${绉熻祦闈㈢Н}")&&Objects.nonNull(ywContractBill.getTotalArea())){ y.setUrl(ywContractBill.getTotalArea().toString()); }else if(y.getTitle().equals("${鎵�灞炲叕鍙歌处鎴峰悕绉皚")){ - y.setUrl("鎵�灞炲叕鍙歌处鎴峰悕绉�"); + if(Objects.nonNull(ywAccount)&&StringUtils.isNotBlank(ywAccount.getName())){ + y.setUrl(ywAccount.getName()); + }else{ + y.setUrl("-"); + } }else if(y.getTitle().equals("${鎵�灞炲叕鍙搁摱琛岃处鍙穧")){ y.setUrl("鎵�灞炲叕鍙搁摱琛岃处鍙�"); + if(Objects.nonNull(ywAccount)&&StringUtils.isNotBlank(ywAccount.getName())){ + y.setUrl(ywAccount.getName()); + }else{ + y.setUrl("-"); + } }else if(y.getTitle().equals("${鎵�灞炲叕鍙稿紑鎴烽摱琛寎")){ - y.setUrl("鎵�灞炲叕鍙稿紑鎴烽摱琛�"); + if(Objects.nonNull(ywAccount)&&StringUtils.isNotBlank(ywAccount.getBankNo())){ + y.setUrl(ywAccount.getBankNo()); + }else{ + y.setUrl("-"); + } }else if(y.getTitle().equals("${閫氱煡鍗曠敓鎴愭棩鏈焳")){ y.setUrl(DateUtil.formatDate(new Date(),"yyyy-MM-dd")); - }else if(y.getTitle().equals("${褰撳墠鐢ㄦ埛濮撳悕}")){ + }else if(y.getTitle().equals("${鍒惰〃浜哄悕绉皚")){ y.setUrl(loginUserInfo.getRealname()); } + dealList.add(y); } + return dealList; } - public void sendSmsEmail(List<YwSmsEmailBillCallDTO> ywSmsEmailBillCallDTOList,LoginUserInfo loginUserInfo){ + @Override + public void sendSmsEmail(List<YwSmsEmailBillCallDTO> ywSmsEmailBillCallDTOList,SmsEmailServiceImpl smsEmailService,LoginUserInfo loginUserInfo){ if(CollectionUtils.isEmpty(ywSmsEmailBillCallDTOList)){ throw new BusinessException(ResponseStatus.BAD_REQUEST); } @@ -874,12 +902,15 @@ if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isEmpty(tempList)){ throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"鏈煡璇㈠埌妯℃澘閰嶇疆椤�,璇疯仈绯荤鐞嗗憳"); } + Optional<YwTempConfig> smsTempConfigOptional = ywTempConfigList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.ZERO)).findAny(); + Optional<YwTempConfig> emailTempConfigOptional = ywTempConfigList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.ONE)).findAny(); for (YwSmsEmailBillCallDTO ywSmsEmailBillCallDTO:ywSmsEmailBillCallDTOList) { if(Objects.isNull(ywSmsEmailBillCallDTO) - || Objects.isNull(ywSmsEmailBillCallDTO.getBillId()) + || Objects.isNull(ywSmsEmailBillCallDTO.getBillId()) || Objects.isNull(ywSmsEmailBillCallDTO.getUserId()) - ||Objects.isNull(ywSmsEmailBillCallDTO.getSendEmail()) - || Objects.isNull(ywSmsEmailBillCallDTO.getSendSms())){ + ||Objects.isNull(ywSmsEmailBillCallDTO.getSendEmail()) + || Objects.isNull(ywSmsEmailBillCallDTO.getSendSms()) + ){ throw new BusinessException(ResponseStatus.BAD_REQUEST); } @@ -906,29 +937,156 @@ if(Objects.isNull(member)){ throw new BusinessException(ResponseStatus.DATA_EMPTY.getCode(),"瀛樺湪鏈煡璇㈠埌鐨勪汉鍛樹俊鎭�"); } - - + if(Objects.nonNull(member)){ + if(Constants.equalsInteger(ywSmsEmailBillCallDTO.getSendSms(),Constants.ONE) && StringUtils.isNotBlank(member.getPhone()) + && smsTempConfigOptional.isPresent()){ + String content = this.dealTempSmsEmailData(smsTempConfigOptional.get().getTitle(),tempList,ywContractBill,loginUserInfo); + smsEmailService.sendBillSms(content,member.getPhone(),ywContractBill.getId()); + } + if(Constants.equalsInteger(ywSmsEmailBillCallDTO.getSendEmail(),Constants.ONE) && StringUtils.isNotBlank(member.getEmail()) + && emailTempConfigOptional.isPresent()){ + String content = this.dealTempSmsEmailData(emailTempConfigOptional.get().getTitle(),tempList,ywContractBill,loginUserInfo); + smsEmailService.sendEmail(content,member.getEmail(),ywContractBill.getId()); + } + } } + + } - for (YwSmsEmailBillCallDTO ywSmsEmailBillCallDTO:ywSmsEmailBillCallDTOList) { - - - - - + public String dealTempSmsEmailData(String tempStr,List<YwTempConfig> ywTempConfigList , YwContractBill ywContractBill, LoginUserInfo loginUserInfo){ + //鏌ヨ鏀舵敮璐﹀彿鏁版嵁 + YwAccount ywAccount = ywAccountMapper.selectOne(new QueryWrapper<YwAccount>().lambda().eq(YwAccount::getIsdeleted,Constants.ZERO).eq(YwAccount::getStatus,Constants.ZERO).eq(YwAccount::getCompanyId,ywContractBill.getCompanyId()) + .orderByDesc(YwAccount::getId) + .last(" limit 1 ")); + for (YwTempConfig y:ywTempConfigList) { + if(y.getTitle().equals("${璐圭敤鍚嶇О}")&&Objects.nonNull(ywContractBill.getCostType())){ + //璐圭敤绫诲瀷锛�0=绉熻祦璐癸紱1=鐗╀笟璐癸紱2=绉熻祦鎶奸噾锛�3=鐗╀笟鎶奸噾锛�4=姘寸數璐癸紱5=鏉傞」璐癸紱6=鍏朵粬; 7=淇濊瘉閲� + if(Constants.equalsInteger(ywContractBill.getCostType(),Constants.ZERO)){ + tempStr.replace("${璐圭敤鍚嶇О}","绉熻祦璐�"); + }else if(Constants.equalsInteger(ywContractBill.getCostType(),Constants.ONE)){ + tempStr.replace("${璐圭敤鍚嶇О}","鐗╀笟璐�"); + }else if(Constants.equalsInteger(ywContractBill.getCostType(),Constants.TWO)){ + tempStr.replace("${璐圭敤鍚嶇О}","绉熻祦鎶奸噾"); + }else if(Constants.equalsInteger(ywContractBill.getCostType(),Constants.THREE)){ + tempStr.replace("${璐圭敤鍚嶇О}","鐗╀笟鎶奸噾"); + }else if(Constants.equalsInteger(ywContractBill.getCostType(),Constants.FOUR)){ + tempStr.replace("${璐圭敤鍚嶇О}","姘寸數璐�"); + }else if(Constants.equalsInteger(ywContractBill.getCostType(),Constants.FIVE)){ + tempStr.replace("${璐圭敤鍚嶇О}","鏉傞」璐�"); + }else if(Constants.equalsInteger(ywContractBill.getCostType(),Constants.SIX)){ + tempStr.replace("${璐圭敤鍚嶇О}","鍏朵粬"); + }else if(Constants.equalsInteger(ywContractBill.getCostType(),Constants.SEVEN)){ + tempStr.replace("${璐圭敤鍚嶇О}","淇濊瘉閲�"); + } + }else if(y.getTitle().equals("${璁¤垂鍛ㄦ湡}")&&Objects.nonNull(ywContractBill.getDetailType())){ + if(Constants.equalsInteger(ywContractBill.getDetailType(),Constants.ZERO)){ + //绉熻祦鏀粯鏂瑰紡 0=涓�娆℃�т粯娆撅紱1=姣忎笁涓湀涓�浠橈紱2=鍏釜鏈堜竴浠橈紱3=涓�骞翠竴浠� + if(Objects.nonNull(ywContractBill.getZlPayType())){ + if(Constants.equalsInteger(ywContractBill.getZlPayType(),Constants.ZERO)){ + tempStr.replace("${璁¤垂鍛ㄦ湡}","涓�娆℃�т粯娆�"); + }else if(Constants.equalsInteger(ywContractBill.getZlPayType(),Constants.ONE)){ + tempStr.replace("${璁¤垂鍛ㄦ湡}","姣忎笁涓湀涓�浠�"); + }else if(Constants.equalsInteger(ywContractBill.getZlPayType(),Constants.TWO)){ + tempStr.replace("${璁¤垂鍛ㄦ湡}","鍏釜鏈堜竴浠�"); + }else if(Constants.equalsInteger(ywContractBill.getZlPayType(),Constants.THREE)){ + tempStr.replace("${璁¤垂鍛ㄦ湡}","涓�骞翠竴浠�"); + } + } + }else{ + //鐗╀笟鏀粯鏂瑰紡 0=涓�娆℃�т粯娆撅紱1=姣忎笁涓湀涓�浠橈紱2=鍏釜鏈堜竴浠橈紱3=涓�骞翠竴浠� + if(Objects.nonNull(ywContractBill.getWyPayType())){ + if(Constants.equalsInteger(ywContractBill.getWyPayType(),Constants.ZERO)){ + tempStr.replace("${璁¤垂鍛ㄦ湡}","涓�娆℃�т粯娆�"); + }else if(Constants.equalsInteger(ywContractBill.getWyPayType(),Constants.ONE)){ + tempStr.replace("${璁¤垂鍛ㄦ湡}","姣忎笁涓湀涓�浠�"); + }else if(Constants.equalsInteger(ywContractBill.getWyPayType(),Constants.TWO)){ + tempStr.replace("${璁¤垂鍛ㄦ湡}","鍏釜鏈堜竴浠�"); + }else if(Constants.equalsInteger(ywContractBill.getWyPayType(),Constants.THREE)){ + tempStr.replace("${璁¤垂鍛ㄦ湡}","涓�骞翠竴浠�"); + } + } + } + }else if(y.getTitle().equals("${鍗曚环}")&&Objects.nonNull(ywContractBill.getPrice())){ + tempStr.replace("${鍗曚环}",ywContractBill.getPrice().toString()); + }else if(y.getTitle().equals("${鍗曚綅}")&&Objects.nonNull(ywContractBill.getCircleType())){ + //浠樻鍛ㄦ湡绫诲瀷 0=鍏冩瘡骞崇背澶�;1=鍏冩瘡骞崇背鏈�;2=鍏冩瘡骞崇背骞�;3=鍏冩瘡澶�;4=鍏冩瘡鏈�;5=鍏冩瘡骞�;6=鍏冩瘡鍦�; + if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.ZERO)){ + tempStr.replace("${鍗曚綅}","鍏冩瘡骞崇背澶�"); + }else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.ONE)){ + tempStr.replace("${鍗曚綅}","鍏冩瘡骞崇背鏈�"); + }else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.TWO)){ + tempStr.replace("${鍗曚綅}","鍏冩瘡骞崇背骞�"); + } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.THREE)){ + tempStr.replace("${鍗曚綅}","鍏冩瘡澶�"); + } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.FOUR)){ + tempStr.replace("${鍗曚綅}","鍏冩瘡鏈�"); + } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.FIVE)){ + tempStr.replace("${鍗曚綅}","鍏冩瘡骞�"); + } else if(Constants.equalsInteger(ywContractBill.getCircleType(),Constants.SIX)){ + tempStr.replace("${鍗曚綅}","鍏冩瘡鍦�"); + } + }else if(y.getTitle().equals("${搴旀敹鏃ユ湡}")&&Objects.nonNull(ywContractBill.getPlanPayDate())){ + tempStr.replace("${搴旀敹鏃ユ湡}",DateUtil.formatDate(ywContractBill.getPlanPayDate(),"yyyy-MM-dd")); + }else if(y.getTitle().equals("${搴旀敹閲戦}")&&Objects.nonNull(ywContractBill.getReceivableFee())){ + tempStr.replace("${搴旀敹閲戦}",ywContractBill.getReceivableFee().toString()); + }else if(y.getTitle().equals("${璐﹀崟澶囨敞}")){ + if(StringUtils.isNotBlank(ywContractBill.getRemark())){ + tempStr.replace("${璐﹀崟澶囨敞}",ywContractBill.getRemark()); + }else{ + tempStr.replace("${璐﹀崟澶囨敞}",""); + } + }else if(y.getTitle().equals("${绉熷鍚嶇О}")&&StringUtils.isNotBlank(ywContractBill.getCustomerName())){ + tempStr.replace("${绉熷鍚嶇О}",ywContractBill.getCustomerName()); + }else if(y.getTitle().equals("${鎴块棿淇℃伅}")){ + if(com.github.xiaoymin.knife4j.core.util.CollectionUtils.isNotEmpty(ywContractBill.getYwContractRoomList())){ + StringBuilder roomPathName = new StringBuilder(); + for (YwContractRoom ywContractRoom:ywContractBill.getYwContractRoomList()) { + if(StringUtils.isNotBlank(ywContractRoom.getProjectName())){ + roomPathName.append(ywContractRoom.getProjectName()+"/"); + } + if(StringUtils.isNotBlank(ywContractRoom.getBuildingName())){ + roomPathName.append(ywContractRoom.getBuildingName()+"/"); + } + if(StringUtils.isNotBlank(ywContractRoom.getFloorName())){ + roomPathName.append(ywContractRoom.getFloorName()+"/"); + } + if(StringUtils.isNotBlank(ywContractRoom.getRoomName())){ + roomPathName.append(ywContractRoom.getRoomName()); + } + if(StringUtils.isNotBlank(roomPathName)){ + roomPathName.append(";"); + } + } + tempStr.replace("${鎴块棿淇℃伅}",roomPathName.toString()); + } + }else if(y.getTitle().equals("${绉熻祦闈㈢Н}")&&Objects.nonNull(ywContractBill.getTotalArea())){ + tempStr.replace("${绉熻祦闈㈢Н}",ywContractBill.getTotalArea().toString()); + }else if(y.getTitle().equals("${鎵�灞炲叕鍙歌处鎴峰悕绉皚")){ + if(Objects.nonNull(ywAccount)&&StringUtils.isNotBlank(ywAccount.getName())){ + tempStr.replace("${鎵�灞炲叕鍙歌处鎴峰悕绉皚",ywAccount.getName()); + }else{ + tempStr.replace("${鎵�灞炲叕鍙歌处鎴峰悕绉皚","-"); + } + }else if(y.getTitle().equals("${鎵�灞炲叕鍙搁摱琛岃处鍙穧")){ + if(Objects.nonNull(ywAccount)&&StringUtils.isNotBlank(ywAccount.getName())){ + tempStr.replace("${鎵�灞炲叕鍙搁摱琛岃处鍙穧",ywAccount.getName()); + }else{ + tempStr.replace("${鎵�灞炲叕鍙搁摱琛岃处鍙穧","-"); + } + }else if(y.getTitle().equals("${鎵�灞炲叕鍙稿紑鎴烽摱琛寎")){ + if(Objects.nonNull(ywAccount)&&StringUtils.isNotBlank(ywAccount.getBankNo())){ + tempStr.replace("${鎵�灞炲叕鍙稿紑鎴烽摱琛寎",ywAccount.getBankNo()); + }else{ + tempStr.replace("${鎵�灞炲叕鍙稿紑鎴烽摱琛寎","-"); + } + }else if(y.getTitle().equals("${閫氱煡鍗曠敓鎴愭棩鏈焳")){ + tempStr.replace("${閫氱煡鍗曠敓鎴愭棩鏈焳",DateUtil.formatDate(new Date(),"yyyy-MM-dd")); + }else if(y.getTitle().equals("${鍒惰〃浜哄悕绉皚")){ + tempStr.replace("${鍒惰〃浜哄悕绉皚",loginUserInfo.getRealname()); + } } - - - - - - - - - - - + return tempStr; } -- Gitblit v1.9.3