This commit is contained in:
richboo111
2022-08-03 16:27:06 +08:00
parent a73dfb6527
commit d7c472372e
2 changed files with 2 additions and 2 deletions

View File

@@ -148,7 +148,7 @@ func Pay(ctx *jxcontext.Context, orderID string, payType int, vendorPayType, app
err = financial.AddUserBill(txDB, jxutils.GenBillID(), order.UserID) err = financial.AddUserBill(txDB, jxutils.GenBillID(), order.UserID)
} }
err = payHandler.CreatePay(txDB, appId) err = payHandler.CreatePay(txDB, appId)
globals.SugarLogger.Debug("the last step of this program,return err……", err) globals.SugarLogger.Debug("the last step o f this program,return err……", err)
globals.SugarLogger.Debugf("result : %v", utils.Format4Output(payHandler.WxPayParam, false)) globals.SugarLogger.Debugf("result : %v", utils.Format4Output(payHandler.WxPayParam, false))
return payHandler.WxPayParam, err return payHandler.WxPayParam, err
} }

View File

@@ -260,7 +260,7 @@ func onTLpayFinished(call *tonglianpayapi.CallBackResult) (err error) {
order.PayFinishedAt = t1 order.PayFinishedAt = t1
order.OriginalData = utils.Format4Output(call, true) order.OriginalData = utils.Format4Output(call, true)
payStatus := 0 payStatus := 0
order.PayMethod = 2 // 通联微信支付 //order.PayMethod = 2 // 通联微信支付
if call.TrxStatus == tonglianpayapi.TrxStatusSuccess { if call.TrxStatus == tonglianpayapi.TrxStatusSuccess {
order.Status = model.OrderStatusFinished order.Status = model.OrderStatusFinished
payStatus = model.OrderStatusSuccessPay payStatus = model.OrderStatusSuccessPay