- 接收门店状态消息,本地同步状态,京东暂时无效

This commit is contained in:
gazebo
2019-04-12 16:22:22 +08:00
parent ca8d0b362b
commit 77c5a16c08
14 changed files with 233 additions and 53 deletions

View File

@@ -61,9 +61,13 @@ func (c *MtwmController) OrderCanceled() {
}
func (c *MtwmController) OrderRefund() {
c.onCallbackMsg(mtwmapi.MsgTypeOrderCanceled)
c.onCallbackMsg(mtwmapi.MsgTypeOrderRefund)
}
func (c *MtwmController) OrderPartialRefund() {
c.onCallbackMsg(mtwmapi.MsgTypeOrderCanceled)
c.onCallbackMsg(mtwmapi.MsgTypeOrderPartialRefund)
}
func (c *MtwmController) StoreStatusChanged() {
c.onCallbackMsg(mtwmapi.MsgTypeStoreStatusChanged)
}