浏览代码

海外版辅材配件销售默认现金

FengChaoYu 6 月之前
父节点
当前提交
6bb84f516c

+ 1 - 1
mall-miniapp-service/src/main/java/com/gree/mall/miniapp/logic/material/WebsitSalesLogic.java

@@ -466,7 +466,7 @@ public class WebsitSalesLogic {
             detail.setGoodsSalesUnit(bean.getGoodsSalesUnit());
             detail.setGoodsStockUnit(bean.getGoodsStockUnit());
             detail.setGoodsSpecification(bean.getGoodsSpecification());
-            detail.setPayType(detail.getPayType());
+            detail.setPayType(PayTypeEnum.CASH.getKey());
             detail.setParentCategoryId(bean.getParentCategoryId());
             detail.setParentCategoryName(bean.getParentCategoryName());
             detail.setGoodsCategoryId(bean.getGoodsCategoryId());

+ 2 - 2
mall-miniapp-service/src/main/java/com/gree/mall/miniapp/logic/material/parts/WebsitPartsSalesOrderLogic.java

@@ -234,8 +234,8 @@ public class WebsitPartsSalesOrderLogic {
         DateTime curDate = DateUtil.date();
 
         if (Objects.isNull(partsSalesOrderBean.getPayType())) {
-            // 默认通联
-            partsSalesOrderBean.setPayType(PayTypeEnum.ALLINPAY.getKey());
+            // 默认现金
+            partsSalesOrderBean.setPayType(PayTypeEnum.CASH.getKey());
         }
         List<PartsSalesOrderItemBean> itemList = partsSalesOrderBean.getItemList();
         BigDecimal totalPrice = BigDecimal.ZERO;