diff --git a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/PointServiceImpl.java b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/PointServiceImpl.java index d64b01cf5..8b15ce1e4 100644 --- a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/PointServiceImpl.java +++ b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/PointServiceImpl.java @@ -418,7 +418,7 @@ public class PointServiceImpl implements PointService { ShopInfoDO updateShopInfo = new ShopInfoDO(); updateShopInfo.setId(pointInfo.getShopId()); updateShopInfo.setRegionId(pointInfo.getRegionId()); - updateShopInfo.setShopName(pointInfo.getPointName()); + //updateShopInfo.setShopName(pointInfo.getPointName()); shopInfoDAO.updateShopInfo(updateShopInfo); shopStageInfoDAO.batchUpdateShopStageStatus(pointInfo.getShopId(), Arrays.asList(ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_12, ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_20)); preparationService.selectSiteAndBuildStoreComplete(pointInfo.getShopId()); diff --git a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/SyncMainSysServerImpl.java b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/SyncMainSysServerImpl.java index fc9816404..49abae684 100644 --- a/coolstore-partner-service/src/main/java/com/cool/store/service/impl/SyncMainSysServerImpl.java +++ b/coolstore-partner-service/src/main/java/com/cool/store/service/impl/SyncMainSysServerImpl.java @@ -98,7 +98,7 @@ public class SyncMainSysServerImpl implements SyncMainSysServer { BigRegionDO byRegionId = bigRegionDAO.getByRegionId(shopInfo.getRegionId()); if (byRegionId != null) { requestBody.setStore_area(byRegionId.getStoreManageRegionId() == null - ? shopInfo.getRegionId().toString() : shopInfo.getManagerRegionId().toString()); + ? shopInfo.getRegionId().toString() : byRegionId.getStoreManageRegionId().toString()); } else { requestBody.setStore_area(shopInfo.getRegionId().toString()); }