Kaynağa Gözat

特价一起去掉

shish 4 yıl önce
ebeveyn
işleme
706c7f5249
1 değiştirilmiş dosya ile 6 ekleme ve 1 silme
  1. 6 1
      biz-ghs/product/classes/ProductClass.php

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

@@ -1180,7 +1180,12 @@ class ProductClass extends BaseClass
     //花材上下架
     //花材上下架
     public static function changeStatus($productId, $status)
     public static function changeStatus($productId, $status)
     {
     {
-        return self::updateById($productId, ['status' => $status]);
+        $data = ['status' => $status];
+        if ($status == 2) {
+            //库存=0时下架,特价一起去掉
+            $data['discountPrice'] = 0;
+        }
+        return self::updateById($productId, $data);
     }
     }
 
 
     //获取itemId=>classId
     //获取itemId=>classId