This commit is contained in:
Mrx
2026-06-06 17:03:08 +08:00
parent a85436950e
commit 35e9191981
28 changed files with 666 additions and 286 deletions

View File

@@ -368,6 +368,12 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
Path: "/retry-agent-process/:id",
Handler: admin_order.AdminRetryAgentProcessHandler(serverCtx),
},
{
// xpay补发货查微信单并到账
Method: http.MethodPost,
Path: "/xpay-deliver/:id",
Handler: admin_order.AdminXpayDeliverHandler(serverCtx),
},
{
// 更新订单
Method: http.MethodPut,
@@ -947,11 +953,6 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
Path: "/pay/xpay/push",
Handler: pay.XpayPushHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/pay/xpay/admin/deliver",
Handler: pay.XpayAdminDeliverHandler(serverCtx),
},
},
rest.WithPrefix("/api/v1"),
)