diff --git a/business/jxcallback/orderman/order_comment.go b/business/jxcallback/orderman/order_comment.go index 10707ffdb..f3d06e4ec 100644 --- a/business/jxcallback/orderman/order_comment.go +++ b/business/jxcallback/orderman/order_comment.go @@ -2,7 +2,6 @@ package orderman import ( "encoding/json" - "fmt" "git.rosy.net.cn/baseapi/platformapi/dingdingapi" "git.rosy.net.cn/jx-callback/business/jxutils/ddmsg" "math/rand" @@ -80,9 +79,6 @@ func (c *OrderManager) OnOrderComments(orderCommentList []*model.OrderComment) ( OrderId: orderComment.VendorOrderID, } err = dao.GetEntity(db, comment2, "OrderId") - if orderComment.StoreID == 669247 { - ddmsg.SendUserMessage(dingdingapi.MsgTyeText, "2452A93EEB9111EC9B06525400E86DC0", "自动好评回复err:", fmt.Sprintf("%v", err)) - } if err == nil || dao.IsNoRowsError(err) { isNewComment := false if dao.IsNoRowsError(err) { diff --git a/business/partner/purchase/mtwm/order_comment.go b/business/partner/purchase/mtwm/order_comment.go index 6f31507d2..1d54e3e80 100644 --- a/business/partner/purchase/mtwm/order_comment.go +++ b/business/partner/purchase/mtwm/order_comment.go @@ -1,8 +1,6 @@ package mtwm import ( - "git.rosy.net.cn/baseapi/platformapi/dingdingapi" - "git.rosy.net.cn/jx-callback/business/jxutils/ddmsg" "strings" "time" @@ -59,9 +57,6 @@ func (c *PurchaseHandler) RefreshComment(fromTime, toTime time.Time) (err error) storeDetail, _ := dao.GetStoreDetail(dao.GetDB(), storeID, model.VendorIDMTWM, "") commentList, _ := getAPI(storeDetail.VendorOrgCode, storeID, storeDetail.VendorStoreID).CommentQuery(storeDetail.VendorStoreID, startDateStr, endDateStr, 0, 0, mtwmapi.CommentReplyStatusNotReplied) var orderCommentList []*model.OrderComment - if storeID == 669247 { - ddmsg.SendUserMessage(dingdingapi.MsgTyeText, "2452A93EEB9111EC9B06525400E86DC0", "自动好评回复:", utils.Int2Str(669247)+":"+utils.Int2Str(len(commentList))) - } if len(commentList) == model.NO || commentList == nil { return nil, nil }