Activity.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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('user_id')->select();
  156. foreach ($all_list as $k => $v){
  157. UserMessage::sendUserMessage($v['user_id'],'activity',2,1,0,$v['act_id'],'活动时间变更',$v['act_id']);
  158. }
  159. }
  160. // 活动地址变更
  161. else if($before_act['start_time'] == $data['start_time'] && $before_act['end_time'] == $data['end_time'] && $before_act['address'] != $data['address']){
  162. \app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
  163. //变更通知
  164. $all_list = ActivityApplyItem::where(['act_id'=>$data['id'],'sh_status'=>1,'is_hx'=>0])->group('user_id')->select();
  165. foreach ($all_list as $k => $v){
  166. UserMessage::sendUserMessage($v['user_id'],'activity',2,1,0,$v['act_id'],'活动地址变更',$v['act_id']);
  167. }
  168. }
  169. // 活动地址与时间变更
  170. else if($before_act['start_time'] != $data['start_time'] || $before_act['end_time'] != $data['end_time'] || $before_act['address'] != $data['address'] ) {
  171. \app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
  172. //变更通知
  173. $all_list = ActivityApplyItem::where(['act_id'=>$data['id'],'sh_status'=>1,'is_hx'=>0])->group('user_id')->select();
  174. foreach ($all_list as $k => $v){
  175. UserMessage::sendUserMessage($v['user_id'],'activity',2,1,0,$v['act_id'],'活动时间地址变更',$v['act_id']);
  176. }
  177. }
  178. }
  179. }else{
  180. if (!empty($data)){
  181. $data['covers'] = $data['cover'];
  182. }
  183. }
  184. }
  185. /**
  186. * 报名记录
  187. * @auth true
  188. * @menu true
  189. * @throws \think\Exception
  190. * @throws \think\db\exception\DataNotFoundException
  191. * @throws \think\db\exception\ModelNotFoundException
  192. * @throws \think\exception\DbException
  193. * @throws \think\exception\PDOException
  194. */
  195. public function apply()
  196. {
  197. $id = $this->request->get('act_id');
  198. $name = $this->request->get('name');
  199. $phone = $this->request->get('phone');
  200. $this->title = '报名记录';
  201. $where = [];
  202. $where[]= ['a.act_id','=' ,$id];
  203. $where[]= ['a.is_deleted','=' ,0];
  204. // $where[]= ['a.status','=' ,1];
  205. if($name) $where[]= ['a.name','like' ,'%'.$name.'%'];
  206. if($phone) $where[]= ['a.phone','like' ,'%'.$phone.'%'];
  207. $query = $this->_query('activity_apply')
  208. ->alias('a')
  209. ->field('a.*,u.name user_name,u.headimg,u.phone')
  210. ->where($where)
  211. ->leftJoin('store_member u','u.id = a.user_id')
  212. ->order('a.id desc')->page();
  213. $this->fetch();
  214. }
  215. /**
  216. * 上架
  217. * @auth true
  218. * @menu true
  219. * @throws \think\Exception
  220. * @throws \think\db\exception\DataNotFoundException
  221. * @throws \think\db\exception\ModelNotFoundException
  222. * @throws \think\exception\DbException
  223. * @throws \think\exception\PDOException
  224. */
  225. public function up()
  226. {
  227. \app\common\model\Activity::where('id',input('id'))->update(['status'=>1]);
  228. \app\common\model\Activity::esAdd(input('id'));
  229. \app\common\model\TopSearch::saveData(input('id'),'activity');
  230. $this->success('已上架!');
  231. }
  232. /**
  233. * 下架
  234. * @auth true
  235. * @menu true
  236. * @throws \think\Exception
  237. * @throws \think\db\exception\DataNotFoundException
  238. * @throws \think\db\exception\ModelNotFoundException
  239. * @throws \think\exception\DbException
  240. * @throws \think\exception\PDOException
  241. */
  242. public function down()
  243. {
  244. \app\common\model\Activity::where('id',input('id'))->update(['status'=>0]);
  245. \app\common\model\Activity::esAdd(input('id'));
  246. \app\common\model\TopSearch::saveData(input('id'),'activity');
  247. $this->success('已下架!');
  248. }
  249. /**
  250. * 取消
  251. * @auth true
  252. * @menu true
  253. * @throws \think\Exception
  254. * @throws \think\db\exception\DataNotFoundException
  255. * @throws \think\db\exception\ModelNotFoundException
  256. * @throws \think\exception\DbException
  257. * @throws \think\exception\PDOException
  258. */
  259. public function cancel()
  260. {
  261. \app\common\model\Activity::where('id',input('id'))->update(['status'=>2]);
  262. \app\common\model\Activity::esAdd(input('id'));
  263. \app\common\model\TopSearch::saveData(input('id'),'activity');
  264. \app\common\model\Activity::activityCancel(input('id'));
  265. $this->success('已取消!');
  266. }
  267. public function export(){
  268. $id = $this->request->get('act_id');
  269. $name = $this->request->get('name');
  270. $phone = $this->request->get('phone');
  271. $this->title = '报名记录';
  272. $where = [];
  273. $where[]= ['a.act_id','=' ,$id];
  274. $where[]= ['a.is_deleted','=' ,0];
  275. $where[]= ['a.status','=' ,1];
  276. $where[]= ['a.status','=' ,1];
  277. if($name) $where[]= ['a.name','like' ,'%'.$name.'%'];
  278. if($phone) $where[]= ['a.phone','like' ,'%'.$phone.'%'];
  279. $data =Db::name('activity_apply')
  280. ->alias('a')
  281. ->field('a.*,u.name user_name,u.headimg')
  282. ->where($where)
  283. ->leftJoin('store_member u','u.id = a.user_id')
  284. ->order('a.id desc')->select();
  285. if(empty($data)) $this->error('暂无可以导出的数据');
  286. foreach ($data as $k=>&$v) {
  287. }
  288. $field=array(
  289. 'A' => array('order_no', '订单号'),
  290. 'B' => array('name', '联系人'),
  291. 'C' => array('phone', '电话'),
  292. 'D' => array('money','订单金额'),
  293. 'E' => array('num','人数'),
  294. 'F' => array('email','邮箱'),
  295. 'G' => array('create_at', '时间'),
  296. );
  297. $this->phpExcelList($field,$data,'报名列表');
  298. }
  299. public function phpExcelList($field=[],$list=[],$title='文件'){
  300. $PHPExcel=new \PHPExcel();
  301. $PHPSheet=$PHPExcel->getActiveSheet();
  302. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  303. foreach($list as $key=>$value)
  304. {
  305. foreach($field as $k=>$v){
  306. if($key == 0){
  307. $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
  308. }
  309. $i=$key+2;
  310. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  311. }
  312. }
  313. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
  314. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  315. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  316. header('Cache-Control: max-age=0'); //禁止缓存
  317. $PHPWriter->save("php://output"); //输出到浏览器
  318. }
  319. protected function _form_result(&$id)
  320. {
  321. list($post,$ladder_data) = [$this->request->post(),[]];
  322. foreach (array_keys($post['ladder_title']) as $key) {
  323. $ladder_price = sprintf('%.2f',$post['ladder_price'][$key]);
  324. $sub_money = sprintf('%.2f',$post['sub_money'][$key]);
  325. if($sub_money > $ladder_price) $sub_money = $ladder_price;
  326. array_push($ladder_data, [
  327. 'act_id' => $id,
  328. 'ladder_id' => $post['ladder_id'][$key],
  329. 'ladder_title' => $post['ladder_title'][$key],
  330. 'is_sh' => intval($post['is_sh'][$key]),
  331. 'ladder_num' => intval($post['ladder_num'][$key]),
  332. 'stock' => intval($post['stock'][$key]),
  333. 'fill_num' => intval($post['fill_num'][$key]),
  334. 'ladder_status' => intval($post['ladder_status'][$key]),
  335. 'ladder_price' => $ladder_price,
  336. 'sub_money' => $sub_money,
  337. 'ladder_remark' => $post['ladder_remark'][$key],
  338. ]);
  339. }
  340. ActivityPrice::priceSet($id,$ladder_data);
  341. \app\common\model\Activity::esAdd($id);
  342. \app\common\model\TopSearch::saveData($id,'activity');
  343. // 站內信和極光
  344. if(isset($post['push_switch']) && $post['push_switch'] == 1) \app\common\service\Activity::activityChange($id);
  345. $this->success('操作成功', 'javascript:history.back()');
  346. }
  347. }