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 }