소스 검색

产品分类,只显示两层

moshaorui 3 주 전
부모
커밋
e26e6427f3
2개의 변경된 파일22개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Distributor/Controllers/DistProductCategoryController.php
  2. 21 0
      app/Distributor/Repositories/DistProductCategory.php

+ 1 - 1
app/Distributor/Controllers/DistProductCategoryController.php

@@ -77,7 +77,7 @@ class DistProductCategoryController extends AdminDistController
     {
         return Form::make(new DistProductCategory(), function (Form $form) {
             $form->select('parent_id', admin_trans_field('parent'))
-                ->options(DistProductCategory::selectMainOptions())
+                ->options(DistProductCategory::selectOptionsShowTow())
                 ->saving(function ($v) {
                     return (int) $v;
                 });

+ 21 - 0
app/Distributor/Repositories/DistProductCategory.php

@@ -80,6 +80,27 @@ class DistProductCategory extends EloquentRepository
         return $selectOptions;
     }
 
+    public static function selectOptionsShowTow(\Closure $closure = null)
+    {
+        if (!$closure) {
+            $closure = function ($query) {
+                $query = $query->where('dist_id', getDistributorId());
+                $query = $query->where('enabled', 1);
+                $query =  $query->orderBy('order', 'desc')->orderBy('id', 'desc');
+                return $query;
+            };
+        }
+
+        $selectOptions = Model::class::selectOptions($closure);
+        //只显示2层
+        foreach ($selectOptions as $key => $value) {
+            if (substr_count($value,' ') > 8) {
+                unset($selectOptions[$key]);
+            }
+        }
+        return $selectOptions;
+    }
+
 
     public static function getParameter($categoryId)
     {