前台,调整回调通知地址

This commit is contained in:
wolter 2024-08-08 18:32:56 +08:00
parent 8c05e8ff06
commit b3d8acba93
2 changed files with 6 additions and 5 deletions

View File

@ -195,7 +195,7 @@ func queryOrder() {
notifyResult := thirdpay_notify.NewOrderNotifyWithHandle(orderInfo.Id, status, int(result.Result.PayerTotal), msg) notifyResult := thirdpay_notify.NewOrderNotifyWithHandle(orderInfo.Id, status, int(result.Result.PayerTotal), msg)
//utils.Log(nil, "主动查询订单支付状态,回调下游", notifyResult) //utils.Log(nil, "主动查询订单支付状态,回调下游", notifyResult)
if notifyResult.ErrCode != errorcode.Success { if notifyResult.ErrCode != errorcode.Success {
utils.Log(nil, "主动查询订单支付状态,回调下游失败", fmt.Sprintf("%#v", notifyResult)) utils.Log(nil, "主动查询订单支付状态,回调下游失败", fmt.Sprintf("%+v", notifyResult))
} }
} }
}(orderInfo) }(orderInfo)

View File

@ -97,6 +97,7 @@ func (o *OrderNotify) Handle() (res *OrderNotifyResp) {
// 发送下游回调通知 // 发送下游回调通知
func (o *OrderNotify) sendNotify(body *OrderNotifySendContent) { func (o *OrderNotify) sendNotify(body *OrderNotifySendContent) {
if o.app.NotifyUrl == "" { if o.app.NotifyUrl == "" {
o.Code = errorcode.AppNotifyUrlNotFound
return return
} }
var callbackStatus = common.STATUS_ENABLE var callbackStatus = common.STATUS_ENABLE
@ -160,10 +161,10 @@ func (o *OrderNotify) checkApp() {
return return
} }
if o.app.NotifyUrl == "" { //if o.app.NotifyUrl == "" {
o.Code = errorcode.AppNotifyUrlNotFound // o.Code = errorcode.AppNotifyUrlNotFound
return // return
} //}
return return
} }