RefundOrder.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <?php
  2. namespace app\order\controller;
  3. use app\common\model\GoodsOrder;
  4. use app\common\model\GoodsOrderItem;
  5. use app\common\model\GoodsOrderRefund;
  6. use app\common\model\OrderRefundCase;
  7. use app\common\model\StoreOrderRefund;
  8. use app\common\model\UserMessage;
  9. use app\common\service\OrderCallback;
  10. use EasyWeChat\Factory;
  11. use library\Controller;
  12. use think\Db;
  13. /**
  14. * 商品订单
  15. * Class CustomOrder
  16. * @package app\order\controller
  17. */
  18. class RefundOrder extends Controller
  19. {
  20. protected $table = 'StoreOrderRefund';
  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->title = '订单管理';
  34. $this->order_status = ['待支付','已支付'];
  35. $this->all_pay_type = all_pay_type();
  36. $query = $this->_query($this->table);
  37. $where = [];
  38. $where[] = ['o.is_deleted','=',0];
  39. $where[] = ['r.order_type','=',2];
  40. $where[] = ['r.status','<>',5];
  41. if($this->request->request('tel'))$where[]= ['u.phone','like','%'.$this->request->request('tel').'%'];
  42. if($this->request->request('order_no'))$where[]= ['o.order_no','like','%'.$this->request->request('order_no').'%'];
  43. if($this->request->request('user_name'))$where[]= ['u.name','like','%'.$this->request->request('user_name').'%'];
  44. $query->alias('r')
  45. ->field('r.express_time,r.consignee_add,r.consignee_name,r.consignee_tel,r.express_company,r.express_no,r.id as rid,refund_type,r.create_at as rtime,r.status as rstatus,r.express_info,r.order_id,r.refund_money,r.order_type, u.name ,u.phone as user_phone,u.headimg, o.*')
  46. ->join('StoreMember u','r.user_id = u.id ','LEFT')
  47. ->join('StoreOrder o',' o.id = r.order_id ','LEFT');
  48. $arr = ['is_new' => 0];
  49. \app\common\model\StoreOrderRefund::alias('f')->where('is_new',1)->update($arr);
  50. if(!empty($where)) $query->where($where);
  51. $query ->order('r.create_at desc')->page();
  52. }
  53. /**
  54. * 订单列表处理
  55. * @param array $data
  56. * @throws \think\db\exception\DataNotFoundException
  57. * @throws \think\db\exception\ModelNotFoundException
  58. * @throws \think\exception\DbException
  59. */
  60. protected function _index_page_filter(array &$data)
  61. {
  62. foreach ($data as &$vo) {
  63. $vo['item_list'] = GoodsOrderItem::field('i.num,i.sell_price,g.name,i.goods_spec')
  64. ->alias('i')
  65. ->where(['i.order_id'=>$vo['id']])
  66. ->leftJoin('StoreGoods g','g.id = i.goods_id')
  67. ->select();
  68. }
  69. }
  70. /**
  71. * 订单审核
  72. * @auth true
  73. * @menu true
  74. * @throws \think\Exception
  75. * @throws \think\db\exception\DataNotFoundException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. * @throws \think\exception\DbException
  78. * @throws \think\exception\PDOException
  79. */
  80. public function audit()
  81. {
  82. $this->title = '审核';
  83. $this->_form($this->table);
  84. }
  85. /**
  86. * 表单数据处理
  87. * @auth true
  88. * @menu true
  89. * @param array $data
  90. */
  91. protected function _form_filter(&$data)
  92. {
  93. if($this->request->isGet() && $this->request->action() == 'audit'){
  94. $this->order_info = GoodsOrder::where('id',$data['order_id'])->find()->toArray();
  95. $data['apply_case_title'] = OrderRefundCase::where('id',$data['apply_case'])->value('title');
  96. }
  97. if($this->request->isPost() && $this->request->action() == 'audit'){
  98. if($data['price_total'] < $data['refund_money']) $this->error('退款金额不能超过支付金额');
  99. }
  100. }
  101. protected function _form_result($id)
  102. {
  103. if($this->request->isPost() && $this->request->action() == 'audit'){
  104. $refund_info = StoreOrderRefund::where('id',$id)->find()->toArray();
  105. $status = input('post.status');
  106. $sh_status = 1;
  107. switch ($status){
  108. case 1:
  109. $sh_status = 3;
  110. break;
  111. case 2:
  112. $sh_status = 2;
  113. break;
  114. case 3:
  115. $sh_status = 3;
  116. break;
  117. }
  118. if($sh_status > 1){
  119. GoodsOrder::where('id',$refund_info['order_id'])->update(['refund_state'=>$sh_status]);
  120. UserMessage::sendUserMessage($refund_info['user_id'],'mall',1,0,0,$refund_info['order_id'],'您的退款申请已通过审核',$refund_info['order_id']);
  121. }
  122. if($status == 3) {
  123. $res = OrderCallback::refundMoney($refund_info,[],$refund_info['order_id']);
  124. if($res['code'] != 200) StoreOrderRefund::where('id',$id)->update(['status'=>4]);
  125. if($res['code'] == 200){
  126. UserMessage::sendUserMessage($refund_info['user_id'],'mall',1,0,0,$refund_info['order_id'],'退款成功',$refund_info['order_id']);
  127. $this->success($res['msg']);
  128. }else{
  129. $this->error($res['msg']);
  130. }
  131. }
  132. StoreOrderRefund::where('id',$id)->update(['examine_time'=>date('Y-m-d H:i:s')]);
  133. }
  134. }
  135. public function refund()
  136. {
  137. if($this->request->isPost()){
  138. $id = input('post.id');
  139. $refund_info = GoodsOrderRefund::where('id',$id)->find()->toArray();
  140. $order_info = GoodsOrder::where('id',$refund_info['order_id'])->find()->toArray();
  141. if($refund_info['status'] == 3) $this->error('已退款');
  142. if($refund_info['status'] == 5) $this->error('申请已取消');
  143. if ($order_info['price_total'] < $refund_info['refund_money'])return $this->error('退款金额错误');
  144. $res = OrderCallback::refundMoney($refund_info,$order_info,$refund_info['order_id']);
  145. if($res['code'] == 200) {
  146. UserMessage::sendUserMessage($refund_info['user_id'],'mall',1,0,0,$refund_info['order_id'],'退款成功',$refund_info['order_id']);
  147. $this->success($res['msg']);
  148. }else{
  149. $this->error($res['msg']);
  150. };
  151. }
  152. }
  153. }