This commit is contained in:
linfso 2024-08-16 21:37:18 +08:00
parent cfa4cf9757
commit 1ac01bc380
2 changed files with 2 additions and 2 deletions

View File

@ -128,6 +128,7 @@ public class EmisWaybillController extends EmisBaseController
billCode=WaybillHelper.formatQueryValue(billCode);
if(!StringUtils.isEmpty(billCode) ){
boolean isExists=emisBaseService.checkWaybillIsExists(billCode);
if(!isExists){
return AjaxResult.error("运单不存在");

View File

@ -273,8 +273,7 @@ public class WaybillHelper {
e.printStackTrace();
}
str = str.trim();
str=str.replaceAll("\\n", ",");
str=str.replaceAll("\\r", ",");
str=str.replaceAll("\\t", ",");