This commit is contained in:
linfso 2024-06-01 15:13:05 +08:00
parent a3dd1311b1
commit 3ec99a17f0
2 changed files with 1 additions and 2 deletions

View File

@ -462,7 +462,6 @@ public class EmisBaseService {
return null;
}
boolean isSubBill=false;
// 判断是否是子单
String mainBillCode = "";

View File

@ -236,7 +236,7 @@ public class WaybillHelper {
public static String removeUnSeeChar(String str) {
if(!StringUtils.isEmpty(str)){
return str.replaceAll("\\p{C}", "");
return str.replaceAll("\\p{C}+", "");
}
return str;