From b66d5f1223bb8abb2d4771191c98e9abf3db9fc4 Mon Sep 17 00:00:00 2001 From: wuchunlei Date: Tue, 19 Aug 2025 09:18:21 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8E=B0=E5=94=AE:=E3=80=8A=E9=92=88=E7=81=B8?= =?UTF-8?q?=E5=85=AD=E7=BB=8F=E6=B3=95=E8=A6=81=E3=80=8B=20=E6=B8=AF?= =?UTF-8?q?=E6=BE=B3=E5=8F=B0=E8=A5=BF=E8=97=8F=E4=B8=8D=E5=8C=85=E9=82=AE?= =?UTF-8?q?=20=E5=85=B6=E4=BB=96=E5=9C=B0=E5=8C=BA=E5=8C=85=E9=82=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../peanut/modules/book/controller/BuyOrderController.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/com/peanut/modules/book/controller/BuyOrderController.java b/src/main/java/com/peanut/modules/book/controller/BuyOrderController.java index 81e0c5e1..6eb8ec91 100644 --- a/src/main/java/com/peanut/modules/book/controller/BuyOrderController.java +++ b/src/main/java/com/peanut/modules/book/controller/BuyOrderController.java @@ -595,6 +595,11 @@ public class BuyOrderController { for (ProductRequestVo product : products) { ShopProduct p = shopProductService.getById(product.getProductId()); if (p != null) { + //现售:《针灸六经法要》 港澳台西藏不包邮 其他地区包邮 + if (p.getProductId().equals(135)&&!regionCode.equals("710000")&&!regionCode.equals("810000") + &&!regionCode.equals("820000")&&!regionCode.startsWith("54")) { + continue; + } //包邮 if(p.getIsFreeMail()==0){ continue;