Browse Source

fix:初始化余额抵扣

liujunchi 2 years ago
parent
commit
3a28457fee

+ 6 - 3
mec-mall/mall-portal/src/main/java/com/yonge/cooleshow/portal/service/impl/OmsPortalOrderServiceImpl.java

@@ -253,10 +253,13 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
             }
 
             //不使用积分
-            // for (OmsOrderItem orderItem : orderItemList) {
-            //     orderItem.setIntegrationAmount(new BigDecimal(0));
-            // }
+            for (OmsOrderItem orderItem : orderItemList) {
+                orderItem.setIntegrationAmount(new BigDecimal(0));
+            }
         } else {
+            for (OmsOrderItem orderItem : orderItemList) {
+                orderItem.setIntegrationAmount(new BigDecimal(0));
+            }
             //使用积分
             // BigDecimal totalAmount = calcTotalAmount(orderItemList);
             // BigDecimal integrationAmount = getUseIntegrationAmount(orderParam.getUseIntegration(), totalAmount,