Activity.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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. //定时热搜
  184. if(!$post['hot_nm']){
  185. $post['hot_nm'] = 0;
  186. }
  187. if(isset($post['id'])){
  188. $info = \app\common\model\Activity::where('id',$data['id'])->find();
  189. if(($post['regular_hot_end_time'] && $post['hot_target_num'] && $info['regular_hot_end_time'] != $post['regular_hot_end_time']) || ($info['hot_num'] != $post['hot_num'] && $post['regular_hot_end_time'] && $post['hot_target_num'])){
  190. $data['regular_hot_start_time'] = date("Y-m-d H:i:s");
  191. $startdate = strtotime($data['regular_hot_start_time']);
  192. $enddate = strtotime($post['regular_hot_end_time']);
  193. $diff_seconds = ($enddate-$startdate)/60;
  194. $min_num = ceil($diff_seconds/10);
  195. $hot_num = $post['hot_target_num'] - $post['hot_nm'];
  196. $num = ceil($hot_num/$min_num);
  197. if($num < 0){
  198. $num = 0;
  199. }
  200. $data['regular_num'] = $num;
  201. }
  202. }else{
  203. if($post['regular_hot_end_time'] && $post['hot_target_num']){
  204. $data['regular_hot_start_time'] = date("Y-m-d H:i:s");
  205. $startdate = strtotime($data['regular_hot_start_time']);
  206. $enddate = strtotime($post['regular_hot_end_time']);
  207. $diff_seconds = ($enddate-$startdate)/60;
  208. $min_num = ceil($diff_seconds/10);
  209. $hot_num = $post['hot_target_num'] - $post['hot_nm'];
  210. $num = ceil($hot_num/$min_num);
  211. if($num < 0){
  212. $num = 0;
  213. }
  214. $data['regular_num'] = $num;
  215. }
  216. }
  217. //定时热搜end
  218. }else{
  219. if (!empty($data)){
  220. $data['covers'] = $data['cover'];
  221. }
  222. }
  223. }
  224. /**
  225. * 报名记录
  226. * @auth true
  227. * @menu true
  228. * @throws \think\Exception
  229. * @throws \think\db\exception\DataNotFoundException
  230. * @throws \think\db\exception\ModelNotFoundException
  231. * @throws \think\exception\DbException
  232. * @throws \think\exception\PDOException
  233. */
  234. public function apply()
  235. {
  236. $id = $this->request->get('act_id');
  237. $name = $this->request->get('name');
  238. $phone = $this->request->get('phone');
  239. $this->title = '报名记录';
  240. $where = [];
  241. $where[]= ['a.act_id','=' ,$id];
  242. $where[]= ['a.is_deleted','=' ,0];
  243. // $where[]= ['a.status','=' ,1];
  244. if($name) $where[]= ['a.name','like' ,'%'.$name.'%'];
  245. if($phone) $where[]= ['a.phone','like' ,'%'.$phone.'%'];
  246. $query = $this->_query('activity_apply')
  247. ->alias('a')
  248. ->field('a.*,u.name user_name,u.headimg,u.phone')
  249. ->where($where)
  250. ->leftJoin('store_member u','u.id = a.user_id')
  251. ->order('a.id desc')->page();
  252. $this->fetch();
  253. }
  254. /**
  255. * 上架
  256. * @auth true
  257. * @menu true
  258. * @throws \think\Exception
  259. * @throws \think\db\exception\DataNotFoundException
  260. * @throws \think\db\exception\ModelNotFoundException
  261. * @throws \think\exception\DbException
  262. * @throws \think\exception\PDOException
  263. */
  264. public function up()
  265. {
  266. \app\common\model\Activity::where('id',input('id'))->update(['status'=>1]);
  267. \app\common\model\Activity::esAdd(input('id'));
  268. \app\common\model\TopSearch::saveData(input('id'),'activity');
  269. $this->success('已上架!');
  270. }
  271. /**
  272. * 下架
  273. * @auth true
  274. * @menu true
  275. * @throws \think\Exception
  276. * @throws \think\db\exception\DataNotFoundException
  277. * @throws \think\db\exception\ModelNotFoundException
  278. * @throws \think\exception\DbException
  279. * @throws \think\exception\PDOException
  280. */
  281. public function down()
  282. {
  283. \app\common\model\Activity::where('id',input('id'))->update(['status'=>0]);
  284. \app\common\model\Activity::esAdd(input('id'));
  285. \app\common\model\TopSearch::saveData(input('id'),'activity');
  286. $this->success('已下架!');
  287. }
  288. /**
  289. * 取消
  290. * @auth true
  291. * @menu true
  292. * @throws \think\Exception
  293. * @throws \think\db\exception\DataNotFoundException
  294. * @throws \think\db\exception\ModelNotFoundException
  295. * @throws \think\exception\DbException
  296. * @throws \think\exception\PDOException
  297. */
  298. public function cancel()
  299. {
  300. \app\common\model\Activity::where('id',input('id'))->update(['status'=>2]);
  301. \app\common\model\Activity::esAdd(input('id'));
  302. \app\common\model\TopSearch::saveData(input('id'),'activity');
  303. \app\common\model\Activity::activityCancel(input('id'));
  304. $this->success('已取消!');
  305. }
  306. public function export(){
  307. $id = $this->request->get('act_id');
  308. $name = $this->request->get('name');
  309. $phone = $this->request->get('phone');
  310. $this->title = '报名记录';
  311. $where = [];
  312. $where[]= ['a.act_id','=' ,$id];
  313. $where[]= ['a.is_deleted','=' ,0];
  314. $where[]= ['a.status','=' ,1];
  315. $where[]= ['a.status','=' ,1];
  316. if($name) $where[]= ['a.name','like' ,'%'.$name.'%'];
  317. if($phone) $where[]= ['a.phone','like' ,'%'.$phone.'%'];
  318. $data =Db::name('activity_apply')
  319. ->alias('a')
  320. ->field('a.*,u.name user_name,u.headimg')
  321. ->where($where)
  322. ->leftJoin('store_member u','u.id = a.user_id')
  323. ->order('a.id desc')->select();
  324. if(empty($data)) $this->error('暂无可以导出的数据');
  325. foreach ($data as $k=>&$v) {
  326. }
  327. $field=array(
  328. 'A' => array('order_no', '订单号'),
  329. 'B' => array('name', '联系人'),
  330. 'C' => array('phone', '电话'),
  331. 'D' => array('money','订单金额'),
  332. 'E' => array('num','人数'),
  333. 'F' => array('email','邮箱'),
  334. 'G' => array('create_at', '时间'),
  335. );
  336. $this->phpExcelList($field,$data,'报名列表');
  337. }
  338. public function phpExcelList($field=[],$list=[],$title='文件'){
  339. $PHPExcel=new \PHPExcel();
  340. $PHPSheet=$PHPExcel->getActiveSheet();
  341. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  342. foreach($list as $key=>$value)
  343. {
  344. foreach($field as $k=>$v){
  345. if($key == 0){
  346. $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
  347. }
  348. $i=$key+2;
  349. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  350. }
  351. }
  352. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
  353. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  354. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  355. header('Cache-Control: max-age=0'); //禁止缓存
  356. $PHPWriter->save("php://output"); //输出到浏览器
  357. }
  358. protected function _form_result(&$id)
  359. {
  360. list($post,$ladder_data) = [$this->request->post(),[]];
  361. foreach (array_keys($post['ladder_title']) as $key) {
  362. $ladder_price = sprintf('%.2f',$post['ladder_price'][$key]);
  363. $sub_money = sprintf('%.2f',$post['sub_money'][$key]);
  364. if(!isset($post['stock'][$key])){
  365. $post['stock'][$key] = intval($post['ladder_num'][$key]);
  366. }
  367. if($sub_money > $ladder_price) $sub_money = $ladder_price;
  368. array_push($ladder_data, [
  369. 'act_id' => $id,
  370. 'ladder_id' => $post['ladder_id'][$key],
  371. 'ladder_title' => $post['ladder_title'][$key],
  372. 'is_sh' => intval($post['is_sh'][$key]),
  373. 'ladder_num' => intval($post['ladder_num'][$key]),
  374. 'stock' => intval($post['stock'][$key]),
  375. 'fill_num' => intval($post['fill_num'][$key]),
  376. 'ladder_status' => intval($post['ladder_status'][$key]),
  377. 'ladder_price' => $ladder_price,
  378. 'sub_money' => $sub_money,
  379. 'ladder_remark' => $post['ladder_remark'][$key],
  380. ]);
  381. }
  382. ActivityPrice::priceSet($id,$ladder_data);
  383. \app\common\model\Activity::esAdd($id);
  384. \app\common\model\TopSearch::saveData($id,'activity');
  385. // 站內信和極光
  386. if(isset($post['push_switch']) && $post['push_switch'] == 1) \app\common\service\Activity::activityChange($id);
  387. $this->success('操作成功', 'javascript:history.back()');
  388. }
  389. }