feat: v3.4.12 ticket iteration

Refund rollback, winery T+3, multi withdraw, mini-user store detail, dev plan batch edit and WeCom dispatch, support ticket edit/attachments/batch status, package imageUrl.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-04 23:53:31 +08:00
parent 71f508e02b
commit 4372018c09
34 changed files with 1032 additions and 86 deletions
@@ -30,6 +30,7 @@ import {
UpdateDevPlanSettingsDto,
UpdateDevPlanTaskDto,
UpdateDevPlanVersionDto,
DevPlanTaskBatchUpdateDto,
} from './dto/dev-plan.dto';
@Controller('admin/dev-plan')
@@ -91,6 +92,12 @@ export class AdminDevPlanController {
return this.service.dispatchTasks(body, account.id);
}
@Post('tasks/batch-update')
@HqOperation({ action: HqOperationAction.DEV_PLAN_TASK_UPDATE, refType: 'DEV_PLAN_TASK', includeBody: true, batch: true })
batchUpdateTasks(@Body() body: DevPlanTaskBatchUpdateDto) {
return this.service.batchUpdateTasks(body);
}
@Get('versions')
listVersions(
@Query('status') status?: string,