Files
huangjingfen/pro_v3.5.1/app/controller/api/pc/Refund.php

86 lines
2.4 KiB
PHP
Raw Normal View History

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\controller\api\pc;
use app\Request;
use app\services\order\StoreOrderRefundServices;
use think\annotation\Inject;
/**
* 售后订单
* Class RefundController
* @package app\controller\api\v1\order
*/
class Refund
{
/**
* @var StoreOrderRefundServices
*/
#[Inject]
protected StoreOrderRefundServices $services;
/**
* 订单列表
* @param Request $request
* @return mixed
*/
public function lst(Request $request)
{
$where = $request->getMore([
['refund_type', '', '', 'refundTypes']
]);
$where['uid'] = $request->uid();
$list = $this->services->getRefundOrderList($where);
return app('json')->successful($list);
}
/**
* 订单详情
* @param Request $request
* @param $uni
* @return mixed
*/
public function detail(StoreOrderRefundServices $services, Request $request, $uni)
{
$orderData = $services->refundDetail($uni);
return app('json')->successful('ok', $orderData);
}
/**
* 取消申请
* @param $id
* @return mixed
*/
public function cancelApply(Request $request, $uni)
{
if (!strlen(trim($uni))) return app('json')->fail('参数错误');
$uid = (int)$request->uid();
$this->services->cancelApplyRefund($uid, $uni);
return app('json')->success('取消成功');
}
/**
* 删除已退款和拒绝退款的订单
* @param Request $request
* @param $uni
* @return mixed
*/
public function delRefundOrder(Request $request, $uni)
{
if (!strlen(trim($uni))) return app('json')->fail('参数错误');
$uid = (int)$request->uid();
$this->services->delRefundOrder($uid, $uni);
return app('json')->success('删除成功');
}
}