ActivityApplyItem.php 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. namespace app\operate\controller;
  3. use app\common\model\StoreOrderRefund;
  4. use app\common\model\UserMessage;
  5. use app\common\service\OrderCallback;
  6. use app\common\service\UserSynth;
  7. use library\Controller;
  8. use think\Db;
  9. /**
  10. * 活动
  11. * Class ActivityApplyItem
  12. * @package app\operate\controller
  13. */
  14. class ActivityApplyItem extends Controller
  15. {
  16. protected $table = 'ActivityApplyItem';
  17. /**
  18. * 列表
  19. * @auth true
  20. * @menu true
  21. * @throws \think\Exception
  22. * @throws \think\db\exception\DataNotFoundException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. * @throws \think\exception\DbException
  25. * @throws \think\exception\PDOException
  26. */
  27. public function index()
  28. {
  29. $this->status_list = [0=>'待审核',1=>'审核通过',2=>'审核拒绝'];
  30. $this->sh_status = $this->request->get('sh_status',-1);
  31. $id = $this->request->get('act_id');
  32. $name = $this->request->get('name');
  33. $phone = $this->request->get('phone');
  34. $qr_content = $this->request->get('qr_content');
  35. $sh_status = $this->request->get('sh_status',-1);
  36. $this->title = '报名记录';
  37. $where = [];
  38. $where[]= ['a.act_id','=' ,$id];
  39. $where[]= ['a.is_deleted','=' ,0];
  40. $where[]= ['o.pay_state','=' ,1];
  41. if($name) $where[]= ['a.name','like' ,'%'.$name.'%'];
  42. if($phone) $where[]= ['a.phone','like' ,'%'.$phone.'%'];
  43. if($qr_content) $where[]= ['a.qr_content','like' ,'%'.$phone.'%'];
  44. if(in_array($sh_status,[0,1,2])) $where[]= ['a.sh_status','=' ,$sh_status];
  45. $query = $this->_query('activity_apply_item')
  46. ->alias('a')
  47. ->field('a.*,u.headimg,o.order_no')
  48. ->where($where)
  49. ->leftJoin('store_member u','u.id = a.user_id')
  50. ->leftJoin('activity_apply o','o.id = a.apply_id')
  51. ->order('a.id desc')->page();
  52. }
  53. protected function _index_page_filter(array &$data)
  54. {
  55. foreach ($data as &$vo) {
  56. $vo['refund_status'] = StoreOrderRefund::where('order_type',1)->where('order_id',$vo['apply_id'])->where('item_id',$vo['id'])->value('status');
  57. }
  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. $this->_save($this->table, ['is_deleted' => '1']);
  83. }
  84. /**
  85. * 批量删除
  86. * @auth true
  87. * @throws \think\Exception
  88. * @throws \think\exception\PDOException
  89. */
  90. public function remove()
  91. {
  92. $this->_save($this->table, ['is_deleted' => '1']);
  93. }
  94. /**
  95. * 表单数据处理
  96. * @auth true
  97. * @menu true
  98. * @param array $data
  99. */
  100. protected function _form_filter(&$data)
  101. {
  102. if($this->request->isGet() && $this->request->action() == 'edit')
  103. {
  104. if(isset($data['extend'])) $data['extend'] = json_decode($data['extend'],true);
  105. }
  106. if($this->request->isPost() && $this->request->action() == 'edit')
  107. {
  108. $ticket_info = \app\common\model\ActivityApplyItem::where('id',$data['id'])->find()->toArray();
  109. // 审核成功
  110. if($data['sh_status'] == 1)
  111. {
  112. if($data['sh_status'] == 1 && $ticket_info['sh_status'] !=1)
  113. {
  114. if(!$ticket_info['qr_code']) {
  115. $qrCode = new \Endroid\QrCode\QrCode();
  116. // 生成核销码
  117. $qr_content = $ticket_info['act_id'].'-'.$ticket_info['apply_id'].'-'.$ticket_info['id'];
  118. $qrCode->setText($qr_content);
  119. $qrCode->setSize(200);
  120. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/code';
  121. $filename = $dir.'/'.$ticket_info['id'].'.png';
  122. $qrCode->writeFile($filename);
  123. $url='http://'.$_SERVER['SERVER_NAME']."/code/".$ticket_info['id'].'.png';
  124. \app\common\model\ActivityApplyItem::where('id',$ticket_info['id'])->update(['qr_code'=>$url,'qr_content'=>$qr_content]);
  125. }
  126. $act_title = \app\common\model\Activity::where('id',$ticket_info['act_id'])->value('title');
  127. $message = '您已成功报名"'.$act_title.'"';//点击<a href=\"$info_url\">查看详情及点子门票</a>";
  128. UserMessage::sendUserMessage($ticket_info['user_id'],'activity',1,1,0,$ticket_info['id'],$message,$ticket_info['id']);
  129. UserSynth::ticketSend($ticket_info['id']);
  130. }
  131. if($ticket_info['sh_status'] != 1 && $ticket_info['phone'] && $ticket_info['phone_pre'] == '86') {
  132. $act_info = \app\common\model\Activity::where('id',$ticket_info['act_id'])->find()->toArray();
  133. UserSynth::phoneMessageSend($ticket_info['phone'],1, [
  134. 'ActivityName'=>$act_info['title'],
  135. 'url'=>'dist/#/activity_ticket_info?id='.$ticket_info['id'],
  136. ]);
  137. $info_url = 'https://'.$_SERVER['HTTP_HOST'].'/dist/#/activity_ticket_info?id='.$ticket_info['id'];
  138. }
  139. }
  140. // 审核拒绝
  141. if($data['sh_status'] == 2) {
  142. $order_id = \app\common\model\ActivityApplyItem::where('id',$data['id'])->value('apply_id');
  143. $res = \app\common\service\Activity:: orderApplyRefund($order_id,$data['id'],2,1);
  144. $info_url = 'https://'.$_SERVER['HTTP_HOST'].'/dist/#/activity-detail?id='.$ticket_info['act_id'];
  145. $act_title = \app\common\model\Activity::where('id',$ticket_info['act_id'])->value('title');
  146. $message = '很抱歉,您报名的"'.$act_title.'"审核未通过';//,点击<a href=\"$info_url\">重新报名</a>";
  147. UserMessage::sendUserMessage($ticket_info['user_id'],'activity',1,1,0,$ticket_info['id'],$message,$ticket_info['id']);
  148. }
  149. }
  150. }
  151. /**
  152. * 确认收款
  153. * @auth true
  154. * @throws \think\Exception
  155. * @throws \think\exception\PDOException
  156. */
  157. public function confirm()
  158. {
  159. $order_info = \app\common\model\ActivityApply::where('id',input('id'))->find()->toArray();
  160. $back_res = OrderCallback::activityOrderCallBack($order_info);// 支付完成后回调
  161. if(!$back_res['ret_val']) $this->error($back_res['msg']);
  162. $this->success('操作成功');
  163. }
  164. /**
  165. * 退款
  166. * @auth true
  167. * @menu true
  168. * @throws \think\Exception
  169. * @throws \think\db\exception\DataNotFoundException
  170. * @throws \think\db\exception\ModelNotFoundException
  171. * @throws \think\exception\DbException
  172. * @throws \think\exception\PDOException
  173. */
  174. public function refund()
  175. {
  176. $ticket_info = \app\common\model\ActivityApplyItem::where('id',input('id'))->find()->toArray();
  177. $refund_id = StoreOrderRefund::where('order_type',1)->where('order_id',$ticket_info['apply_id'])->where('item_id',$ticket_info['id'])->value('id');
  178. $back_res = \app\common\service\Activity:: orderRefund($refund_id);// 支付完成后回调
  179. if($back_res['code'] != 200) $this->error($back_res['msg']);
  180. $this->success('操作成功');
  181. }
  182. /**
  183. * 核销
  184. * @auth true
  185. * @menu true
  186. * @throws \think\Exception
  187. * @throws \think\db\exception\DataNotFoundException
  188. * @throws \think\db\exception\ModelNotFoundException
  189. * @throws \think\exception\DbException
  190. * @throws \think\exception\PDOException
  191. */
  192. public function hx()
  193. {
  194. if($this->request->isPost()) {
  195. $qr_content = input('post.qr_content');
  196. if(!$qr_content) $this->error('没有核销内容');
  197. $item_info = \app\common\model\ActivityApplyItem::where(['i.qr_content'=>$qr_content,'is_hx'=>0])
  198. ->alias('i')->field('i.is_hx,i.status,i.apply_id,i.is_deleted,a.status,a.cancel_state,a.pay_state,a.refund_state')
  199. ->leftJoin("ActivityApply a",'a.id = i.apply_id')->find();
  200. if(!$item_info) $this->error('没有找到核销记录');
  201. if($item_info->pay_state)$this->error('订单已取消');
  202. $refund_info = StoreOrderRefund::getRefundInfo($item_info['apply_id'],$item_info['id'],1);
  203. if(!empty($refund_info && in_array($refund_info['status'],[0,1,3,5])))$this->error('已申请退款');
  204. //if(!in_array($item_info->refund_state,[0,3]))$this->error('订单已申请退款');
  205. if(!in_array($item_info->status,[1]))$this->error('票状态异常');
  206. \app\common\model\ActivityApplyItem::where('id',$item_info['id'])->update(['is_hx'=>1,'ticket_status'=>1]);
  207. $this->success('核销成功');
  208. }
  209. $this->_form($this->table, 'hx');
  210. }
  211. }