Activity.php 13 KB

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