123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop开源商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
- // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | likeshop团队版权所有并拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshop.cn.team
- // +----------------------------------------------------------------------
-
-
- namespace app\shop\controller\after_sale;
-
-
- use app\common\basics\ShopBase;
- use app\common\server\JsonServer;
- use app\common\model\after_sale\AfterSale as AfterSaleModel;
- use app\shop\logic\after_sale\AfterSaleLogic;
-
-
- /**
- * 售后退款管理
- * Class Goods
- */
- class AfterSale extends ShopBase
- {
- /**
- * @notes 售后列表
- * @return \think\response\Json|\think\response\View
- * @author suny
- * @date 2021/7/14 10:12 上午
- */
- public function lists()
- {
-
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- return JsonServer::success('', AfterSaleLogic::list($get, $this->shop_id));
- }
- $data = AfterSaleLogic::list([], $this->shop_id);
- // 售后状态
- $status = AfterSaleModel::getStatusDesc(true);
- $status = AfterSaleLogic::getStatus($status, $this->shop_id);
- $all = AfterSaleLogic::getAll($this->shop_id);
- return view('', [
- 'data' => $data,
- 'all' => $all,
- 'status' => $status
- ]);
- }
-
- /**
- * @notes 售后详情
- * @return \think\response\View
- * @author suny
- * @date 2021/7/14 10:13 上午
- */
- public function detail()
- {
-
- $id = $this->request->get('id');
- $detail = AfterSaleLogic::getDetail($id,$this->shop_id);
- return view('', [
- 'detail' => $detail
- ]);
- }
-
- /**
- * @notes 同意
- * @return \think\response\Json
- * @author suny
- * @date 2021/7/14 10:13 上午
- */
- public function agree()
- {
-
- if ($this->request->isAjax()) {
- $post = $this->request->post();
- $data = AfterSaleLogic::agree($post['id'], $this->shop_id);
- if($data !== false){
- return JsonServer::success('操作成功');
- }else{
- return JsonServer::error('该退款申请已撤销');
- }
- }
- }
-
- /**
- * @notes 拒绝
- * @return \think\response\Json
- * @author suny
- * @date 2021/7/14 10:13 上午
- */
- public function refuse()
- {
-
- if ($this->request->isAjax()) {
- $post = $this->request->post();
- AfterSaleLogic::refuse($post, $this->shop_id);
- return JsonServer::success('操作成功');
- }
-
- }
-
- /**
- * @notes 收货
- * @return \think\response\Json
- * @author suny
- * @date 2021/7/14 10:13 上午
- */
- public function take()
- {
-
- if ($this->request->isAjax()) {
- $post = $this->request->post();
- AfterSaleLogic::takeGoods($post, $this->admin_id);
- return JsonServer::success('操作成功');
- }
- }
-
- /**
- * @notes 拒绝收货
- * @return \think\response\Json
- * @author suny
- * @date 2021/7/14 10:13 上午
- */
- public function refuseGoods()
- {
-
- if ($this->request->isAjax()) {
- $post = $this->request->post();
- AfterSaleLogic::refuseGoods($post, $this->admin_id);
- return JsonServer::success('操作成功');
- }
- }
-
-
- /**
- * @notes 确认退款
- * @return \think\response\Json|\think\response\View
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @author suny
- * @date 2021/7/14 10:13 上午
- */
- public function confirm()
- {
- if ($this->request->isAjax()) {
- $post = $this->request->post();
- $confirm = AfterSaleLogic::confirm($post, $this->admin_id);
- if($confirm !== true){
- return JsonServer::error($confirm,[],0,0);
- }
- return JsonServer::success('操作成功');
- }
- $id = $this->request->get('id');
- $refund_price = $this->request->get('refund_price');
- return view('',['id'=>$id,'refund_price'=>$refund_price]);
- }
-
-
- /**
- * @notes 导出Excel
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/24 10:20
- */
- public function export()
- {
- $params = $this->request->get();
- $result = AfterSaleLogic::list($params, $this->shop_id, true);
- if(false === $result) {
- return JsonServer::error(AfterSaleLogic::getError() ?: '导出失败');
- }
- return JsonServer::success('', $result);
- }
- }
|