fix:退款

This commit is contained in:
wolter 2024-08-12 10:47:40 +08:00
parent e760d92332
commit ef153770af
1 changed files with 2 additions and 2 deletions

View File

@ -117,8 +117,8 @@ func (w *Pay) Refund() {
ok bool ok bool
) )
thirdPayRefund := &paymentService.OrderRefundRequest{ thirdPayRefund := &paymentService.OrderRefundRequest{
OrderId: w.Order.Id, OrderId: w.RelationOrder.Id,
RefundOrderId: w.RelationOrder.Id, RefundOrderId: w.Order.Id,
RefundReason: w.PayParam.Desc, RefundReason: w.PayParam.Desc,
RefundAmount: int64(w.PayParam.Amount), RefundAmount: int64(w.PayParam.Amount),
} }