|
@@ -104,6 +104,11 @@ public class ZwywJgBnServiceImpl implements IZwywJgBnService
|
|
|
if(StringUtils.isNotBlank(bnOne.getCns())){
|
|
|
String returnStr = "";
|
|
|
String[] str = bnOne.getCns().split(",");
|
|
|
+ System.out.println("bnOne.getCns()" + bnOne.getCns());
|
|
|
+ System.out.println("strstr" + str);
|
|
|
+ for (int i = 0; i < str.length; i++) {
|
|
|
+ System.out.println("sssssss" + str[i]);
|
|
|
+ }
|
|
|
returnStr = getSplitPicPath(bnOne, returnStr, str);
|
|
|
bnOne.setCns(returnStr);
|
|
|
}
|
|
@@ -134,7 +139,11 @@ public class ZwywJgBnServiceImpl implements IZwywJgBnService
|
|
|
if("1".equals(bnOne.getImportdata())){
|
|
|
returnStr += s.split("/")[3] + " ";
|
|
|
}else{
|
|
|
- returnStr += s.split("/")[5] + " ";
|
|
|
+ if(StringUtils.equals(s.split("/")[2],"20230301")){
|
|
|
+ returnStr += s.split("/")[3] + " ";
|
|
|
+ }else{
|
|
|
+ returnStr += s.split("/")[5] + " ";
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|