- handle jd order have illegal skuIdIsv value(more than max int32)

This commit is contained in:
gazebo
2018-12-23 12:21:37 +08:00
parent 3492d40874
commit 65b4e2bcb8
2 changed files with 9 additions and 3 deletions

View File

@@ -117,7 +117,7 @@ func (c *PurchaseHandler) onOrderComment(msg *jdapi.CallbackOrderMsg) (err error
comment.UpdatedVendertags = string(utils.MustMarshal(result["venderTags"]))
comment.Status = COMMENT_RESOLVED
}
if score <= JX_BAD_COMMENTS_MAX_LEVEL {
if score <= JX_BAD_COMMENTS_MAX_LEVEL && comment.Jxstoreid != "" {
if globals.ReallyCallPlatformAPI {
weixinmsg.PushJDBadCommentToWeiXin(comment)
}