Showing
1 changed file
with
3 additions
and
3 deletions
@@ -213,7 +213,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | @@ -213,7 +213,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | ||
213 | }else{ | 213 | }else{ |
214 | if(changedAddress.getAddress().contains("*")){ | 214 | if(changedAddress.getAddress().contains("*")){ |
215 | logger.warn("dbAddressInfo_hidden is null ,uid {} ,orderCode {} , invalid address with * {}",uid,orderCode,changedAddress.getAddress()); | 215 | logger.warn("dbAddressInfo_hidden is null ,uid {} ,orderCode {} , invalid address with * {}",uid,orderCode,changedAddress.getAddress()); |
216 | - throw new UfoServiceException(400,"详细地址信息格式填写错误"); | 216 | + throw new UfoServiceException(400,"详细地址不支持特殊符号"); |
217 | } | 217 | } |
218 | } | 218 | } |
219 | //收货人没有变化 | 219 | //收货人没有变化 |
@@ -222,7 +222,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | @@ -222,7 +222,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | ||
222 | }else{ | 222 | }else{ |
223 | if(changedAddress.getConsignee().contains("*")){ | 223 | if(changedAddress.getConsignee().contains("*")){ |
224 | logger.warn("dbAddressInfo_hidden is null ,uid {} ,orderCode {} , invalid consignee with * {}",uid,orderCode,changedAddress.getConsignee()); | 224 | logger.warn("dbAddressInfo_hidden is null ,uid {} ,orderCode {} , invalid consignee with * {}",uid,orderCode,changedAddress.getConsignee()); |
225 | - throw new UfoServiceException(400,"收货人格式填写错误"); | 225 | + throw new UfoServiceException(400,"收货人不支持特殊符号"); |
226 | } | 226 | } |
227 | } | 227 | } |
228 | //手机号没有变化 | 228 | //手机号没有变化 |
@@ -231,7 +231,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | @@ -231,7 +231,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { | ||
231 | }else{ | 231 | }else{ |
232 | if(!UserInfoHiddenHelper.isPhone(changedAddress.getMobile())){ | 232 | if(!UserInfoHiddenHelper.isPhone(changedAddress.getMobile())){ |
233 | logger.warn("dbAddressInfo_hidden is null ,uid {} ,orderCode {} , invalid mobile {}",uid,orderCode,changedAddress.getMobile()); | 233 | logger.warn("dbAddressInfo_hidden is null ,uid {} ,orderCode {} , invalid mobile {}",uid,orderCode,changedAddress.getMobile()); |
234 | - throw new UfoServiceException(400,"手机号码格式填写错误"); | 234 | + throw new UfoServiceException(400,"请填写正确的手机号码"); |
235 | } | 235 | } |
236 | } | 236 | } |
237 | 237 |
-
Please register or login to post a comment