Member.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\user\controller;
  15. use app\common\library\PHPExcelService;
  16. use library\Controller;
  17. use think\Db;
  18. use function GuzzleHttp\Psr7\build_query;
  19. /**
  20. * 会员信息管理
  21. * Class Member
  22. * @package app\user\controller
  23. */
  24. class Member extends Controller
  25. {
  26. /**
  27. * 绑定数据表
  28. * @var string
  29. */
  30. protected $table = 'StoreMember';
  31. /**
  32. * 会员信息管理
  33. * @auth true
  34. * @menu true
  35. * @throws \think\Exception
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @throws \think\exception\DbException
  39. * @throws \think\exception\PDOException
  40. */
  41. public function index()
  42. {
  43. $this->title = '会员信息管理';
  44. $coll_id = $this->request->get('coll_id');
  45. $query = $this->_query($this->table)->where('is_deleted',0)->like('name,phone')->equal('status,vip,group,is_open_official_DDC');
  46. $query->dateBetween('create_at')
  47. ->when($coll_id,function ($query) use ($coll_id){
  48. $mids = Db::name('store_order_info')->where('c_id',$coll_id)->where('status','neq',2)->where('is_destruction',1)->column('mid');
  49. $query->whereIn('id',$mids);
  50. })
  51. ->order('id desc')->page();
  52. }
  53. /**
  54. * 数据列表处理
  55. * @auth true
  56. * @menu true
  57. * @param array $data
  58. * @throws \think\db\exception\DataNotFoundException
  59. * @throws \think\db\exception\ModelNotFoundException
  60. * @throws \think\exception\DbException
  61. */
  62. protected function _index_page_filter(&$data)
  63. {
  64. foreach ($data as $k=>&$v){
  65. $v['group_name'] = Db::name('store_member_group')->where('id',$v['group'])->value('name');
  66. $v['invite_count'] = Db::name($this->table)->where('pid',$v['id'])->count();
  67. }
  68. $this->group_list = Db::name('store_member_group')->select();
  69. $this->group_list = array_merge([['id'=>'','name'=>'全部会员']],$this->group_list);
  70. //藏品列表
  71. $this->coll_list = Db::name('store_collection')->where('is_deleted',0)->field('id,name')->select();
  72. $this->coll_list = array_merge([['id'=>'','name'=>'全部']],$this->coll_list);
  73. }
  74. //删除货主
  75. public function remove()
  76. {
  77. $this->_save($this->table, ['is_deleted' => '1']);
  78. }
  79. //禁用货主
  80. public function forbid()
  81. {
  82. $this->_save($this->table, ['status' => '0']);
  83. }
  84. //启用货主
  85. public function resume()
  86. {
  87. $this->_save($this->table, ['status' => '1']);
  88. }
  89. /**
  90. * 编辑抢购卡
  91. * @auth true
  92. * @menu true
  93. * @throws \think\Exception
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\ModelNotFoundException
  96. * @throws \think\exception\DbException
  97. * @throws \think\exception\PDOException
  98. */
  99. public function snap_card(){
  100. $this->title = '抢购卡';
  101. $this->_form($this->table, 'snap_card');
  102. }
  103. /**
  104. * 编辑积分
  105. * @auth true
  106. * @menu true
  107. * @throws \think\Exception
  108. * @throws \think\db\exception\DataNotFoundException
  109. * @throws \think\db\exception\ModelNotFoundException
  110. * @throws \think\exception\DbException
  111. * @throws \think\exception\PDOException
  112. */
  113. public function integral(){
  114. $this->title = '积分变更';
  115. $this->_form($this->table, 'integral');
  116. }
  117. /**
  118. * 编辑转赠次数
  119. * @auth true
  120. * @menu true
  121. * @throws \think\Exception
  122. * @throws \think\db\exception\DataNotFoundException
  123. * @throws \think\db\exception\ModelNotFoundException
  124. * @throws \think\exception\DbException
  125. * @throws \think\exception\PDOException
  126. */
  127. public function examples_number(){
  128. $this->title = '转赠次数';
  129. $this->_form($this->table, 'examples_number');
  130. }
  131. /**
  132. * 编辑vip
  133. * @auth true
  134. * @menu true
  135. * @throws \think\Exception
  136. * @throws \think\db\exception\DataNotFoundException
  137. * @throws \think\db\exception\ModelNotFoundException
  138. * @throws \think\exception\DbException
  139. * @throws \think\exception\PDOException
  140. */
  141. public function vip(){
  142. $this->title = 'vip';
  143. $this->_form($this->table, 'vip');
  144. }
  145. /**
  146. * 编辑详情
  147. * @auth true
  148. * @menu true
  149. * @throws \think\Exception
  150. * @throws \think\db\exception\DataNotFoundException
  151. * @throws \think\db\exception\ModelNotFoundException
  152. * @throws \think\exception\DbException
  153. * @throws \think\exception\PDOException
  154. */
  155. public function info(){
  156. $this->title = '详情';
  157. $this->_form($this->table, 'info');
  158. }
  159. /**
  160. * 编辑分组
  161. * @auth true
  162. * @menu true
  163. * @throws \think\Exception
  164. * @throws \think\db\exception\DataNotFoundException
  165. * @throws \think\db\exception\ModelNotFoundException
  166. * @throws \think\exception\DbException
  167. * @throws \think\exception\PDOException
  168. */
  169. public function save_group(){
  170. $this->title = '编辑分组';
  171. $this->group_list = Db::name('store_member_group')->select();
  172. $this->_form($this->table, 'save_group');
  173. }
  174. /**
  175. * 一键抢购卡
  176. * @auth true
  177. * @menu true
  178. * @throws \think\Exception
  179. * @throws \think\db\exception\DataNotFoundException
  180. * @throws \think\db\exception\ModelNotFoundException
  181. * @throws \think\exception\DbException
  182. * @throws \think\exception\PDOException
  183. */
  184. public function snap_cards(){
  185. $this->title = '抢购卡';
  186. $this->group_list = Db::name('store_member_group')->select();
  187. $this->_form($this->table, 'snap_cards');
  188. }
  189. /**
  190. * 一键分组
  191. * @auth true
  192. * @menu true
  193. * @throws \think\Exception
  194. * @throws \think\db\exception\DataNotFoundException
  195. * @throws \think\db\exception\ModelNotFoundException
  196. * @throws \think\exception\DbException
  197. * @throws \think\exception\PDOException
  198. */
  199. public function grouping(){
  200. $this->title = '分组';
  201. $list = Db::name('store_member')
  202. ->where('is_deleted',0)
  203. ->where('group',0)
  204. ->field('id,name,phone')
  205. ->select();
  206. $group_list = Db::name('store_member_group')->select();
  207. $this->assign('list',$list);
  208. $this->assign('group_list',$group_list);
  209. $this->_form($this->table, 'grouping');
  210. }
  211. protected function _form_filter(&$data){
  212. if($this->request->isPost() && $this->request->action() == 'snap_card')
  213. {
  214. if($data['id']) {
  215. if($data['int_type'] == 4) {
  216. $result = memberMoneyChange($data['snap_card'],2,$data['id'],'后台人工调整',1);
  217. }else{
  218. $result = memberMoneyChange($data['snap_card'],2,$data['id'],'后台人工调整',0);
  219. }
  220. if ($result){
  221. setMembercard($data['id']);
  222. setMemberInfoHash($data['id']);
  223. $this->success('调整成功');
  224. }
  225. }
  226. }
  227. if($this->request->isPost() && $this->request->action() == 'snap_cards')
  228. {
  229. if (!isset($data['group']) || $data['group']==''){
  230. $this->error('请选择分组');
  231. }
  232. $user = Db::name('store_member')->where('is_deleted',0)->where('group',$data['group'])->select();
  233. foreach ($user as &$v){
  234. $result = memberMoneyChange($data['snap_card'],2,$v['id'],'后台人工调整',1);
  235. if ($result){
  236. setMembercard($v['id']);
  237. setMemberInfoHash($v['id']);
  238. }
  239. }
  240. $this->success('调整成功');
  241. }
  242. if($this->request->isPost() && $this->request->action() == 'integral')
  243. {
  244. if($data['id']) {
  245. if($data['int_type'] == 4) {
  246. $result = memberMoneyChange($data['integral'],1,$data['id'],'后台人工调整',1);
  247. }else{
  248. $result = memberMoneyChange($data['integral'],1,$data['id'],'后台人工调整',0);
  249. }
  250. if ($result){
  251. setMemberInfoHash($data['id']);
  252. $this->success('调整成功');
  253. }
  254. }
  255. }
  256. if($this->request->isPost() && $this->request->action() == 'examples_number')
  257. {
  258. if($data['id']) {
  259. if (Db::name('store_member')->where('id',$data['id'])->update(['examples_number'=>$data['examples_number'],'update_at'=>date('Y-m-d H:i:s')])){
  260. setMemberInfoHash($data['id']);
  261. $this->success('调整成功');
  262. }
  263. }
  264. }
  265. if($this->request->isPost() && $this->request->action() == 'vip')
  266. {
  267. if($data['id']) {
  268. if (Db::name('store_member')->where('id',$data['id'])->update(['vip'=>$data['vip'],'update_at'=>date('Y-m-d H:i:s')])){
  269. setMemberInfoHash($data['id']);
  270. $this->success('调整成功');
  271. }
  272. }
  273. }
  274. if($this->request->isPost() && $this->request->action() == 'info')
  275. {
  276. if($data['id']) {
  277. if ($data['password']!=''){
  278. $date['password'] = md5($data['password']);
  279. }
  280. if ($data['second_password']!=''){
  281. $date['second_password'] = md5($data['second_password']);
  282. }
  283. $date['update_at'] = date('Y-m-d H:i:s');
  284. if (Db::name('store_member')->where('id',$data['id'])->update($date)){
  285. setMemberInfoHash($data['id']);
  286. $this->success('编辑成功');
  287. }
  288. $this->error('编辑失败');
  289. }
  290. }
  291. if($this->request->isPost() && $this->request->action() == 'save_group')
  292. {
  293. if($data['id']) {
  294. if (!isset($data['group']) || $data['group']==''){
  295. $this->error('请选择分组');
  296. }
  297. $date['group'] = $data['group'];
  298. $date['update_at'] = date('Y-m-d H:i:s');
  299. if (Db::name('store_member')->where('id',$data['id'])->update($date)){
  300. setMemberInfoHash($data['id']);
  301. $this->success('编辑成功');
  302. }
  303. $this->error('编辑失败');
  304. }
  305. }
  306. if($this->request->isPost() && $this->request->action() == 'grouping')
  307. {
  308. if (!isset($data['group']) || $data['group']==''){
  309. $this->error('请选择分组');
  310. }
  311. if (!isset($data['users']) || $data['users']==''){
  312. $this->error('请选择用户');
  313. }
  314. if (Db::name('store_member')->whereIn('id',$data['users'])->update(['group'=>$data['group']])){
  315. $this->success('分组成功',url('/#/user/member/index'));
  316. }
  317. $this->error('分组失败',url('/#/user/member/index'));
  318. }
  319. }
  320. public function shoucang(){
  321. $id=$this->request->get('id');
  322. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--收藏明细';
  323. $query = $this->_query('store_order_info')->where('mid',$id)->whereIn('status','1,3');
  324. $query->dateBetween('create_at')->order('id desc')->page();
  325. $this->fetch();
  326. }
  327. /**
  328. * 数据列表处理
  329. * @auth true
  330. * @menu true
  331. * @param array $data
  332. * @throws \think\db\exception\DataNotFoundException
  333. * @throws \think\db\exception\ModelNotFoundException
  334. * @throws \think\exception\DbException
  335. */
  336. protected function _shoucang_page_filter(&$data)
  337. {
  338. foreach ($data as $k=>&$v){
  339. $v['pro_info'] =json_decode($v['pro_info'],true);
  340. $info = Db::name('store_member')->where('id',$v['mid'])->field('name,phone')->find();
  341. $v['scz'] = $info['name'].'('.$info['phone'].')';
  342. $pro_info = Db::name('store_collection')->where('id',$v['c_id'])->field('one_given_day,other_given_day')->find();
  343. $log = Db::name('store_collect_examples_log')
  344. ->where('order_info_id',$v['id'])
  345. ->count();
  346. if (!$log){
  347. if ($pro_info['one_given_day']!=0){
  348. $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['one_given_day']*24*60*60));
  349. }else{
  350. $v['exam_time'] = $v['create_at'];
  351. }
  352. }else{
  353. if ($pro_info['other_given_day']!=0){
  354. $v['exam_time'] = date('Y-m-d H:i:s',strtotime($v['create_at'])+($pro_info['other_given_day']*24*60*60));
  355. }else{
  356. $v['exam_time'] = $v['create_at'];
  357. }
  358. }
  359. }
  360. }
  361. public function export(){
  362. $get_data = $this->request->get();
  363. $time = explode(' - ',$get_data['create_at']);
  364. $phone = $get_data['phone'];
  365. $name = $get_data['name'];
  366. $where = [];
  367. $where[] = ['status',1];
  368. $where[] = ['is_deleted',0];
  369. $where_str = ' status = 1 AND is_deleted = 0';
  370. if($name) $where_str .=' AND name like '."'%".$name."%'";
  371. if($phone) $where_str .=' AND phone like '."'%".$phone."%'";
  372. if($get_data['create_at']) $where_str.=" AND create_at > '".$time[0]."'AND create_at <'".$time[1]."'";
  373. //var_dump("SELECT name,headimg,true_name,phone,create_at,synopsis FROM store_member WHERE".$where_str.' ORDER BY id DESC');die();
  374. $data = Db::query("SELECT name,headimg,true_name,phone,create_at,synopsis FROM store_member WHERE".$where_str.' ORDER BY id DESC');
  375. if(empty($data)) $this->error('暂无可以导出的数据');
  376. foreach ($data as $k=>&$v) {
  377. if(!$v) $v = '--';
  378. }
  379. $field=array(
  380. 'A' => array('name', '昵称'),
  381. 'B' => array('true_name', '真实姓名'),
  382. 'C' => array('phone', '联系电话'),
  383. 'D' => array('synopsis', '个人简介'),
  384. 'E' => array('create_at', '注册时间'),
  385. //'F' => array('headimg', '头像地址'),
  386. );
  387. $this->phpExcelList($field,$data,'会员列表');
  388. }
  389. public function phpExcelList($field=[],$list=[],$title='文件'){
  390. $PHPExcel=new \PHPExcel();
  391. $PHPSheet=$PHPExcel->getActiveSheet();
  392. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  393. foreach($list as $key=>$value)
  394. {
  395. foreach($field as $k=>$v){
  396. if($key == 0){
  397. $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
  398. }
  399. $i=$key+2;
  400. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  401. }
  402. }
  403. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
  404. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  405. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  406. header('Cache-Control: max-age=0'); //禁止缓存
  407. $PHPWriter->save("php://output"); //输出到浏览器
  408. }
  409. /**
  410. * 导出EXCL
  411. * @remark 根据WHERE条件导出EXCL
  412. * @param array $post 查询条件所需值
  413. * @return array
  414. */
  415. public function get_excl()
  416. {
  417. set_time_limit(0);
  418. $name = $this->request->get('name');
  419. $phone = $this->request->get('phone');
  420. $status = $this->request->get('status');
  421. $coll_id = $this->request->get('coll_id');
  422. $create_at = $this->request->get('create_at');
  423. $model = Db::name('store_member')
  424. ->where('is_deleted',0)
  425. ->when($name,function ($query) use ($name){
  426. $query->whereLike('name','%'.$name.'%');
  427. })
  428. ->when($phone,function ($query) use ($phone){
  429. $query->whereLike('phone','%'.$phone.'%');
  430. })
  431. ->when($status,function ($query) use ($status){
  432. $query->where('status',$status);
  433. })
  434. ->when($coll_id,function ($query) use ($coll_id){
  435. $mids = Db::name('store_order_info')->where('c_id',$coll_id)->where('status','neq',2)->where('is_destruction',1)->column('mid');
  436. $query->whereIn('id',$mids);
  437. });
  438. if (isset($create_at) && $create_at){
  439. $time = explode(' - ',$_GET['create_at']);
  440. $start_date_time = $time[0].' 00:00:00';
  441. $end_date_time = $time[1].' 23:59:59';
  442. $model->whereBetweenTime('a.create_at',$start_date_time,$end_date_time);
  443. }
  444. $list =$model->field('id,name,phone')
  445. ->select();
  446. $export = [];
  447. if (is_array($list)) {
  448. foreach ($list as $index => $item) {
  449. $export[] = [
  450. $item['phone']
  451. ];
  452. }
  453. }
  454. PHPExcelService::setExcelHeader(['手机号'])
  455. ->setExcelTile('手机号导出' . date('YmdHis', time()), '手机号信息' . time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
  456. ->setExcelContent($export)
  457. ->ExcelSave();
  458. }
  459. }