Activity.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <?php
  2. namespace app\operate\controller;
  3. use app\common\model\ActivityApplyItem;
  4. use app\common\model\ActivityPrice;
  5. use app\common\model\ActivitySponsor;
  6. use app\common\model\ActivityTemplate;
  7. use app\common\model\ChinaArea;
  8. use app\common\model\DatumIntro;
  9. use app\common\model\User;
  10. use app\common\model\UserMessage;
  11. use library\Controller;
  12. use think\Db;
  13. /**
  14. * 活动
  15. * Class Activity
  16. * @package app\operate\controller
  17. */
  18. class Activity extends Controller
  19. {
  20. protected $table = 'Activity';
  21. /**
  22. * 列表
  23. * @auth true
  24. * @menu true
  25. * @throws \think\Exception
  26. * @throws \think\db\exception\DataNotFoundException
  27. * @throws \think\db\exception\ModelNotFoundException
  28. * @throws \think\exception\DbException
  29. * @throws \think\exception\PDOException
  30. */
  31. public function index()
  32. {
  33. $this->sponsor_list = ActivitySponsor::getSponsorName();
  34. $this->title = '列表';
  35. $where = [];
  36. $where[] = ['f.is_deleted','=',0];
  37. if($title = input('title')) $where[] = ['f.title','like','%'.$title.'%'];
  38. if($sponsor_id = input('sponsor_id')) $where[] = ['f.sponsor_id','=',$sponsor_id];
  39. $query = $this->_query($this->table)->alias('f')
  40. ->field('f.*')
  41. ->where($where)
  42. ->order('sort desc,f.id desc')->page();
  43. }
  44. /**
  45. * 添加
  46. * @auth true
  47. * @menu true
  48. * @throws \think\Exception
  49. * @throws \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. * @throws \think\exception\DbException
  52. * @throws \think\exception\PDOException
  53. */
  54. public function add()
  55. {
  56. $this->title = '添加';
  57. $this->_form($this->table, 'form');
  58. }
  59. /**
  60. * 编辑
  61. * @auth true
  62. * @menu true
  63. * @throws \think\Exception
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @throws \think\exception\DbException
  67. * @throws \think\exception\PDOException
  68. */
  69. public function edit()
  70. {
  71. $this->title = '编辑';
  72. $this->_form($this->table, 'form');
  73. }
  74. /**
  75. * 删除
  76. * @auth true
  77. * @throws \think\Exception
  78. * @throws \think\exception\PDOException
  79. */
  80. public function del()
  81. {
  82. \app\common\model\Activity::where('id',input('id'))->update(['is_deleted'=>1]);
  83. \app\common\model\Activity::esAdd(input('id'));
  84. \app\common\model\TopSearch::saveData(input('id'),'activity');
  85. $this->success('删除成功');
  86. }
  87. /**
  88. * 批量删除
  89. * @auth true
  90. * @throws \think\Exception
  91. * @throws \think\exception\PDOException
  92. */
  93. public function remove()
  94. {
  95. $ids = input('id');
  96. foreach (explode(',',$ids) as $id) {
  97. \app\common\model\Activity::where('id',$id)->update(['is_deleted'=>1]);
  98. \app\common\model\Activity::esAdd($id);
  99. \app\common\model\TopSearch::saveData($id,'activity');
  100. }
  101. $this->success('删除成功');
  102. }
  103. /**
  104. * 表单数据处理
  105. * @param array $data
  106. */
  107. protected function _form_filter(&$data)
  108. {
  109. $all_area = ChinaArea::where('level','<=',3)->select();
  110. $this->all_area = make_tree($all_area);
  111. // 文章列表
  112. $this->article_list =\app\common\model\ArticleIntro::with('itemChildren')
  113. ->field('id,title')
  114. ->where(['is_deleted'=>0])->order('id asc')
  115. ->select()->toArray();
  116. // 视频
  117. $this->video_list = \app\common\model\VideoIntro::with('videoArr')
  118. ->where(['is_deleted'=>0])->order('id desc')
  119. ->select()->toArray();
  120. // 资料
  121. $this->datum_list = DatumIntro::with('urlArr')
  122. ->where(['is_deleted'=>0])->order('id desc')
  123. ->select()->toArray();
  124. $this->sponsor_list = ActivitySponsor::getList();
  125. $this->template_list = ActivityTemplate::getList();
  126. if ($this->request->isGet() && $this->request->action() == 'add') {
  127. $this->isAddMode = 1;
  128. $this->ladder = [];
  129. }
  130. if ($this->request->isGet() && $this->request->action() == 'edit') {
  131. $this->isAddMode = 0;
  132. $this->ladder = ActivityPrice::gePriceList($data['id']);
  133. }
  134. if($this->request->isPost())
  135. {
  136. list($post) = [$this->request->post()];
  137. if(!empty($post['phone'])) {
  138. $user_id = User::where('phone|email',$post['phone'])->value('id');
  139. if(!$user_id) $this->error('账号未注册');
  140. $data['user_id'] = $user_id;
  141. }else{
  142. $data['user_id'] = '';
  143. }
  144. if(!$post['release_time']) $data['release_time'] = date("Y-m-d H:i:s");
  145. if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
  146. //郵箱 和短信
  147. if($this->request->action()== 'edit' && isset($data['push_switch']) && $data['push_switch'] == 1)
  148. {
  149. //\app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
  150. $before_act = \app\common\model\Activity::where('id',$data['id'])->find()->toArray();
  151. // 活动时间变更
  152. if(($before_act['start_time'] != $data['start_time'] || $before_act['end_time'] != $data['end_time']) && $before_act['address'] == $data['address'] ) {
  153. \app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
  154. //变更通知
  155. // $all_list = ActivityApplyItem::where(['act_id'=>$data['id'],'sh_status'=>1,'is_hx'=>0])->group('phone')->select();
  156. //
  157. // foreach ($all_list as $k => $v){
  158. // UserMessage::sendUserMessage($v['user_id'],'activity',2,1,0,$v['act_id'],'活动时间变更',$v['act_id']);
  159. // }
  160. }
  161. // 活动地址变更
  162. else if($before_act['start_time'] == $data['start_time'] && $before_act['end_time'] == $data['end_time'] && $before_act['address'] != $data['address']){
  163. \app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
  164. //变更通知
  165. // $all_list = ActivityApplyItem::where(['act_id'=>$data['id'],'sh_status'=>1,'is_hx'=>0])->group('phone')->select();
  166. // foreach ($all_list as $k => $v){
  167. // UserMessage::sendUserMessage($v['user_id'],'activity',2,1,0,$v['act_id'],'活动地址变更',$v['act_id']);
  168. // }
  169. }
  170. // 活动地址与时间变更
  171. else if($before_act['start_time'] != $data['start_time'] || $before_act['end_time'] != $data['end_time'] || $before_act['address'] != $data['address'] ) {
  172. \app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
  173. //变更通知
  174. // $all_list = ActivityApplyItem::where(['act_id'=>$data['id'],'sh_status'=>1,'is_hx'=>0])->group('phone')->select();
  175. // foreach ($all_list as $k => $v){
  176. // UserMessage::sendUserMessage($v['user_id'],'activity',2,1,0,$v['act_id'],'活动时间地址变更',$v['act_id']);
  177. // }
  178. }
  179. }
  180. if($this->request->action()== 'add'){
  181. $data['status'] = 0;
  182. }
  183. }else{
  184. if (!empty($data)){
  185. $data['covers'] = $data['cover'];
  186. }
  187. }
  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 apply()
  200. {
  201. $id = $this->request->get('act_id');
  202. $name = $this->request->get('name');
  203. $phone = $this->request->get('phone');
  204. $this->title = '报名记录';
  205. $where = [];
  206. $where[]= ['a.act_id','=' ,$id];
  207. $where[]= ['a.is_deleted','=' ,0];
  208. // $where[]= ['a.status','=' ,1];
  209. if($name) $where[]= ['a.name','like' ,'%'.$name.'%'];
  210. if($phone) $where[]= ['a.phone','like' ,'%'.$phone.'%'];
  211. $query = $this->_query('activity_apply')
  212. ->alias('a')
  213. ->field('a.*,u.name user_name,u.headimg,u.phone')
  214. ->where($where)
  215. ->leftJoin('store_member u','u.id = a.user_id')
  216. ->order('a.id desc')->page();
  217. $this->fetch();
  218. }
  219. /**
  220. * 上架
  221. * @auth true
  222. * @menu true
  223. * @throws \think\Exception
  224. * @throws \think\db\exception\DataNotFoundException
  225. * @throws \think\db\exception\ModelNotFoundException
  226. * @throws \think\exception\DbException
  227. * @throws \think\exception\PDOException
  228. */
  229. public function up()
  230. {
  231. \app\common\model\Activity::where('id',input('id'))->update(['status'=>1]);
  232. \app\common\model\Activity::esAdd(input('id'));
  233. \app\common\model\TopSearch::saveData(input('id'),'activity');
  234. $this->success('已上架!');
  235. }
  236. /**
  237. * 下架
  238. * @auth true
  239. * @menu true
  240. * @throws \think\Exception
  241. * @throws \think\db\exception\DataNotFoundException
  242. * @throws \think\db\exception\ModelNotFoundException
  243. * @throws \think\exception\DbException
  244. * @throws \think\exception\PDOException
  245. */
  246. public function down()
  247. {
  248. \app\common\model\Activity::where('id',input('id'))->update(['status'=>0]);
  249. \app\common\model\Activity::esAdd(input('id'));
  250. \app\common\model\TopSearch::saveData(input('id'),'activity');
  251. $this->success('已下架!');
  252. }
  253. /**
  254. * 取消
  255. * @auth true
  256. * @menu true
  257. * @throws \think\Exception
  258. * @throws \think\db\exception\DataNotFoundException
  259. * @throws \think\db\exception\ModelNotFoundException
  260. * @throws \think\exception\DbException
  261. * @throws \think\exception\PDOException
  262. */
  263. public function cancel()
  264. {
  265. \app\common\model\Activity::where('id',input('id'))->update(['status'=>2]);
  266. \app\common\model\Activity::esAdd(input('id'));
  267. \app\common\model\TopSearch::saveData(input('id'),'activity');
  268. \app\common\model\Activity::activityCancel(input('id'));
  269. $this->success('已取消!');
  270. }
  271. public function export(){
  272. $id = $this->request->get('act_id');
  273. $name = $this->request->get('name');
  274. $phone = $this->request->get('phone');
  275. $this->title = '报名记录';
  276. $where = [];
  277. $where[]= ['a.act_id','=' ,$id];
  278. $where[]= ['a.is_deleted','=' ,0];
  279. $where[]= ['a.status','=' ,1];
  280. $where[]= ['a.status','=' ,1];
  281. if($name) $where[]= ['a.name','like' ,'%'.$name.'%'];
  282. if($phone) $where[]= ['a.phone','like' ,'%'.$phone.'%'];
  283. $data =Db::name('activity_apply')
  284. ->alias('a')
  285. ->field('a.*,u.name user_name,u.headimg')
  286. ->where($where)
  287. ->leftJoin('store_member u','u.id = a.user_id')
  288. ->order('a.id desc')->select();
  289. if(empty($data)) $this->error('暂无可以导出的数据');
  290. foreach ($data as $k=>&$v) {
  291. }
  292. $field=array(
  293. 'A' => array('order_no', '订单号'),
  294. 'B' => array('name', '联系人'),
  295. 'C' => array('phone', '电话'),
  296. 'D' => array('money','订单金额'),
  297. 'E' => array('num','人数'),
  298. 'F' => array('email','邮箱'),
  299. 'G' => array('create_at', '时间'),
  300. );
  301. $this->phpExcelList($field,$data,'报名列表');
  302. }
  303. public function phpExcelList($field=[],$list=[],$title='文件'){
  304. $PHPExcel=new \PHPExcel();
  305. $PHPSheet=$PHPExcel->getActiveSheet();
  306. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  307. foreach($list as $key=>$value)
  308. {
  309. foreach($field as $k=>$v){
  310. if($key == 0){
  311. $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
  312. }
  313. $i=$key+2;
  314. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  315. }
  316. }
  317. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
  318. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  319. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  320. header('Cache-Control: max-age=0'); //禁止缓存
  321. $PHPWriter->save("php://output"); //输出到浏览器
  322. }
  323. protected function _form_result(&$id)
  324. {
  325. list($post,$ladder_data) = [$this->request->post(),[]];
  326. foreach (array_keys($post['ladder_title']) as $key) {
  327. $ladder_price = sprintf('%.2f',$post['ladder_price'][$key]);
  328. $sub_money = sprintf('%.2f',$post['sub_money'][$key]);
  329. if(!isset($post['stock'][$key])){
  330. $post['stock'][$key] = intval($post['ladder_num'][$key]);
  331. }
  332. if($sub_money > $ladder_price) $sub_money = $ladder_price;
  333. array_push($ladder_data, [
  334. 'act_id' => $id,
  335. 'ladder_id' => $post['ladder_id'][$key],
  336. 'ladder_title' => $post['ladder_title'][$key],
  337. 'is_sh' => intval($post['is_sh'][$key]),
  338. 'ladder_num' => intval($post['ladder_num'][$key]),
  339. 'stock' => intval($post['stock'][$key]),
  340. 'fill_num' => intval($post['fill_num'][$key]),
  341. 'ladder_status' => intval($post['ladder_status'][$key]),
  342. 'ladder_price' => $ladder_price,
  343. 'sub_money' => $sub_money,
  344. 'ladder_remark' => $post['ladder_remark'][$key],
  345. ]);
  346. }
  347. ActivityPrice::priceSet($id,$ladder_data);
  348. \app\common\model\Activity::esAdd($id);
  349. \app\common\model\TopSearch::saveData($id,'activity');
  350. // 站內信和極光
  351. if(isset($post['push_switch']) && $post['push_switch'] == 1) \app\common\service\Activity::activityChange($id);
  352. $this->success('操作成功', 'javascript:history.back()');
  353. }
  354. }