This commit is contained in:
邹宗楠
2025-08-01 16:48:10 +08:00
parent 2747c7aec6
commit 844ea7c129

View File

@@ -331,7 +331,7 @@ func Pay4Order(ctx *jxcontext.Context, orderID int64, payType int, vendorPayType
} }
case model.PayTypeLaKaLa: // case model.PayTypeLaKaLa: //
ip, _, _ := net.SplitHostPort(ctx.GetRequest().RemoteAddr) ip, _, _ := net.SplitHostPort(ctx.GetRequest().RemoteAddr)
if orderPay, err = pay4OrderByLaKaLa(ctx, order, payType, vendorPayType, subAppID, "", "", ip); err == nil && orderPay != nil { if orderPay, err = pay4OrderByLaKaLa(ctx, order, payType, vendorPayType, subAppID, "", ""); err == nil && orderPay != nil {
dao.WrapAddIDCULDEntity(orderPay, ctx.GetUserName()) dao.WrapAddIDCULDEntity(orderPay, ctx.GetUserName())
err = dao.CreateEntity(dao.GetDB(), orderPay) err = dao.CreateEntity(dao.GetDB(), orderPay)
} }