fix(trade): v3.5.14 提交订单/支付成功日志使用真实 clientApp

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-26 17:24:56 +08:00
parent 58a8b47532
commit 3dbb73e428
7 changed files with 140 additions and 9 deletions
@@ -26,7 +26,7 @@ export class TradeController {
@Post()
create(@CurrentUser() user: AuthUser, @Body() body: Record<string, unknown>, @Req() req: Request) {
return this.tradeService.createOrder(user.actorId, body as never, req);
return this.tradeService.createOrder(user.actorId, body as never, req, user.clientApp);
}
@Get()