shish 2 سال پیش
والد
کامیت
4eab304832
2فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 5 0
      biz-ghs/order/classes/OrderItemClass.php
  2. 1 0
      biz-ghs/product/classes/ProductClass.php

+ 5 - 0
biz-ghs/order/classes/OrderItemClass.php

@@ -362,6 +362,11 @@ class OrderItemClass extends BaseClass
             $w = bcmul($itemNum, $currentWeight, 2);
             $weight = bcadd($w, $weight, 2);
 
+            $limitBuy = $val['limitBuy'] ?? 0;
+            if ($limitBuy > 0) {
+
+            }
+
             if ($stockMayChange == true) {
                 //小单位花材开单暂时不扣库存
                 if (intval($itemNum) > 0) {

+ 1 - 0
biz-ghs/product/classes/ProductClass.php

@@ -1333,6 +1333,7 @@ class ProductClass extends BaseClass
             $tmp['sjId'] = $currentGhsProduct['sjId'] ?? 0;
             $tmp['shopId'] = $currentGhsProduct['shopId'] ?? 0;
             $tmp['mainId'] = $currentGhsProduct['mainId'] ?? 0;
+            $tmp['limitBuy'] = $currentGhsProduct['limitBuy'] ?? 0;
             $tmp['smallUnitPrice'] = $itemPrice;
             $tmp['classId'] = $classId;
             $tmp['belongCost'] = $currentGhsProduct['belongCost'] ?? 0;