This commit is contained in:
邹宗楠
2026-03-19 17:15:19 +08:00
parent 037ec4f743
commit 9b49d15c86
2 changed files with 3 additions and 8 deletions

View File

@@ -97,11 +97,12 @@ func pay4OrderByTL(ctx *jxcontext.Context, order *model.GoodsOrder, payType int,
return orderPay, err
}
// https://prodoc.allinpay.com/doc/1091/ 新增消息
func OnTLPayCallback(call *tonglianpayapi.CallBackResult) (err error) {
switch call.TrxCode {
case tonglianpayapi.MsgTypePay:
case tonglianpayapi.MsgTypePay, "VSP681", "VSP683":
err = onTLpayFinished(call)
case tonglianpayapi.MsgTypeRefund:
case tonglianpayapi.MsgTypeRefund, "VSP682", "VSP684":
err = onTLpayRefund(call)
case tonglianpayapi.MsgTypePayZFB:
err = onTLpayFinished(call)

View File

@@ -3,8 +3,6 @@ package controllers
import (
"bytes"
"git.rosy.net.cn/baseapi/platformapi/tonglianpayapi"
"git.rosy.net.cn/baseapi/utils"
"git.rosy.net.cn/jx-callback/globals"
"io/ioutil"
"net/http"
@@ -20,10 +18,8 @@ type TongLianController struct {
}
func (c *TongLianController) Msg() {
globals.SugarLogger.Debug("-------method1:= %s", utils.Format4Output("11", false))
if c.Ctx.Input.Method() == http.MethodPost {
call, err := api.TLpayAPI.GetCallbackMsg(getUsefulRequest2(c.Ctx))
globals.SugarLogger.Debug("-------method1:= %s", utils.Format4Output(call, false))
if err == nil {
err = localjx.OnTLPayCallback(call)
}
@@ -36,10 +32,8 @@ func (c *TongLianController) Msg() {
//通联同一扫码支付回调接口
func (c *TongLianController) OnLinePay() {
globals.SugarLogger.Debug("-------method1:= %s", utils.Format4Output("22", false))
if c.Ctx.Input.Method() == http.MethodPost {
call, err := api.TLpayAPI.GetCallbackOnlinePayMsg(getUsefulRequest2(c.Ctx))
globals.SugarLogger.Debug("-------method2:= %s", utils.Format4Output(call, false))
if err == nil {
err = localjx.OnTLOnlinePayCallback(call)
}