wupengfei 2 éve
szülő
commit
955adf5c1b
2 módosított fájl, 5 hozzáadás és 3 törlés
  1. 2 2
      .idea/workspace.xml
  2. 3 1
      application/store/controller/CollectInfo.php

+ 2 - 2
.idea/workspace.xml

@@ -3,7 +3,7 @@
   <component name="ChangeListManager">
     <list default="true" id="a760c6e5-d38f-48d9-be27-0f7a4f48e29f" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/store/view/collect_info/index_search.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/view/collect_info/index_search.html" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/store/controller/CollectInfo.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/controller/CollectInfo.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -149,7 +149,7 @@
       <workItem from="1661820079823" duration="2898000" />
       <workItem from="1661907611720" duration="5931000" />
       <workItem from="1661993135050" duration="4377000" />
-      <workItem from="1662078426211" duration="3789000" />
+      <workItem from="1662078426211" duration="6797000" />
     </task>
     <servers />
   </component>

+ 3 - 1
application/store/controller/CollectInfo.php

@@ -156,14 +156,16 @@ class CollectInfo extends Controller
         $sel_where[] = ['i.resale_status','in','1,2'];
         $sel_where[] = ['i.is_destruction','=',1];
         $sel_where[] = ['i.status','<>',2];
+        $goods_name = Db::name('store_collection')->where('id',$goods_id)->value('name');
         $list = Db::name('store_order_info')
             ->alias('i')
-            ->field('count(i.id) num,i.name,i.mid,u.phone,u.name user_name')
+            ->field('count(i.id) num,i.mid,u.phone,u.name user_name')
             ->join('store_member u','u.id = i.mid','left')
             ->group('i.mid')
             ->order('num desc')->where($sel_where)->select();
         $export = [];
         foreach ($list as $value){
+            $value['name'] = $goods_name;
             $export[] = [
                 $value['name'],
                 $value['user_name'],