From b3d8acba936d56deec907b7f427ba178d5089828 Mon Sep 17 00:00:00 2001 From: wolter Date: Thu, 8 Aug 2024 18:32:56 +0800 Subject: [PATCH] =?UTF-8?q?=E5=89=8D=E5=8F=B0,=E8=B0=83=E6=95=B4=E5=9B=9E?= =?UTF-8?q?=E8=B0=83=E9=80=9A=E7=9F=A5=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/console/command.go | 2 +- app/services/thirdpay/thirdpay_notify/notify.go | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app/console/command.go b/app/console/command.go index cf36bcc..f42ad2f 100644 --- a/app/console/command.go +++ b/app/console/command.go @@ -195,7 +195,7 @@ func queryOrder() { notifyResult := thirdpay_notify.NewOrderNotifyWithHandle(orderInfo.Id, status, int(result.Result.PayerTotal), msg) //utils.Log(nil, "主动查询订单支付状态,回调下游", notifyResult) if notifyResult.ErrCode != errorcode.Success { - utils.Log(nil, "主动查询订单支付状态,回调下游失败", fmt.Sprintf("%#v", notifyResult)) + utils.Log(nil, "主动查询订单支付状态,回调下游失败", fmt.Sprintf("%+v", notifyResult)) } } }(orderInfo) diff --git a/app/services/thirdpay/thirdpay_notify/notify.go b/app/services/thirdpay/thirdpay_notify/notify.go index 1cf9510..f90677a 100644 --- a/app/services/thirdpay/thirdpay_notify/notify.go +++ b/app/services/thirdpay/thirdpay_notify/notify.go @@ -97,6 +97,7 @@ func (o *OrderNotify) Handle() (res *OrderNotifyResp) { // 发送下游回调通知 func (o *OrderNotify) sendNotify(body *OrderNotifySendContent) { if o.app.NotifyUrl == "" { + o.Code = errorcode.AppNotifyUrlNotFound return } var callbackStatus = common.STATUS_ENABLE @@ -160,10 +161,10 @@ func (o *OrderNotify) checkApp() { return } - if o.app.NotifyUrl == "" { - o.Code = errorcode.AppNotifyUrlNotFound - return - } + //if o.app.NotifyUrl == "" { + // o.Code = errorcode.AppNotifyUrlNotFound + // return + //} return }