dever 3 年之前
父节点
当前提交
fe4deb0694
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      app/goods/lib/Set.php

+ 7 - 1
app/goods/lib/Set.php

@@ -123,7 +123,13 @@ class Set
                                         $children['min'] = $other_sku['min'];
                                     }
                                     if (isset($other_sku['total_num'])) {
-                                        $children['total'] = $other_sku['total_num'] - $other_sku['sell_num'];
+                                        if ($col == 'type_id') {
+                                            $children['total'] = $other_sku['total_num'];
+                                        } else {
+                                            $children['total'] = $other_sku['total_num'] - $other_sku['sell_num'];
+                                        }
+                                        
+                                        
                                     } else {
                                         $children['total'] = $other_sku['num'];
                                     }