148 lines
4.0 KiB
PHP
148 lines
4.0 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( https://opensource.org/licenses/mit-license.php )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Devil
|
|
// +----------------------------------------------------------------------
|
|
namespace app\api\controller;
|
|
|
|
use app\service\ApiService;
|
|
use app\service\SystemBaseService;
|
|
use app\service\OrderAftersaleService;
|
|
use app\service\ResourcesService;
|
|
|
|
/**
|
|
* 订单售后
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2019-10-04T21:51:08+0800
|
|
*/
|
|
class Orderaftersale extends Common
|
|
{
|
|
/**
|
|
* 构造方法
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-11-30
|
|
* @desc description
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
// 是否登录
|
|
$this->IsLogin();
|
|
}
|
|
|
|
/**
|
|
* 列表
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-09-28
|
|
* @desc description
|
|
*/
|
|
public function Index()
|
|
{
|
|
// 参数
|
|
$params = $this->data_request;
|
|
$params['user'] = $this->user;
|
|
$params['user_type'] = 'user';
|
|
|
|
// 条件
|
|
$where = OrderAftersaleService::OrderAftersaleListWhere($params);
|
|
|
|
// 获取总数
|
|
$total = OrderAftersaleService::OrderAftersaleTotal($where);
|
|
$page_total = ceil($total/$this->page_size);
|
|
$start = intval(($this->page-1)*$this->page_size);
|
|
|
|
// 获取列表
|
|
$data_params = [
|
|
'm' => $start,
|
|
'n' => $this->page_size,
|
|
'where' => $where,
|
|
];
|
|
$data = OrderAftersaleService::OrderAftersaleList($data_params);
|
|
|
|
// 返回数据
|
|
$result = [
|
|
'total' => $total,
|
|
'page_total' => $page_total,
|
|
'data' => $data['data'],
|
|
];
|
|
return ApiService::ApiDataReturn(SystemBaseService::DataReturn($result));
|
|
}
|
|
|
|
/**
|
|
* 详情
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2019-05-21
|
|
* @desc description
|
|
*/
|
|
public function Detail()
|
|
{
|
|
$params = $this->data_request;
|
|
$params['user'] = $this->user;
|
|
$ret = OrderAftersaleService::OrderAftersaleDetailData($params);
|
|
if($ret['code'] == 0)
|
|
{
|
|
$ret = SystemBaseService::DataReturn($ret['data'], $ret['msg'], $ret['code']);
|
|
}
|
|
return ApiService::ApiDataReturn($ret);
|
|
}
|
|
|
|
/**
|
|
* 申请售后创建
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2019-05-23
|
|
* @desc description
|
|
*/
|
|
public function Create()
|
|
{
|
|
$params = $this->data_request;
|
|
$params['user'] = $this->user;
|
|
return ApiService::ApiDataReturn(OrderAftersaleService::AftersaleCreate($params));
|
|
}
|
|
|
|
/**
|
|
* 用户退货
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2019-05-23
|
|
* @desc description
|
|
*/
|
|
public function Delivery()
|
|
{
|
|
$params = $this->data_request;
|
|
$params['user'] = $this->user;
|
|
return ApiService::ApiDataReturn(OrderAftersaleService::AftersaleDelivery($params));
|
|
}
|
|
|
|
/**
|
|
* 订单取消
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-09-30
|
|
* @desc description
|
|
*/
|
|
public function Cancel()
|
|
{
|
|
$params = $this->data_request;
|
|
$params['user'] = $this->user;
|
|
return ApiService::ApiDataReturn(OrderAftersaleService::AftersaleCancel($params));
|
|
}
|
|
}
|
|
?>
|