From 5b8ee36a6e2eed7da6fe2ff3e581153ff16c9ce0 Mon Sep 17 00:00:00 2001 From: richboo111 Date: Wed, 27 Jul 2022 15:40:26 +0800 Subject: [PATCH] log --- business/q_bida/q_bida_server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/q_bida/q_bida_server.go b/business/q_bida/q_bida_server.go index 724c25b09..a05b5468b 100644 --- a/business/q_bida/q_bida_server.go +++ b/business/q_bida/q_bida_server.go @@ -269,7 +269,7 @@ func CancelWayOrder(ctx *jxcontext.Context, userId string, param *bida.CancelOrd // 支付方式为余额支付,则需要修改order/userVendorOrder,修改订单状态,给用户账户价钱,生成一个价钱数据 } else if order1.PayMethod == 2 { // 微信支付 // 微信支付原路退款,发起退款申请 - _, err := RefundOrderByTL(ctx, orderWay, order, order.OtherWayBill, int(order.ChannelFee*100), "申请退款") + _, err := RefundOrderByTL(ctx, &order1, order, order.OtherWayBill, int(order.ChannelFee*100), "申请退款") return err }