浏览代码

邮编不存在的时候,提示错误消息

zdsong 3 周之前
父节点
当前提交
0e96ea3786

+ 7 - 1
farm-common-biz/src/main/java/jp/yamoto/farm/common/biz/service/impl/FarmCommonService.java

@@ -8,6 +8,8 @@ import jp.yamoto.farm.common.biz.mapper.MastAddressBaseMapper;
 import jp.yamoto.farm.common.biz.mapper.SysDictDataMapper;
 import jp.yamoto.farm.common.biz.service.IFarmCommonService;
 import jp.yamoto.farm.common.core.domain.entity.SysDictData;
+import jp.yamoto.farm.common.exception.ServiceException;
+import jp.yamoto.farm.common.utils.MessageUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
@@ -77,6 +79,10 @@ public class FarmCommonService implements IFarmCommonService {
      */
     public MastAddressEntity selectMastAddressByPostalCode(String postalCode) {
 
-        return addressBaseMapper.selectMastAddressByPostalCode(postalCode);
+        MastAddressEntity mastAddressEntity =addressBaseMapper.selectMastAddressByPostalCode(postalCode);
+        if (mastAddressEntity == null) {
+            throw new ServiceException(MessageUtils.message("EM010", MessageUtils.message("label.postalCode"), postalCode));
+        }
+        return mastAddressEntity;
     }
 }

+ 1 - 0
farm-crm/src/main/resources/i18n/messages.properties

@@ -71,6 +71,7 @@ EM006={0}\u304C\u4E0D\u6B63\u3067\u3059\u3002
 EM007=\u6697\u53F7\u5316\u30A8\u30E9\u30FC\u3002
 EM008=\u5FA9\u53F7\u30A8\u30E9\u30FC\u3002
 EM009=\u8A72\u5F53\u30C7\u30FC\u30BF\u306F\u5B58\u5728\u3057\u307E\u305B\u3093\u3002
+EM010=\u3053\u306E{0}{1}\u306F\u5B58\u5728\u3057\u307E\u305B\u3093\u3002
 
 I0001=\u6210\u529F\u3057\u307E\u3057\u305F\u3002
 I0002=\u5931\u6557\u3057\u307E\u3057\u305F\u3002

+ 1 - 0
farm-sankin/src/main/resources/i18n/messages.properties

@@ -57,6 +57,7 @@ EM006={0}\u304C\u4E0D\u6B63\u3067\u3059\u3002
 EM007=\u6697\u53F7\u5316\u30A8\u30E9\u30FC\u3002
 EM008=\u5FA9\u53F7\u30A8\u30E9\u30FC\u3002
 EM009=\u8A72\u5F53\u30C7\u30FC\u30BF\u306F\u5B58\u5728\u3057\u307E\u305B\u3093\u3002
+EM010=\u3053\u306E{0}{1}\u306F\u5B58\u5728\u3057\u307E\u305B\u3093\u3002
 
 I0001=\u6210\u529F\u3057\u307E\u3057\u305F\u3002
 I0002=\u5931\u6557\u3057\u307E\u3057\u305F\u3002