Просмотр исходного кода

上线商品信息导出优化

wufeng 2 лет назад
Родитель
Сommit
9f54d636d9
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      app/admin/controller/Report.php

+ 1 - 1
app/admin/controller/Report.php

@@ -69,7 +69,7 @@ class Report extends Base
             ->select()
             ->toArray();
 
-        $all_good_type = [1 => '定制商品', 2 => '常规商品'];
+        $all_good_type = [0 => '非定制商品', 1 => '定制商品'];
         $all_brand = Db::name('brand')->whereIn('id', array_column($rs_temp_good, '商品品牌'))->where('is_del', 0)->column('brand_name', 'id');
         $all_cat = Db::name('cat')
             ->alias('c3')