BillApply.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <?php
  2. namespace app\synth\controller;
  3. use app\common\model\ActivityApply;
  4. use app\common\model\GoodsOrder;
  5. use app\common\model\LevelOrder;
  6. use app\common\model\StoreOrderRefund;
  7. use app\common\model\UserMessage;
  8. use library\Controller;
  9. use think\Db;
  10. class BillApply extends Controller
  11. {
  12. protected $table = 'BillApply';
  13. /**
  14. * 列表
  15. * @auth true
  16. * @menu true
  17. * @throws \think\Exception
  18. * @throws \think\db\exception\DataNotFoundException
  19. * @throws \think\db\exception\ModelNotFoundException
  20. * @throws \think\exception\DbException
  21. * @throws \think\exception\PDOException
  22. */
  23. public function index()
  24. {
  25. $this->title = '列表';
  26. $query = $this->_query($this->table);
  27. $this->type_arr = \app\common\model\BillType::getType();
  28. $where= [];
  29. $this->order_type = [1=>'会员订单',2=>'商城商品订单',3=>'活动报名订单'];
  30. $this->status = [0=>'未开票',1=>'已开票'];
  31. $data = input();
  32. $were[] = ['i.is_deleted','=',0];
  33. if($this->request->request('user_name')) $where[]= ['m.name','like','%'.$this->request->request('user_name').'%'];
  34. if($this->request->request('header')) $where[]= ['i.header','like','%'.$this->request->request('header').'%'];
  35. if($this->request->request('type')) $where[]= ['i.type','=',$this->request->request('type')];
  36. if($this->request->request('order_type')) $where[]= ['i.order_type','=',$this->request->request('order_type')];
  37. //if($this->request->request('status')) $where[]= ['i.status','=',$this->request->request('status')];
  38. if(isset($data['status']) && $data['status'] != '-1'){
  39. $where[]= ['i.status','=',$this->request->request('status')];
  40. }
  41. if($this->request->request('order_no')) {
  42. if($this->request->request('order_type') < 0){
  43. $this->error('请先选择订单类型');
  44. }else{
  45. if($this->request->request('order_type') == 1){
  46. $where[]= ['l.order_no','=',$this->request->request('order_no')];
  47. }else if($this->request->request('order_type') == 2){
  48. $where[]= ['s.order_no','=',$this->request->request('order_no')];
  49. }else if($this->request->request('order_type') == 3){
  50. $where[]= ['a.order_no','=',$this->request->request('order_no')];
  51. }
  52. }
  53. }
  54. $query->alias('i')->field('i.* ,b.title type_name,m.headimg,m.name as user_name,m.phone,l.order_no')
  55. ->Leftjoin('store_member m',' m.id = i.user_id ')
  56. ->Leftjoin('level_order l',' l.id = i.order_id ')
  57. ->Leftjoin('store_order s',' s.id = i.order_id ')
  58. ->Leftjoin('activity_apply a',' a.id = i.order_id ')
  59. ->join('bill_type b',' b.id = i.type ','LEFT');
  60. $arr = ['is_new' => 0];
  61. \app\common\model\BillApply::alias('f')->where('is_new',1)->update($arr);
  62. if(!empty($where)) $query->where($where);
  63. $query ->order('i.id desc')->page();
  64. }
  65. protected function _index_page_filter(array &$data)
  66. {
  67. }
  68. /**
  69. * 删除
  70. * @auth true
  71. * @menu true
  72. * @param array $data
  73. * @throws \think\db\exception\DataNotFoundException
  74. * @throws \think\db\exception\ModelNotFoundException
  75. * @throws \think\exception\DbException
  76. */
  77. public function remove()
  78. {
  79. $this->_save($this->table, ['is_deleted' => '1']);
  80. }
  81. /**
  82. * 编辑
  83. * @auth true
  84. * @menu true
  85. * @throws \think\Exception
  86. * @throws \think\db\exception\DataNotFoundException
  87. * @throws \think\db\exception\ModelNotFoundException
  88. * @throws \think\exception\DbException
  89. * @throws \think\exception\PDOException
  90. */
  91. public function edit()
  92. {
  93. $this->title = '编辑';
  94. $this->_form($this->table, 'form');
  95. }
  96. /**
  97. * 表单数据处理
  98. * @auth true
  99. * @menu true
  100. * @param array $data
  101. */
  102. protected function _form_filter(&$data)
  103. {
  104. if ($this->request->isGet() && $this->request->action() == 'edit'){
  105. // 退款金额
  106. $refund_money = StoreOrderRefund::getRefundMoney($data['order_id'],1);
  107. $data['refund_money'] = $refund_money;
  108. if($data['order_type'] == 1) $order_info = LevelOrder::where('id',$data['order_id'])->find()->toArray();
  109. if($data['order_type'] == 2) $order_info = GoodsOrder::where('id',$data['order_id'])->find()->toArray();
  110. if($data['order_type'] == 3) $order_info = ActivityApply::where('id',$data['order_id'])->find()->toArray();
  111. $data['order_info'] = $order_info;
  112. $data['type_name'] = \app\common\model\BillType::where('id',$data['type'])->value('title');
  113. if($data['address_info']) $data['address_info'] = json_decode($data['address_info'],true);
  114. $this->data = $data;
  115. }
  116. if ($this->request->isPost() && $this->request->action() == 'deliver') {
  117. $express_company = Db::name('express_company')->field('id,express_title')->find($data['express_company_id']);
  118. $data['express_company_title'] = $express_company['express_title'] ? $express_company['express_title'] : '';
  119. $data['express_send_at'] = date("Y-m-d H:i:s");
  120. $data['express_state'] = 1;
  121. }
  122. }
  123. /**
  124. * 修改快递
  125. * @auth true
  126. * @throws \think\Exception
  127. * @throws \think\db\exception\DataNotFoundException
  128. * @throws \think\db\exception\ModelNotFoundException
  129. * @throws \think\exception\DbException
  130. * @throws \think\exception\PDOException
  131. */
  132. public function express()
  133. {
  134. if ($this->request->isGet()) {
  135. $where = ['is_deleted' => '0', 'status' => '1'];
  136. $this->expressList = Db::name('express_company')->where($where)->order('sort desc,id desc')->select();
  137. $info = \app\common\model\BillApply::where('id',input('id'))->find();
  138. if($info['address_info']) $info['address_info'] = json_decode($info['address_info'],true);
  139. $this->vo = $info;
  140. }
  141. $this->_form($this->table);
  142. }
  143. /**
  144. * 快递表单处理
  145. * @param array $vo
  146. * @throws \think\db\exception\DataNotFoundException
  147. * @throws \think\db\exception\ModelNotFoundException
  148. * @throws \think\exception\DbException
  149. */
  150. protected function _express_form_filter(&$vo)
  151. {
  152. if ($this->request->isPost()) {
  153. $order = Db::name($this->table)->where(['id' => $vo['id']])->find();
  154. if (empty($order)) $this->error('订单查询异常,请稍候再试!');
  155. $express = Db::name('express_company')->where(['express_code' => $vo['express_company_code']])->find();
  156. if (empty($express)) $this->error('发货快递公司异常,请重新选择快递公司!');
  157. $vo['express_company_title'] = $express['express_title'];
  158. $vo['express_send_at'] = empty($order['express_send_at']) ? date('Y-m-d H:i:s') : $order['express_send_at'];
  159. $vo['express_state'] = '1';
  160. $vo['status'] = '1';
  161. $vo['bill_time'] = date("Y-m-d H:i:s");
  162. $info = \app\common\model\BillApply::where('b.id', $vo['id'])->alias('b')->field('b.user_id,y.act_id,b.order_type')
  163. ->leftJoin('ActivityApply y','y.id = b.order_id')->find()->toArray();
  164. UserMessage::sendUserMessage($info['user_id'],'activity',5,1,0,$info['act_id'],'',$vo['id']);
  165. }
  166. }
  167. public function billImageSave()
  168. {
  169. if($this->request->isPost()) {
  170. $id = input('post.id');
  171. $bill_img = input('post.bill_img');
  172. \app\common\model\BillApply::where('id',$id)->update(['bill_img'=>$bill_img,'bill_time'=>date("Y-m-d H:i:s"),'status'=>1]);
  173. $info = \app\common\model\BillApply::where('b.id',$id)->alias('b')->field('b.id,b.user_id,y.act_id,b.order_type,b.order_id')
  174. ->leftJoin('ActivityApply y','y.id = b.order_id')->find()->toArray();
  175. if($info['order_type'] == 1){
  176. UserMessage::sendUserMessage($info['user_id'],'user',5,0,0,$info['order_id'],'',$id);
  177. }else if($info['order_type'] == 2){
  178. UserMessage::sendUserMessage($info['user_id'],'mall',5,0,0,$info['order_id'],'',$id);
  179. }else{
  180. UserMessage::sendUserMessage($info['user_id'],'activity',5,0,0,$info['order_id'],'',$id);
  181. }
  182. //UserMessage::sendUserMessage($info['user_id'],'activity',5,0,0,$info['act_id'],'',$id);
  183. $this->success('保存成功');
  184. }
  185. }
  186. }