Files
shopxo/app/admin/controller/Orderaftersale.php

133 lines
3.6 KiB
PHP
Raw Permalink Normal View History

2019-05-27 18:40:31 +08:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
2021-03-16 10:34:52 +08:00
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
2019-05-27 18:40:31 +08:00
// +----------------------------------------------------------------------
2021-03-16 10:34:52 +08:00
// | Licensed ( https://opensource.org/licenses/mit-license.php )
2019-05-27 18:40:31 +08:00
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\admin\controller;
use app\admin\controller\Base;
use app\service\ApiService;
2019-05-27 18:40:31 +08:00
use app\service\OrderAftersaleService;
/**
* 订单售后
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-01T21:51:08+0800
*/
class Orderaftersale extends Base
2019-05-27 18:40:31 +08:00
{
/**
2022-08-02 17:23:10 +08:00
* 列表
2019-05-27 18:40:31 +08:00
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-09-28
* @desc description
*/
public function Index()
{
// 静态数据
2023-08-27 16:59:15 +08:00
MyViewAssign('common_order_aftersale_refundment_list', MyConst('common_order_aftersale_refundment_list'));
2021-07-18 23:42:10 +08:00
return MyView();
2019-05-27 18:40:31 +08:00
}
2020-05-15 19:23:05 +08:00
/**
* 详情
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @datetime 2019-08-05T08:21:54+0800
*/
public function Detail()
{
2021-07-18 23:42:10 +08:00
return MyView();
2020-05-15 19:23:05 +08:00
}
2019-05-27 18:40:31 +08:00
/**
* 确认
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-05-23
* @desc description
*/
public function Confirm()
{
2020-06-08 22:38:02 +08:00
$params = $this->data_request;
2024-04-15 10:25:01 +08:00
$params['creator'] = $this->admin['id'];
$params['creator_name'] = $this->admin['username'];
return ApiService::ApiDataReturn(OrderAftersaleService::AftersaleConfirm($params));
2019-05-27 18:40:31 +08:00
}
/**
* 审核
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-05-23
* @desc description
*/
public function Audit()
{
2020-06-08 22:38:02 +08:00
$params = $this->data_request;
2019-05-28 16:51:56 +08:00
$params['creator'] = $this->admin['id'];
$params['creator_name'] = $this->admin['username'];
return ApiService::ApiDataReturn(OrderAftersaleService::AftersaleAudit($params));
2019-05-27 18:40:31 +08:00
}
2019-05-28 16:07:36 +08:00
/**
* 拒绝
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2019-05-23
* @desc description
*/
public function Refuse()
{
2020-06-08 22:38:02 +08:00
$params = $this->data_request;
2019-05-29 17:55:41 +08:00
$params['creator'] = $this->admin['id'];
$params['creator_name'] = $this->admin['username'];
return ApiService::ApiDataReturn(OrderAftersaleService::AftersaleRefuse($params));
2019-05-28 16:07:36 +08:00
}
2019-05-27 18:40:31 +08:00
/**
2022-08-02 17:23:10 +08:00
* 取消
2019-05-27 18:40:31 +08:00
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-09-30
* @desc description
*/
public function Cancel()
{
2020-06-08 22:38:02 +08:00
$params = $this->data_request;
2019-05-29 17:55:41 +08:00
$params['creator'] = $this->admin['id'];
$params['creator_name'] = $this->admin['username'];
return ApiService::ApiDataReturn(OrderAftersaleService::AftersaleCancel($params));
2019-05-27 18:40:31 +08:00
}
2019-05-29 17:55:41 +08:00
/**
2022-08-02 17:23:10 +08:00
* 删除
2019-05-29 17:55:41 +08:00
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-09-30
* @desc description
*/
public function Delete()
{
2020-06-08 22:38:02 +08:00
$params = $this->data_request;
2019-05-29 17:55:41 +08:00
$params['creator'] = $this->admin['id'];
$params['creator_name'] = $this->admin['username'];
return ApiService::ApiDataReturn(OrderAftersaleService::AftersaleDelete($params));
2019-05-29 17:55:41 +08:00
}
2019-05-27 18:40:31 +08:00
}
?>