This commit is contained in:
邹宗楠
2025-11-10 09:52:12 +08:00
parent 487724645b
commit 474d3da18f
14 changed files with 166 additions and 18 deletions

View File

@@ -31,3 +31,10 @@ func OnOrderInfoChangeMsg(msg *jdapi.CallbackOrderInfoChangeMsg) (retVal *jdapi.
}
return retVal
}
func OnInvoiceMsg(msg *jdapi.CallbackInvoiceMsg) (retVal *jdapi.CallbackResponse) {
if CurPurchaseHandler != nil {
retVal = CurPurchaseHandler.GetOrderInvoice(AppKey2OrgCode(msg.AppKey), msg)
}
return retVal
}