暂时屏蔽同步消息
This commit is contained in:
@@ -9,10 +9,8 @@ import (
|
|||||||
"git.rosy.net.cn/jx-callback/business/partner/putils"
|
"git.rosy.net.cn/jx-callback/business/partner/putils"
|
||||||
|
|
||||||
"git.rosy.net.cn/baseapi"
|
"git.rosy.net.cn/baseapi"
|
||||||
"git.rosy.net.cn/baseapi/platformapi/dingdingapi"
|
|
||||||
"git.rosy.net.cn/baseapi/utils"
|
"git.rosy.net.cn/baseapi/utils"
|
||||||
"git.rosy.net.cn/jx-callback/business/jxutils"
|
"git.rosy.net.cn/jx-callback/business/jxutils"
|
||||||
"git.rosy.net.cn/jx-callback/business/jxutils/ddmsg"
|
|
||||||
"git.rosy.net.cn/jx-callback/business/jxutils/excel"
|
"git.rosy.net.cn/jx-callback/business/jxutils/excel"
|
||||||
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
|
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
|
||||||
"git.rosy.net.cn/jx-callback/business/jxutils/tasksch"
|
"git.rosy.net.cn/jx-callback/business/jxutils/tasksch"
|
||||||
@@ -646,33 +644,33 @@ func (v *VendorSync) LoopStoresMap2(ctx *jxcontext.Context, parentTask tasksch.I
|
|||||||
|
|
||||||
func buildSetFinishHook(task tasksch.ITask, ctx *jxcontext.Context) {
|
func buildSetFinishHook(task tasksch.ITask, ctx *jxcontext.Context) {
|
||||||
task.SetFinishHook(func(task tasksch.ITask) {
|
task.SetFinishHook(func(task tasksch.ITask) {
|
||||||
var noticeMsg = "您此次的同步任务错误详情返回如下: \n"
|
// var noticeMsg = "您此次的同步任务错误详情返回如下: \n"
|
||||||
if ctx.GetUserName() != "jxadmin" {
|
// if ctx.GetUserName() != "jxadmin" {
|
||||||
if len(task.GetFailedList()) > 10 {
|
// if len(task.GetFailedList()) > 10 {
|
||||||
downloadURL, _, _ := WirteToExcelBySyncFailed(task)
|
// downloadURL, _, _ := WirteToExcelBySyncFailed(task)
|
||||||
noticeMsg += fmt.Sprintf("[详情点我]%s/billshow/?normal=true&path=%s \n", globals.BackstageHost, downloadURL)
|
// noticeMsg += fmt.Sprintf("[详情点我]%s/billshow/?normal=true&path=%s \n", globals.BackstageHost, downloadURL)
|
||||||
} else if len(task.GetFailedList()) > 0 && len(task.GetFailedList()) <= 10 {
|
// } else if len(task.GetFailedList()) > 0 && len(task.GetFailedList()) <= 10 {
|
||||||
if task.GetErr() != nil {
|
// if task.GetErr() != nil {
|
||||||
noticeMsg += utils.Format4Output(buildErrMsgJson(task), true)
|
// noticeMsg += utils.Format4Output(buildErrMsgJson(task), true)
|
||||||
}
|
// }
|
||||||
} else {
|
// } else {
|
||||||
noticeMsg = "您的同步任务执行完成,没有错误返回。"
|
// noticeMsg = "您的同步任务执行完成,没有错误返回。"
|
||||||
}
|
// }
|
||||||
if authInfo, err := ctx.GetV2AuthInfo(); err == nil {
|
// if authInfo, err := ctx.GetV2AuthInfo(); err == nil {
|
||||||
ddmsg.SendUserMessage(dingdingapi.MsgTyeText, authInfo.UserID, "同步错误返回", noticeMsg)
|
// ddmsg.SendUserMessage(dingdingapi.MsgTyeText, authInfo.UserID, "同步错误返回", noticeMsg)
|
||||||
} else {
|
// } else {
|
||||||
globals.SugarLogger.Debugf("同步错误发送钉钉消息失败, authinfo [%v] , [%v]", *authInfo, err)
|
// globals.SugarLogger.Debugf("同步错误发送钉钉消息失败, authinfo [%v] , [%v]", *authInfo, err)
|
||||||
}
|
// }
|
||||||
} else {
|
// } else {
|
||||||
if time.Now().Hour() >= 20 || time.Now().Hour() < 7 {
|
// if time.Now().Hour() >= 20 || time.Now().Hour() < 7 {
|
||||||
downloadURL, _, _ := WirteToExcelBySyncFailed(task)
|
// downloadURL, _, _ := WirteToExcelBySyncFailed(task)
|
||||||
user, err := dao.GetUserByID(dao.GetDB(), "mobile", "18160030913")
|
// user, err := dao.GetUserByID(dao.GetDB(), "mobile", "18160030913")
|
||||||
noticeMsg += fmt.Sprintf("[详情点我]%s/billshow/?normal=true&path=%s \n", globals.BackstageHost, downloadURL)
|
// noticeMsg += fmt.Sprintf("[详情点我]%s/billshow/?normal=true&path=%s \n", globals.BackstageHost, downloadURL)
|
||||||
if user != nil && err == nil {
|
// if user != nil && err == nil {
|
||||||
ddmsg.SendUserMessage(dingdingapi.MsgTyeText, user.UserID, "同步错误返回", noticeMsg)
|
// ddmsg.SendUserMessage(dingdingapi.MsgTyeText, user.UserID, "同步错误返回", noticeMsg)
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user