截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AfterSale.php 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\controller\after_sale;
  20. use app\common\basics\ShopBase;
  21. use app\common\server\JsonServer;
  22. use app\common\model\after_sale\AfterSale as AfterSaleModel;
  23. use app\shop\logic\after_sale\AfterSaleLogic;
  24. /**
  25. * 售后退款管理
  26. * Class Goods
  27. */
  28. class AfterSale extends ShopBase
  29. {
  30. /**
  31. * @notes 售后列表
  32. * @return \think\response\Json|\think\response\View
  33. * @author suny
  34. * @date 2021/7/14 10:12 上午
  35. */
  36. public function lists()
  37. {
  38. if ($this->request->isAjax()) {
  39. $get = $this->request->get();
  40. return JsonServer::success('', AfterSaleLogic::list($get, $this->shop_id));
  41. }
  42. $data = AfterSaleLogic::list([], $this->shop_id);
  43. // 售后状态
  44. $status = AfterSaleModel::getStatusDesc(true);
  45. $status = AfterSaleLogic::getStatus($status, $this->shop_id);
  46. $all = AfterSaleLogic::getAll($this->shop_id);
  47. return view('', [
  48. 'data' => $data,
  49. 'all' => $all,
  50. 'status' => $status
  51. ]);
  52. }
  53. /**
  54. * @notes 售后详情
  55. * @return \think\response\View
  56. * @author suny
  57. * @date 2021/7/14 10:13 上午
  58. */
  59. public function detail()
  60. {
  61. $id = $this->request->get('id');
  62. $detail = AfterSaleLogic::getDetail($id,$this->shop_id);
  63. return view('', [
  64. 'detail' => $detail
  65. ]);
  66. }
  67. /**
  68. * @notes 同意
  69. * @return \think\response\Json
  70. * @author suny
  71. * @date 2021/7/14 10:13 上午
  72. */
  73. public function agree()
  74. {
  75. if ($this->request->isAjax()) {
  76. $post = $this->request->post();
  77. $data = AfterSaleLogic::agree($post['id'], $this->shop_id);
  78. if($data !== false){
  79. return JsonServer::success('操作成功');
  80. }else{
  81. return JsonServer::error('该退款申请已撤销');
  82. }
  83. }
  84. }
  85. /**
  86. * @notes 拒绝
  87. * @return \think\response\Json
  88. * @author suny
  89. * @date 2021/7/14 10:13 上午
  90. */
  91. public function refuse()
  92. {
  93. if ($this->request->isAjax()) {
  94. $post = $this->request->post();
  95. AfterSaleLogic::refuse($post, $this->shop_id);
  96. return JsonServer::success('操作成功');
  97. }
  98. }
  99. /**
  100. * @notes 收货
  101. * @return \think\response\Json
  102. * @author suny
  103. * @date 2021/7/14 10:13 上午
  104. */
  105. public function take()
  106. {
  107. if ($this->request->isAjax()) {
  108. $post = $this->request->post();
  109. AfterSaleLogic::takeGoods($post, $this->admin_id);
  110. return JsonServer::success('操作成功');
  111. }
  112. }
  113. /**
  114. * @notes 拒绝收货
  115. * @return \think\response\Json
  116. * @author suny
  117. * @date 2021/7/14 10:13 上午
  118. */
  119. public function refuseGoods()
  120. {
  121. if ($this->request->isAjax()) {
  122. $post = $this->request->post();
  123. AfterSaleLogic::refuseGoods($post, $this->admin_id);
  124. return JsonServer::success('操作成功');
  125. }
  126. }
  127. /**
  128. * @notes 确认退款
  129. * @return \think\response\Json|\think\response\View
  130. * @throws \think\db\exception\DataNotFoundException
  131. * @throws \think\db\exception\ModelNotFoundException
  132. * @throws \think\exception\DbException
  133. * @author suny
  134. * @date 2021/7/14 10:13 上午
  135. */
  136. public function confirm()
  137. {
  138. if ($this->request->isAjax()) {
  139. $post = $this->request->post();
  140. $confirm = AfterSaleLogic::confirm($post, $this->admin_id);
  141. if($confirm !== true){
  142. return JsonServer::error($confirm,[],0,0);
  143. }
  144. return JsonServer::success('操作成功');
  145. }
  146. $id = $this->request->get('id');
  147. $refund_price = $this->request->get('refund_price');
  148. return view('',['id'=>$id,'refund_price'=>$refund_price]);
  149. }
  150. /**
  151. * @notes 导出Excel
  152. * @return \think\response\Json
  153. * @throws \think\db\exception\DataNotFoundException
  154. * @throws \think\db\exception\DbException
  155. * @throws \think\db\exception\ModelNotFoundException
  156. * @author 段誉
  157. * @date 2022/4/24 10:20
  158. */
  159. public function export()
  160. {
  161. $params = $this->request->get();
  162. $result = AfterSaleLogic::list($params, $this->shop_id, true);
  163. if(false === $result) {
  164. return JsonServer::error(AfterSaleLogic::getError() ?: '导出失败');
  165. }
  166. return JsonServer::success('', $result);
  167. }
  168. }