diff --git a/business/jxstore/cms/store.go b/business/jxstore/cms/store.go index 7b8db4cee..062e39cfe 100644 --- a/business/jxstore/cms/store.go +++ b/business/jxstore/cms/store.go @@ -1328,7 +1328,7 @@ func SendAlarmVendorSnapshot(ctx *jxcontext.Context, parentTask tasksch.ITask, p } excelBin := excel.Obj2Excel([]*excel.Obj2ExcelSheetConfig{excelConf}) keyPart := []string{ - fixTitle, + "store_status", mobile, time.Now().Format("20060102T150405") + ".xlsx", } @@ -1353,7 +1353,7 @@ func shouldSkipMobile4SendStoreStatusInfo(mobile string) bool { func sendStoreStatusInfo2Mobile(mobile, title, excelURL string) { if user := userProvider.GetUser(mobile, auth2.AuthTypeMobile); user != nil { globals.SugarLogger.Debugf("sendStoreStatusInfo2Mobile %s:%s", mobile, excelURL) - msg.SendUserMessage(user.GetID(), title, fmt.Sprintf("详情见: %s", excelURL)) + msg.SendUserMessage(user.GetID(), title, fmt.Sprintf("详情见: \n%s", excelURL)) } }