wupengfei преди 2 години
родител
ревизия
e912ace96b
променени са 3 файла, в които са добавени 40 реда и са изтрити 3 реда
  1. 3 2
      .idea/workspace.xml
  2. 25 0
      application/store/controller/CollectInfo.php
  3. 12 1
      application/store/view/collect_info/index_search.html

+ 3 - 2
.idea/workspace.xml

@@ -3,7 +3,8 @@
   <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/controller/Goods.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/store/controller/Goods.php" 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="2078000" />
+      <workItem from="1662078426211" duration="3388000" />
     </task>
     <servers />
   </component>

+ 25 - 0
application/store/controller/CollectInfo.php

@@ -147,4 +147,29 @@ class CollectInfo extends Controller
     }
 
 
+    public function export_excl()
+    {
+        $list = Db::name('store_order_info')
+            ->alias('i')
+            ->field('count(i.id) num,i.name,i.uid,u.phone,u.name user_name')
+            ->join('store_member u','u.id = i.mid','left')
+            ->group('i.uid')
+            ->order('num desc')
+            ->order('num desc')->select();
+        $export = [];
+        foreach ($list as $value){
+            $export[] = [
+                $value['name'],
+                $value['user_name'],
+                $value['phone'],
+                $value['num'],
+            ];
+        }
+        PHPExcelService::setExcelHeader(['藏品名称','会员名称','电话','数量'])
+            ->setExcelTile('收藏统计导出' . date('YmdHis', time()), '收藏'. time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
+            ->setExcelContent($export)
+            ->ExcelSave();
+    }
+
+
 }

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

@@ -26,15 +26,26 @@
     </form>
     <form action="" id="exportForm" method="post" style="display: inline;" >
         <button class="layui-btn layui-btn-primary layui-btn-sm" id="exportButton" type="submit" style="height: 32px;width: 73.69px;margin-left:3px; margin-bottom: 15px">
-            <i class="layui-icon">&#xe608;</i>导 出
+            <i class="layui-icon">&#xe608;</i>导 出【列表】
         </button>
     </form>
+
+    <form action="" id="exportForm2" method="post" style="display: inline;" >
+        <button class="layui-btn layui-btn-primary layui-btn-sm" id="exportExcl" type="submit" style="height: 32px;width: 73.69px;margin-left:3px; margin-bottom: 15px">
+            <i class="layui-icon">&#xe608;</i>导 出【统计】
+        </button>
+    </form>
+
     <script>
         form.render();
         laydate.render({range: true, elem: '[name="create_at"]'})
         $('#exportButton').click(function () {
             $("#exportForm").attr('action', '/store/collect_info/get_excl?' + $('#form').serialize())
         })
+
+        $('#exportExcl').click(function () {
+            $("#exportForm2").attr('action', '/store/collect_info/export_excl';
+        })
     </script>
     <script>form.render()</script>
 </fieldset>