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.
65 lines
2.1 KiB
65 lines
2.1 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
namespace app\api\controller\shop;
|
|
|
|
use think\response\Json;
|
|
use cores\exception\BaseException;
|
|
use app\api\controller\Controller;
|
|
use app\api\model\Setting as SettingModel;
|
|
use app\api\model\store\shop\Order as ShopOrderModel;
|
|
|
|
/**
|
|
* 自提订单管理
|
|
* Class Order
|
|
* @package app\api\controller\shop
|
|
*/
|
|
class Order extends Controller
|
|
{
|
|
/**
|
|
* 订单详情信息
|
|
* @param int $orderId 订单ID
|
|
* @return Json
|
|
* @throws BaseException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function detail(int $orderId): Json
|
|
{
|
|
// 订单详情
|
|
$order = ShopOrderModel::getUserOrderDetail($orderId);
|
|
return $this->renderSuccess([
|
|
'order' => $order, // 订单详情
|
|
'setting' => [
|
|
// 积分名称
|
|
'points_name' => SettingModel::getPointsName(),
|
|
],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* 确认核销 [已取货]
|
|
* @param int $orderId 订单ID
|
|
* @return Json
|
|
* @throws BaseException
|
|
*/
|
|
public function extract(int $orderId): Json
|
|
{
|
|
// 确认核销
|
|
$model = new ShopOrderModel;
|
|
if ($model->extract($orderId)) {
|
|
return $this->renderSuccess([], '订单核销成功');
|
|
}
|
|
return $this->renderError($model->getError() ?: '核销失败');
|
|
}
|
|
} |