京东增加回调,订单信息更改

This commit is contained in:
苏尹岚
2020-04-28 17:11:43 +08:00
parent f03facc4a8
commit 586c12d352
5 changed files with 38 additions and 0 deletions

View File

@@ -24,3 +24,10 @@ func OnStoreMsg(msg *jdapi.CallbackOrderMsg) (retVal *jdapi.CallbackResponse) {
}
return retVal
}
func OnOrderInfoChangeMsg(msg *jdapi.CallbackOrderInfoChangeMsg) (retVal *jdapi.CallbackResponse) {
if CurPurchaseHandler != nil {
retVal = CurPurchaseHandler.OnOrderInfoChangeMsg(AppKey2OrgCode(msg.AppKey), msg)
}
return retVal
}