diff --git a/bd-business/bd-business-sale/src/main/java/com/hzs/sale/wares/service/impl/BdWaresServiceImpl.java b/bd-business/bd-business-sale/src/main/java/com/hzs/sale/wares/service/impl/BdWaresServiceImpl.java index 8f4663a6..3d347753 100644 --- a/bd-business/bd-business-sale/src/main/java/com/hzs/sale/wares/service/impl/BdWaresServiceImpl.java +++ b/bd-business/bd-business-sale/src/main/java/com/hzs/sale/wares/service/impl/BdWaresServiceImpl.java @@ -1199,7 +1199,8 @@ public class BdWaresServiceImpl extends ServiceImpl impl if (StringUtils.isNotBlank(sArea.getLabel())) { RecommendSpecialAreaVo recommendSpecialAreaVo = new RecommendSpecialAreaVo(); - if (specialArea.equals(ESpecialArea.SPECIAL_REGISTER_AREA.getValue())) { + if (specialArea.equals(ESpecialArea.SPECIAL_REGISTER_AREA.getValue()) + || specialArea.equals(ESpecialArea.SPECIAL_UPGRADE_AREA.getValue())) { // 乐学注册权限判断 if (!isLexRegister) { continue; @@ -1371,7 +1372,8 @@ public class BdWaresServiceImpl extends ServiceImpl impl // 商品信息填充 WaresVo waresVo = new WaresVo(); - if (bdWares.getSpecialArea().equals(ESpecialArea.SPECIAL_REGISTER_AREA.getValue())) { + if (bdWares.getSpecialArea().equals(ESpecialArea.SPECIAL_REGISTER_AREA.getValue()) + || bdWares.getSpecialArea().equals(ESpecialArea.SPECIAL_UPGRADE_AREA.getValue())) { // 乐学注册权限判断 if (!isLexRegister) { continue;