Browse Source

联合丽格

huangzhiguo 2 years ago
parent
commit
87dad7fba5

+ 2 - 2
src/main/java/com/caimei365/order/service/impl/CartClubServiceImpl.java

@@ -1304,7 +1304,7 @@ public class CartClubServiceImpl implements CartClubService {
             if (null != totalProductList) {
                 for (CartItemVo cart :totalProductList) {
                     if (7881 == cart.getProductId()) {
-                        if (cart.getNumber() >= 10) {
+                        if (cart.getNumber() >= 100) {
                             coldChain = 0.00d;
                         } else {
                             coldChain = 700.00d;
@@ -1999,7 +1999,7 @@ public class CartClubServiceImpl implements CartClubService {
         if (0 != organizeId) {
             double coldChain = 0.00d;
             if (7881 == cartDto.getProductId()) {
-                if (cartDto.getProductCount() >= 10) {
+                if (cartDto.getProductCount() >= 100) {
                     coldChain = 0.00d;
                 } else {
                     coldChain = 700.00d;

+ 1 - 1
src/main/java/com/caimei365/order/service/impl/SubmitServiceImpl.java

@@ -564,7 +564,7 @@ public class SubmitServiceImpl implements SubmitService {
                 // 联合丽格冷链费商品
                 if (1 == orderParamBo.getIsColdChain()) {
                     if (7881 == product.getProductId()) {
-                        if (productNum >= 10) {
+                        if (productNum >= 100) {
                             isColdChina.set(0.00d);
                         } else {
                             isColdChina.set(700.00d);