add refund

This commit is contained in:
2026-03-13 11:37:37 +08:00
parent 8a0166508f
commit ca2881a1e7
4 changed files with 783 additions and 0 deletions
@@ -0,0 +1,156 @@
<?php
declare(strict_types=1);
namespace App\Controller\Api\V1;
use App\Controller\AbstractDataController;
use App\Middleware\AuthMiddleware;
use App\Middleware\PermissionMiddleware;
use App\Model\Refund;
use Hyperf\HttpServer\Annotation\Controller;
use Hyperf\HttpServer\Annotation\Middleware;
use Hyperf\HttpServer\Annotation\RequestMapping;
use OpenApi\Attributes as OA;
use Psr\Http\Message\ResponseInterface;
/**
* 退款管理接口(Normal Category
*
* 返回所有 parsed 字段,不含 raw/hash
*/
#[OA\Tag(name: 'Refunds', description: '退款管理')]
#[Controller(prefix: "/api/v1/refunds")]
#[Middleware(AuthMiddleware::class)]
#[Middleware(PermissionMiddleware::class)]
class RefundController extends AbstractDataController
{
protected function getModelClass(): string
{
return Refund::class;
}
protected function getListFields(): array
{
return [
'id', 'company_id', 'platform_id', 'store_id',
'platform_refund_id', 'platform_order_id',
'refund_status_id', 'refund_type_id',
'refund_amount', 'freight_refund', 'refund_total', 'currency',
'created_date', 'completed_date',
];
}
protected function getDetailFields(): array
{
return [
'id', 'company_id', 'platform_id', 'store_id',
'order_id', 'platform_order_id', 'platform_refund_id',
'buyer_user_id', 'refund_status_id', 'refund_type_id',
'reason', 'refund_amount', 'freight_refund', 'refund_total', 'currency',
'order_created_date', 'order_paid_date',
'created_date', 'updated_date', 'completed_date',
'ext', 'created_at', 'updated_at',
];
}
protected function getAllowedFilters(): array
{
return [
'company_id' => 'exact',
'platform_id' => 'exact',
'store_id' => 'exact',
'refund_status_id' => 'exact',
'refund_type_id' => 'exact',
'platform_refund_id' => 'exact',
'platform_order_id' => 'exact',
'created_date_from' => 'date_from',
'created_date_to' => 'date_to',
];
}
protected function getDefaultSort(): string
{
return 'created_date';
}
/**
* 退款列表
*/
#[OA\Get(
path: '/refunds',
summary: '退款列表',
description: '获取退款列表,支持分页、按退款状态/类型/时间范围筛选。返回业务字段,不含 raw/hash。',
security: [['bearerAuth' => []]],
tags: ['Refunds'],
parameters: [
new OA\Parameter(name: 'page', in: 'query', required: false, schema: new OA\Schema(type: 'integer', default: 1)),
new OA\Parameter(name: 'per_page', in: 'query', required: false, schema: new OA\Schema(type: 'integer', default: 15, maximum: 100)),
new OA\Parameter(name: 'company_id', in: 'query', required: false, description: '公司 ID 精确筛选', schema: new OA\Schema(type: 'integer')),
new OA\Parameter(name: 'platform_id', in: 'query', required: false, description: '平台 ID 精确筛选', schema: new OA\Schema(type: 'integer')),
new OA\Parameter(name: 'store_id', in: 'query', required: false, description: '店铺 ID 精确筛选', schema: new OA\Schema(type: 'integer')),
new OA\Parameter(name: 'refund_status_id', in: 'query', required: false, description: '退款状态 ID 精确筛选', schema: new OA\Schema(type: 'integer')),
new OA\Parameter(name: 'refund_type_id', in: 'query', required: false, description: '退款类型 ID 精确筛选(1=未发货前退款 2=退货退款 3=退货后部分退款 4=无须退货退款 5=闪电退款)', schema: new OA\Schema(type: 'integer')),
new OA\Parameter(name: 'platform_refund_id', in: 'query', required: false, description: '平台退款 ID 精确搜索', schema: new OA\Schema(type: 'string')),
new OA\Parameter(name: 'platform_order_id', in: 'query', required: false, description: '关联平台订单 ID 筛选', schema: new OA\Schema(type: 'string')),
new OA\Parameter(name: 'created_date_from', in: 'query', required: false, description: '创建时间起始(含)', schema: new OA\Schema(type: 'string', format: 'date', example: '2026-01-01')),
new OA\Parameter(name: 'created_date_to', in: 'query', required: false, description: '创建时间截止(含)', schema: new OA\Schema(type: 'string', format: 'date', example: '2026-12-31')),
],
responses: [
new OA\Response(
response: 200,
description: '获取成功',
content: new OA\JsonContent(properties: [
new OA\Property(property: 'code', type: 'integer', example: 0),
new OA\Property(property: 'message', type: 'string', example: '获取成功'),
new OA\Property(property: 'data', properties: [
new OA\Property(property: 'items', type: 'array', items: new OA\Items(ref: '#/components/schemas/Refund')),
new OA\Property(property: 'total', type: 'integer', example: 100),
new OA\Property(property: 'page', type: 'integer', example: 1),
new OA\Property(property: 'per_page', type: 'integer', example: 15),
], type: 'object'),
])
),
new OA\Response(response: 401, description: '未认证', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')),
new OA\Response(response: 403, description: '无权限', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')),
]
)]
#[RequestMapping(path: "", methods: "GET")]
public function index(): ResponseInterface|array
{
return parent::index();
}
/**
* 退款详情
*/
#[OA\Get(
path: '/refunds/{id}',
summary: '退款详情',
description: '获取退款详情,返回所有业务字段和 ext,不含 raw/hash。',
security: [['bearerAuth' => []]],
tags: ['Refunds'],
parameters: [
new OA\Parameter(name: 'id', in: 'path', required: true, description: '退款 ID', schema: new OA\Schema(type: 'integer')),
],
responses: [
new OA\Response(
response: 200,
description: '获取成功',
content: new OA\JsonContent(properties: [
new OA\Property(property: 'code', type: 'integer', example: 0),
new OA\Property(property: 'message', type: 'string', example: '获取成功'),
new OA\Property(property: 'data', ref: '#/components/schemas/Refund'),
])
),
new OA\Response(response: 401, description: '未认证', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')),
new OA\Response(response: 403, description: '无权限', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')),
new OA\Response(response: 404, description: '数据不存在', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')),
]
)]
#[RequestMapping(path: "{id}", methods: "GET")]
public function show(int $id): ResponseInterface|array
{
return parent::show($id);
}
}