|
@@ -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();
|
|
|
}
|