wupengfei 2 лет назад
Родитель
Сommit
b5108efa5a

+ 2 - 1
.idea/workspace.xml

@@ -4,6 +4,7 @@
     <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/controller/CollectInfo.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/controller/CollectInfo.php" 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" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -149,7 +150,7 @@
       <workItem from="1661820079823" duration="2898000" />
       <workItem from="1661907611720" duration="5931000" />
       <workItem from="1661993135050" duration="4377000" />
-      <workItem from="1662078426211" duration="3629000" />
+      <workItem from="1662078426211" duration="3728000" />
     </task>
     <servers />
   </component>

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

@@ -149,12 +149,19 @@ class CollectInfo extends Controller
 
     public function export_excl()
     {
+        set_time_limit(0);
+        $goods_id = input('goods_id');;
+        $sel_where = [];
+        $sel_where[] = ['i.c_id','=',$goods_id];
+        $sel_where[] = ['i.resale_status','in','1,2'];
+        $sel_where[] = ['i.is_destruction','=',1];
+        $sel_where[] = ['i.status','<>',2];
         $list = Db::name('store_order_info')
             ->alias('i')
             ->field('count(i.id) num,i.name,i.mid,u.phone,u.name user_name')
             ->join('store_member u','u.id = i.mid','left')
             ->group('i.mid')
-            ->order('num desc')->select();
+            ->order('num desc')->where($sel_where)->select();
         $export = [];
         foreach ($list as $value){
             $export[] = [

+ 1 - 1
application/store/view/collect_info/index_search.html

@@ -44,7 +44,7 @@
         })
 
         $('#exportExcl').click(function () {
-            $("#exportForm2").attr('action', '/store/collect_info/export_excl')
+            $("#exportForm2").attr('action', '/store/collect_info/export_excl' + $('#form').serialize())
         })
     </script>
     <script>form.render()</script>