前台,调整回调通知地址
This commit is contained in:
parent
8c05e8ff06
commit
b3d8acba93
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue