wupengfei 2 tahun lalu
induk
melakukan
a9a55ce572

+ 4 - 3
.idea/workspace.xml

@@ -3,8 +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/user/controller/Member.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/user/controller/Member.php" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/user/view/member/index.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/user/view/member/index.html" 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" />
@@ -146,7 +146,8 @@
       <workItem from="1661476137493" duration="628000" />
       <workItem from="1661480993675" duration="3163000" />
       <workItem from="1661561991957" duration="3680000" />
-      <workItem from="1661734371076" duration="12855000" />
+      <workItem from="1661734371076" duration="15282000" />
+      <workItem from="1661820079823" duration="1470000" />
     </task>
     <servers />
   </component>

+ 59 - 11
application/store/controller/CollectInfo.php

@@ -1,5 +1,6 @@
 <?php
 namespace app\store\controller;
+use app\common\library\PHPExcelService;
 use library\Controller;
 use think\Db;
 use function Symfony\Component\String\s;
@@ -37,16 +38,17 @@ class CollectInfo extends Controller
         $tag = input('tag');
         $sel_where = [];
         $sel_where[] = ['i.c_id','=',$goods_id];
+        $sel_where[] = ['i.status','<>',2];
         $sel_where[] = ['i.resale_status','in','1,2'];
         $sel_where[] = ['i.is_destruction','=',1];
         if($phone) $sel_where[]= ['u.phone','=',$phone];
         if($hash) $sel_where[]= ['i.collectors_hash','=',$hash];
         if($tag) $sel_where[]= ['i.tag','=',$tag];
         $query = $this->_query($this->table)
-                ->alias('i')
-                ->field('i.id,i.tag,i.order_id,i.status,i.collectors_hash,i.type,i.from,i.to_mid,i.order_no,i.mid,i.c_id,i.name,i.cover,i.create_at,u.phone,u.name user_name,u.headimg')
-                ->join('store_member u','u.id = i.mid','left')
-                ->where($sel_where);
+            ->alias('i')
+            ->field('i.id,i.tag,i.order_id,i.status,i.collectors_hash,i.type,i.from,i.to_mid,i.order_no,i.mid,i.c_id,i.name,i.cover,i.create_at,u.phone,u.name user_name,u.headimg')
+            ->join('store_member u','u.id = i.mid','left')
+            ->where($sel_where);
         $query->order('i.id desc')->page();
 
     }
@@ -62,7 +64,7 @@ class CollectInfo extends Controller
      */
     protected function _index_page_filter(&$data)
     {
-       foreach ($data as &$v) {
+        foreach ($data as &$v) {
             $v['from_desc'] = '--';
         }
     }
@@ -82,12 +84,12 @@ class CollectInfo extends Controller
         $info  =Db::name('store_order_info')->where('id',$id)->find();
         $tag  =$info['tag'];
         $list  = Db::name('store_order_info')->alias('i')
-        ->field('i.id,i.tag,i.order_id,i.resale_status,i.status,i.collectors_hash,i.type,i.is_destruction,i.from,i.to_mid,i.order_no,i.mid,i.c_id,i.name,i.cover,i.create_at,u.phone,u.name user_name,u.headimg')
-        ->join('store_member u','u.id = i.mid','left')
-        ->where('tag',$tag)
-        ->where('c_id',$info['c_id'])
-        ->order('id desc')
-        ->select();
+            ->field('i.id,i.tag,i.order_id,i.resale_status,i.status,i.collectors_hash,i.type,i.is_destruction,i.from,i.to_mid,i.order_no,i.mid,i.c_id,i.name,i.cover,i.create_at,u.phone,u.name user_name,u.headimg')
+            ->join('store_member u','u.id = i.mid','left')
+            ->where('tag',$tag)
+            ->where('c_id',$info['c_id'])
+            ->order('id desc')
+            ->select();
         foreach ($list as &$v) {
             $v['coll_state'] = 1;
             if($v['resale_status'] == 3 || $v['is_destruction'] == 0 || in_array($v['status'],[2])) $v['coll_state'] = 0;
@@ -99,4 +101,50 @@ class CollectInfo extends Controller
 
 
 
+    /**
+     * 导出EXCL
+     * @remark 根据WHERE条件导出EXCL
+     * @param array $post 查询条件所需值
+     * @return array
+     */
+    public function get_excl()
+    {
+        set_time_limit(0);
+        $goods_id = input('goods_id');
+        $phone  = input('phone');
+        $hash = input('hash');
+        $tag = input('tag');
+        $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];
+        if($phone) $sel_where[]= ['u.phone','=',$phone];
+        if($hash) $sel_where[]= ['i.collectors_hash','=',$hash];
+        if($tag) $sel_where[]= ['i.tag','=',$tag];
+        $list = Db::name('store_order_info')
+            ->alias('i')
+            ->field('i.id,i.tag,i.order_id,i.status,i.collectors_hash,i.type,i.from,i.to_mid,i.order_no,i.mid,i.c_id,i.name,i.cover,i.create_at,u.phone,u.name user_name,u.headimg')
+            ->join('store_member u','u.id = i.mid','left')
+            ->where($sel_where)->order('i.id desc')->select();
+        $export = [];
+        foreach ($list as $value){
+            $export[] = [
+                $value['name'],
+                $value['user_name'],
+                $value['phone'],
+                $value['order_no'],
+                $value['collectors_hash'],
+                $value['tag'],
+                $value['create_at']
+            ];
+        }
+        PHPExcelService::setExcelHeader(['藏品名称','会员名称','电话','订单编号','收藏者hash','编号','时间'])
+            ->setExcelTile('收藏明细导出' . date('YmdHis', time()), '收藏'. time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
+            ->setExcelContent($export)
+            ->ExcelSave();
+
+    }
+
+
 }

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

@@ -1,6 +1,6 @@
 <fieldset>
     <legend>条件搜索</legend>
-    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">
+    <form id="form" class="layui-form layui-form-pane form-search" action="{:request()->url()}" style="display: inline"  onsubmit="return false" method="get" autocomplete="off">
         <div class="layui-form-item layui-inline">
             <label class="layui-form-label">用户名</label>
             <div class="layui-input-inline">
@@ -19,9 +19,22 @@
                 <input name="hash" value="{$Think.get.hash|default=''}" placeholder="请输入HASH" class="layui-input">
             </div>
         </div>
+        <input name="goods_id" value="{$Think.get.goods_id|default=''}" type="hidden"/>
         <div class="layui-form-item layui-inline">
             <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
         </div>
     </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>导 出
+        </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())
+        })
+    </script>
     <script>form.render()</script>
 </fieldset>