CollectInfo.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <?php
  2. namespace app\store\controller;
  3. use app\common\library\PHPExcelService;
  4. use library\Controller;
  5. use think\Db;
  6. use function Symfony\Component\String\s;
  7. /**
  8. * 收藏明细
  9. * Class CollectInfo
  10. * @package app\store\controller
  11. */
  12. class CollectInfo extends Controller
  13. {
  14. /**
  15. * 绑定数据表
  16. * @var string
  17. */
  18. protected $table = 'StoreOrderInfo';
  19. /**
  20. * 收藏明细
  21. * @auth true
  22. * @menu true
  23. * @throws \think\Exception
  24. * @throws \think\db\exception\DataNotFoundException
  25. * @throws \think\db\exception\ModelNotFoundException
  26. * @throws \think\exception\DbException
  27. * @throws \think\exception\PDOException
  28. */
  29. public function index()
  30. {
  31. $this->title = '收藏明细';
  32. $goods_id = input('goods_id');
  33. $phone = input('phone');
  34. $hash = input('hash');
  35. $tag = input('tag');
  36. $sel_where = [];
  37. $sel_where[] = ['i.c_id','=',$goods_id];
  38. $sel_where[] = ['i.status','<>',2];
  39. $sel_where[] = ['i.resale_status','in','1,2'];
  40. $sel_where[] = ['i.is_destruction','=',1];
  41. if($phone) $sel_where[]= ['u.phone','=',$phone];
  42. if($hash) $sel_where[]= ['i.collectors_hash','=',$hash];
  43. if($tag) $sel_where[]= ['i.tag','=',$tag];
  44. $query = $this->_query($this->table)
  45. ->alias('i')
  46. ->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')
  47. ->join('store_member u','u.id = i.mid','left')
  48. ->where($sel_where);
  49. $query->order('i.id desc')->page();
  50. }
  51. /**
  52. * 数据列表处理
  53. * @auth true
  54. * @menu true
  55. * @param array $data
  56. * @throws \think\db\exception\DataNotFoundException
  57. * @throws \think\db\exception\ModelNotFoundException
  58. * @throws \think\exception\DbException
  59. */
  60. protected function _index_page_filter(&$data)
  61. {
  62. foreach ($data as &$v) {
  63. $v['from_desc'] = '--';
  64. }
  65. }
  66. /**
  67. * 数据列表处理
  68. * @auth true
  69. * @menu true
  70. * @param array $data
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\ModelNotFoundException
  73. * @throws \think\exception\DbException
  74. */
  75. public function course()
  76. {
  77. $id = input('id');
  78. $info =Db::name('store_order_info')->where('id',$id)->find();
  79. $tag =$info['tag'];
  80. $list = Db::name('store_order_info')->alias('i')
  81. ->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')
  82. ->join('store_member u','u.id = i.mid','left')
  83. ->where('tag',$tag)
  84. ->where('c_id',$info['c_id'])
  85. ->order('id desc')
  86. ->select();
  87. foreach ($list as &$v) {
  88. $v['coll_state'] = 1;
  89. if($v['resale_status'] == 3 || $v['is_destruction'] == 0 || in_array($v['status'],[2])) $v['coll_state'] = 0;
  90. }
  91. $this->assign('list',$list);
  92. $this->fetch('course');
  93. }
  94. /**
  95. * 导出EXCL
  96. * @remark 根据WHERE条件导出EXCL
  97. * @param array $post 查询条件所需值
  98. * @return array
  99. */
  100. public function get_excl()
  101. {
  102. set_time_limit(0);
  103. $goods_id = input('goods_id');
  104. $phone = input('phone');
  105. $hash = input('hash');
  106. $tag = input('tag');
  107. $sel_where = [];
  108. $sel_where[] = ['i.c_id','=',$goods_id];
  109. $sel_where[] = ['i.resale_status','in','1,2'];
  110. $sel_where[] = ['i.is_destruction','=',1];
  111. $sel_where[] = ['i.status','<>',2];
  112. if($phone) $sel_where[]= ['u.phone','=',$phone];
  113. if($hash) $sel_where[]= ['i.collectors_hash','=',$hash];
  114. if($tag) $sel_where[]= ['i.tag','=',$tag];
  115. $list = Db::name('store_order_info')
  116. ->alias('i')
  117. ->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')
  118. ->join('store_member u','u.id = i.mid','left')
  119. ->where($sel_where)->order('i.id desc')->select();
  120. $export = [];
  121. foreach ($list as $value){
  122. $export[] = [
  123. $value['name'],
  124. $value['user_name'],
  125. $value['phone'],
  126. $value['order_no'],
  127. $value['collectors_hash'],
  128. $value['tag'],
  129. $value['create_at']
  130. ];
  131. }
  132. PHPExcelService::setExcelHeader(['藏品名称','会员名称','电话','订单编号','收藏者hash','编号','时间'])
  133. ->setExcelTile('收藏明细导出' . date('YmdHis', time()), '收藏'. time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
  134. ->setExcelContent($export)
  135. ->ExcelSave();
  136. }
  137. public function export_excl()
  138. {
  139. set_time_limit(0);
  140. $goods_id = input('goods_id');;
  141. $sel_where = [];
  142. $sel_where[] = ['i.c_id','=',$goods_id];
  143. $sel_where[] = ['i.resale_status','in','1,2'];
  144. $sel_where[] = ['i.is_destruction','=',1];
  145. $sel_where[] = ['i.status','<>',2];
  146. $goods_name = Db::name('store_collection')->where('id',$goods_id)->value('name');
  147. $list = Db::name('store_order_info')
  148. ->alias('i')
  149. ->field('count(i.id) num,i.mid,u.phone,u.name user_name')
  150. ->join('store_member u','u.id = i.mid','left')
  151. ->group('i.mid')
  152. ->order('num desc')->where($sel_where)->select();
  153. $export = [];
  154. foreach ($list as $value){
  155. $value['name'] = $goods_name;
  156. $export[] = [
  157. $value['name'],
  158. $value['user_name'],
  159. $value['phone'],
  160. $value['num'],
  161. ];
  162. }
  163. PHPExcelService::setExcelHeader(['藏品名称','会员名称','电话','数量'])
  164. ->setExcelTile('收藏统计导出' . date('YmdHis', time()), '收藏'. time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
  165. ->setExcelContent($export)
  166. ->ExcelSave();
  167. }
  168. }