2023年6月26日 修复身份未正常拼接的问题

This commit is contained in:
bai 2023-06-26 22:41:48 +08:00
parent 72cbc34461
commit b292010a63
1 changed files with 4 additions and 4 deletions

View File

@ -171,8 +171,8 @@ public class TingKeStatisticsController {
KcTksfrzb currentData = tksfMap.get(x.getGh());
String currentZwmc = currentData.getZwmc();
String currentTkyq = currentData.getTkyq();
if(StringUtils.isNotBlank(currentTkyq)){
int tkyq = Integer.parseInt(currentTkyq);
if(StringUtils.isNotBlank(currentZwmc)){
int tkyq = Integer.parseInt(StringUtils.defaultString(currentTkyq,"0"));
int xtkyq = Integer.parseInt(StringUtils.defaultString(x.getTkyq(),"0"));
x.setZwmc(currentZwmc + "" + x.getZwmc());
if(tkyq > xtkyq){
@ -306,8 +306,8 @@ public class TingKeStatisticsController {
KcTksfrzb currentData = tksfMap.get(x.getGh());
String currentZwmc = currentData.getZwmc();
String currentTkyq = currentData.getTkyq();
if(StringUtils.isNotBlank(currentTkyq)){
int tkyq = Integer.parseInt(currentTkyq);
if(StringUtils.isNotBlank(currentZwmc)){
int tkyq = Integer.parseInt(StringUtils.defaultString(currentTkyq,"0"));
int xtkyq = Integer.parseInt(StringUtils.defaultString(x.getTkyq(),"0"));
x.setZwmc(currentZwmc + "" + x.getZwmc());
if(tkyq > xtkyq){