songxingwei 2 yıl önce
ebeveyn
işleme
6612eeee04

+ 70 - 1
application/user/controller/Member.php

@@ -222,6 +222,20 @@ class Member extends Controller
         $this->_form($this->table, 'grouping');
     }
 
+    /**
+     * 回收藏品
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function recycling(){
+        $this->title = '回收藏品';
+        $this->_form($this->table, 'recycling');
+    }
 
     protected function _form_filter(&$data){
 
@@ -346,13 +360,68 @@ class Member extends Controller
             $this->error('分组失败',url('/#/user/member/index'));
         }
 
+        if($this->request->isPost() && $this->request->action() == 'recycling')
+        {
+            $user = Db::name('store_member')->where('phone',$data['phone'])->find();
+            if (!$user) $this->error('手机号不存在');
+            //获取被回收的藏品
+            $ids = Db::name('store_order_info')
+                ->where('mid',$data['id'])
+                ->where('status','neq',2)
+                ->where('is_destruction',1)
+                ->column('id');
+            if (!$ids) $this->error('无可回收藏品');
+            $idss = implode(',',$ids);
+            $ins_data = [
+                'mid'=>$data['id'],
+                'to_mid'=>$user['id'],
+                'order_info_ids'=>$idss
+            ];
+            Db::startTrans();
+            try {
+                Db::name('store_order_info')->whereIn('id',$ids)->update(['mid'=>$user['id']]);
+                Db::name('store_order_info_recycling')->insert($ins_data);
+                Db::commit();
+                $this->success('回收成功');
+            }catch (\Exception $e){
+                Db::rollback();
+                $this->error('回收失败');
+            }
+        }
+
     }
 
+    /**
+     * 回收记录
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function recycling_log(){
+        $id=$this->request->get('id');
+        $info = Db::name('store_order_info_recycling')->where('mid',$id)->find();
+        if (isset($info) && $info['order_info_ids']){
+            $phone = Db::name('store_member')->where('id',$info['to_mid'])->value('phone');
+            $list = Db::name('store_order_info')->whereIn('id',$info['order_info_ids'])->field('name')->select();
+            foreach ($list as &$v){
+                $v['phone'] = $phone;
+                $v['create_at'] = $info['create_at'];
+            }
+        }else{
+            $list = [];
+        }
+        $this->assign('list',$list);
+        $this->fetch();
+    }
 
     public function shoucang(){
         $id=$this->request->get('id');
         $this->title = Db::name($this->table)->where('id',$id)->value('name').'--收藏明细';
-        $query = $this->_query('store_order_info')->where('mid',$id)->whereIn('status','1,3');
+        $query = $this->_query('store_order_info')->where('mid',$id)->where('status','neq',2);
         $query->dateBetween('create_at')->order('id desc')->page();
         $this->fetch();
     }

+ 3 - 0
application/user/view/member/index.html

@@ -47,6 +47,9 @@
                 <a class="layui-btn layui-btn-sm layui-btn-warm"  data-action="{:url('forbid')}" data-value="id#{$vo.id};status#0">禁 用</a>
                 {elseif auth("resume")}
                 <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('resume')}" data-value="id#{$vo.id};status#1">启 用</a>
+                <br />
+                <span class="layui-btn layui-btn-sm" style="margin-top: 10px"  data-modal='{:url("recycling")}?id={$vo.id}'>回收藏品</span>
+                <span class="layui-btn layui-btn-sm" style="margin-top: 10px"  data-modal='{:url("recycling_log")}?id={$vo.id}'>回收记录</span>
                 {/if}
 
 <!--                {if auth("store/member/remove")}-->