This commit is contained in:
linfso 2024-09-09 17:34:16 +08:00
parent a50179e424
commit bce68aefd0
2 changed files with 2 additions and 4 deletions

View File

@ -497,7 +497,6 @@ public class EmisBaseService {
}
}
// 根据城市获取
if( (sendAreaId==null || sendAreaId==0) && !StringUtils.isEmpty(city)) {
EmisRegion regionCity = getRegionByCode(city);
@ -522,7 +521,6 @@ public class EmisBaseService {
destination.setSiteCode(emisCountryArea.getSiteCode());
destination.setSiteName(emisCountryArea.getSiteName());
}
}
return destination;

View File

@ -1348,9 +1348,9 @@ public class EmisWaybillServiceImpl extends EmisBaseService implements IEmisWayb
throw new EmisBizError(EmisBizErrorType.PARAM_ERROR1,"收件地址不在服务区域");
}
// 寄件网点判断,若果没有寄件网点则使用南京分拨中心
// 寄件网点判断,若果没有寄件网点则使用总部
if(!StringUtils.isEmpty(emisWaybillSave.getSendSiteCode())) {
emisWaybillSave.setSendSiteCode("25000");
emisWaybillSave.setSendSiteCode("88888");
}