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

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

@@ -55,7 +55,12 @@ class Set
                                 $result[$i]['min'] = $other['min'];
                                 $result[$i]['min'] = $other['min'];
                             }
                             }
                             if (isset($other['total_num'])) {
                             if (isset($other['total_num'])) {
-                                $result[$i]['total'] = $other['total_num'] - $other['sell_num'];
+                                if ($col == 'type_id') {
+                                    $result[$i]['total'] = $other['total_num'];
+                                } else {
+                                    $result[$i]['total'] = $other['total_num'] - $other['sell_num'];
+                                }
+                                
                             } else {
                             } else {
                                 $result[$i]['total'] = $other['num'];
                                 $result[$i]['total'] = $other['num'];
                             }
                             }