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 6fcbcea9a..d937578ad 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 @@ -376,7 +376,7 @@ public class PointServiceImpl implements PointService { LineInfoDO lineInfo = lineInfoDAO.getLineInfo(pointInfo.getLineId()); shopStageInfoDAO.batchUpdateShopStageStatus(pointInfo.getShopId(), Arrays.asList(ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_12, ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_20)); JSONObject templateParam = new JSONObject(); - templateParam.put("pointName", pointInfo.getPointName()); + templateParam.put("pointName", pointInfo.getAddress()); commonService.sendSms(lineInfo.getMobile(), SMSMsgEnum.SELECT_SUCCESS, templateParam); } @@ -752,7 +752,7 @@ public class PointServiceImpl implements PointService { selectStatus = ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_12; updateStatusList.add(ShopSubStageStatusEnum.SHOP_SUB_STAGE_STATUS_20); JSONObject templateParam = new JSONObject(); - templateParam.put("pointName", pointInfo.getPointName()); + templateParam.put("pointName", pointInfo.getAddress()); LineInfoDO lineInfo = lineInfoDAO.getLineInfo(pointInfo.getLineId()); commonService.sendSms(lineInfo.getMobile(), SMSMsgEnum.SELECT_SUCCESS, templateParam); }