123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363 |
- <?php
- namespace app\operate\controller;
- use app\common\model\ActivityPrice;
- use app\common\model\ActivitySponsor;
- use app\common\model\ActivityTemplate;
- use app\common\model\ChinaArea;
- use app\common\model\DatumIntro;
- use app\common\model\User;
- use library\Controller;
- use think\Db;
- /**
- * 活动
- * Class Activity
- * @package app\operate\controller
- */
- class Activity extends Controller
- {
- protected $table = 'Activity';
- /**
- * 列表
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->sponsor_list = ActivitySponsor::getSponsorName();
- $this->title = '列表';
- $where = [];
- $where[] = ['f.is_deleted','=',0];
- if($title = input('title')) $where[] = ['f.title','like','%'.$title.'%'];
- if($sponsor_id = input('sponsor_id')) $where[] = ['f.sponsor_id','=',$sponsor_id];
- $query = $this->_query($this->table)->alias('f')
- ->field('f.*')
- ->where($where)
- ->order('sort desc,f.id desc')->page();
- }
- /**
- * 添加
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function add()
- {
- $this->title = '添加';
- $this->_form($this->table, 'form');
- }
- /**
- * 编辑
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function edit()
- {
- $this->title = '编辑';
- $this->_form($this->table, 'form');
- }
- /**
- * 删除
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function del()
- {
- \app\common\model\Activity::where('id',input('id'))->update(['is_deleted'=>1]);
- \app\common\model\Activity::esAdd(input('id'));
- \app\common\model\TopSearch::saveData(input('id'),'activity');
- $this->success('删除成功');
- }
- /**
- * 批量删除
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function remove()
- {
- $ids = input('id');
- foreach (explode(',',$ids) as $id) {
- \app\common\model\Activity::where('id',$id)->update(['is_deleted'=>1]);
- \app\common\model\Activity::esAdd($id);
- \app\common\model\TopSearch::saveData($id,'activity');
- }
- $this->success('删除成功');
- }
- /**
- * 表单数据处理
- * @param array $data
- */
- protected function _form_filter(&$data)
- {
- $all_area = ChinaArea::where('level','<=',3)->select();
- $this->all_area = make_tree($all_area);
- // 文章列表
- $this->article_list =\app\common\model\ArticleIntro::with('itemChildren')
- ->field('id,title')
- ->where(['is_deleted'=>0])->order('id asc')
- ->select()->toArray();
- // 视频
- $this->video_list = \app\common\model\VideoIntro::with('videoArr')
- ->where(['is_deleted'=>0])->order('id desc')
- ->select()->toArray();
- // 资料
- $this->datum_list = DatumIntro::with('urlArr')
- ->where(['is_deleted'=>0])->order('id desc')
- ->select()->toArray();
- $this->sponsor_list = ActivitySponsor::getList();
- $this->template_list = ActivityTemplate::getList();
- if ($this->request->isGet() && $this->request->action() == 'add') {
- $this->isAddMode = 1;
- $this->ladder = [];
- }
- if ($this->request->isGet() && $this->request->action() == 'edit') {
- $this->isAddMode = 0;
- $this->ladder = ActivityPrice::gePriceList($data['id']);
- }
- if($this->request->isPost())
- {
- list($post) = [$this->request->post()];
- if(!empty($post['phone'])) {
- $user_id = User::where('phone|email',$post['phone'])->value('id');
- if(!$user_id) $this->error('账号未注册');
- $data['user_id'] = $user_id;
- }else{
- $data['user_id'] = '';
- }
- if(!$post['release_time']) $data['release_time'] = date("Y-m-d H:i:s");
- if($data['hot_num'] != $data['hot_num_old']) $data['hot_time'] = date("Y-m-d H:i:s");
- //郵箱 和短信
- if($this->request->action()== 'edit' && isset($data['push_switch']) && $data['push_switch'] == 1)
- {
- //\app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
- $before_act = \app\common\model\Activity::where('id',$data['id'])->find()->toArray();
- // 活动时间变更
- if(($before_act['start_time'] != $data['start_time'] || $before_act['end_time'] != $data['end_time']) && $before_act['address'] == $data['address'] ) {
- \app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
- }
- // 活动地址变更
- else if($before_act['start_time'] == $data['start_time'] && $before_act['end_time'] == $data['end_time'] && $before_act['address'] != $data['address']){
- \app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
- }
- // 活动地址与时间变更
- else if($before_act['start_time'] != $data['start_time'] || $before_act['end_time'] != $data['end_time'] || $before_act['address'] != $data['address'] ) {
- \app\common\model\Activity::activityChange($data['id'],$data['title'],['end_time'=>$data['end_time'],'start_time'=>$data['start_time'],'address'=>$data['address']]);
- }
- }
- }else{
- if (!empty($data)){
- $data['covers'] = $data['cover'];
- }
- }
- }
- /**
- * 报名记录
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function apply()
- {
- $id = $this->request->get('act_id');
- $name = $this->request->get('name');
- $phone = $this->request->get('phone');
- $this->title = '报名记录';
- $where = [];
- $where[]= ['a.act_id','=' ,$id];
- $where[]= ['a.is_deleted','=' ,0];
- // $where[]= ['a.status','=' ,1];
- if($name) $where[]= ['a.name','like' ,'%'.$name.'%'];
- if($phone) $where[]= ['a.phone','like' ,'%'.$phone.'%'];
- $query = $this->_query('activity_apply')
- ->alias('a')
- ->field('a.*,u.name user_name,u.headimg,u.phone')
- ->where($where)
- ->leftJoin('store_member u','u.id = a.user_id')
- ->order('a.id desc')->page();
- $this->fetch();
- }
- /**
- * 上架
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function up()
- {
- \app\common\model\Activity::where('id',input('id'))->update(['status'=>1]);
- \app\common\model\Activity::esAdd(input('id'));
- \app\common\model\TopSearch::saveData(input('id'),'activity');
- $this->success('已上架!');
- }
- /**
- * 下架
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function down()
- {
- \app\common\model\Activity::where('id',input('id'))->update(['status'=>0]);
- \app\common\model\Activity::esAdd(input('id'));
- \app\common\model\TopSearch::saveData(input('id'),'activity');
- $this->success('已下架!');
- }
- /**
- * 取消
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function cancel()
- {
- \app\common\model\Activity::where('id',input('id'))->update(['status'=>2]);
- \app\common\model\Activity::esAdd(input('id'));
- \app\common\model\TopSearch::saveData(input('id'),'activity');
- \app\common\model\Activity::activityCancel(input('id'));
- $this->success('已取消!');
- }
- public function export(){
- $id = $this->request->get('act_id');
- $name = $this->request->get('name');
- $phone = $this->request->get('phone');
- $this->title = '报名记录';
- $where = [];
- $where[]= ['a.act_id','=' ,$id];
- $where[]= ['a.is_deleted','=' ,0];
- $where[]= ['a.status','=' ,1];
- $where[]= ['a.status','=' ,1];
- if($name) $where[]= ['a.name','like' ,'%'.$name.'%'];
- if($phone) $where[]= ['a.phone','like' ,'%'.$phone.'%'];
- $data =Db::name('activity_apply')
- ->alias('a')
- ->field('a.*,u.name user_name,u.headimg')
- ->where($where)
- ->leftJoin('store_member u','u.id = a.user_id')
- ->order('a.id desc')->select();
- if(empty($data)) $this->error('暂无可以导出的数据');
- foreach ($data as $k=>&$v) {
- }
- $field=array(
- 'A' => array('order_no', '订单号'),
- 'B' => array('name', '联系人'),
- 'C' => array('phone', '电话'),
- 'D' => array('money','订单金额'),
- 'E' => array('num','人数'),
- 'F' => array('email','邮箱'),
- 'G' => array('create_at', '时间'),
- );
- $this->phpExcelList($field,$data,'报名列表');
- }
- public function phpExcelList($field=[],$list=[],$title='文件'){
- $PHPExcel=new \PHPExcel();
- $PHPSheet=$PHPExcel->getActiveSheet();
- $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
- foreach($list as $key=>$value)
- {
- foreach($field as $k=>$v){
- if($key == 0){
- $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
- }
- $i=$key+2;
- $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
- }
- }
- $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
- header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
- header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
- header('Cache-Control: max-age=0'); //禁止缓存
- $PHPWriter->save("php://output"); //输出到浏览器
- }
- protected function _form_result(&$id)
- {
- list($post,$ladder_data) = [$this->request->post(),[]];
- foreach (array_keys($post['ladder_title']) as $key) {
- $ladder_price = sprintf('%.2f',$post['ladder_price'][$key]);
- $sub_money = sprintf('%.2f',$post['sub_money'][$key]);
- if($sub_money > $ladder_price) $sub_money = $ladder_price;
- array_push($ladder_data, [
- 'act_id' => $id,
- 'ladder_id' => $post['ladder_id'][$key],
- 'ladder_title' => $post['ladder_title'][$key],
- 'is_sh' => intval($post['is_sh'][$key]),
- 'ladder_num' => intval($post['ladder_num'][$key]),
- 'stock' => intval($post['stock'][$key]),
- 'fill_num' => intval($post['fill_num'][$key]),
- 'ladder_status' => intval($post['ladder_status'][$key]),
- 'ladder_price' => $ladder_price,
- 'sub_money' => $sub_money,
- 'ladder_remark' => $post['ladder_remark'][$key],
- ]);
- }
- ActivityPrice::priceSet($id,$ladder_data);
- \app\common\model\Activity::esAdd($id);
- \app\common\model\TopSearch::saveData($id,'activity');
- // 站內信和極光
- if(isset($post['push_switch']) && $post['push_switch'] == 1) \app\common\service\Activity::activityChange($id);
- $this->success('操作成功', 'javascript:history.back()');
- }
- }
|