From 4f71671deaed84b53508001643f1174c5c7418fd Mon Sep 17 00:00:00 2001 From: cabbage <281119120@qq.com> Date: Fri, 25 Apr 2025 17:25:07 +0800 Subject: [PATCH] =?UTF-8?q?##=20=E6=8A=A5=E5=8D=95=E3=80=81=E6=9C=8D?= =?UTF-8?q?=E5=8A=A1=E4=B8=AD=E5=BF=83=E6=89=8D=E8=83=BD=E7=9C=8B=E5=88=B0?= =?UTF-8?q?=E4=B9=90=E5=AD=A6=E5=8D=87=E7=BA=A7=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/hzs/sale/wares/service/impl/BdWaresServiceImpl.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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;