|
@@ -7,6 +7,8 @@ import (
|
|
"hongze/hongze_task/models"
|
|
"hongze/hongze_task/models"
|
|
"hongze/hongze_task/utils"
|
|
"hongze/hongze_task/utils"
|
|
"os"
|
|
"os"
|
|
|
|
+ "strconv"
|
|
|
|
+ "strings"
|
|
"time"
|
|
"time"
|
|
)
|
|
)
|
|
|
|
|
|
@@ -23,6 +25,8 @@ func FreeViewerDetail(cont context.Context) (err error) {
|
|
startTime := time.Now().AddDate(0, 0, -7).Format(utils.FormatDateTime)
|
|
startTime := time.Now().AddDate(0, 0, -7).Format(utils.FormatDateTime)
|
|
endTime := time.Now().Format(utils.FormatDateTime)
|
|
endTime := time.Now().Format(utils.FormatDateTime)
|
|
|
|
|
|
|
|
+ userIdsStr := ""
|
|
|
|
+ applyRecordIdsStr := ""
|
|
items, err := models.GetFreeViewerDetails(startTime, endTime)
|
|
items, err := models.GetFreeViewerDetails(startTime, endTime)
|
|
if err != nil {
|
|
if err != nil {
|
|
return
|
|
return
|
|
@@ -54,14 +58,18 @@ func FreeViewerDetail(cont context.Context) (err error) {
|
|
cellB := row.AddCell()
|
|
cellB := row.AddCell()
|
|
cellB.Value = item.Mobile
|
|
cellB.Value = item.Mobile
|
|
cellC := row.AddCell()
|
|
cellC := row.AddCell()
|
|
- cellC.Value = item.Note
|
|
|
|
|
|
+ cellC.Value = item.CompanyName
|
|
cellD := row.AddCell()
|
|
cellD := row.AddCell()
|
|
- cellD.Value = item.CreatedTime
|
|
|
|
|
|
+ cellD.Value = item.LastTime
|
|
cellE := row.AddCell()
|
|
cellE := row.AddCell()
|
|
cellE.Value = item.Email
|
|
cellE.Value = item.Email
|
|
|
|
|
|
- models.DealWxUser(item.UserId)
|
|
|
|
|
|
+ userIdsStr += ","+strconv.Itoa(item.UserId)
|
|
|
|
+ applyRecordIdsStr += ","+strconv.Itoa(item.ApplyRecordId)
|
|
}
|
|
}
|
|
|
|
+ userIdsStr = strings.Trim(userIdsStr, ",")
|
|
|
|
+ applyRecordIdsStr = strings.Trim(applyRecordIdsStr, ",")
|
|
|
|
+ _ = dealUser(userIdsStr, applyRecordIdsStr)
|
|
|
|
|
|
savePath := "free_viewer_details" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
|
|
savePath := "free_viewer_details" + time.Now().Format(utils.FormatDateTimeUnSpace) + ".xlsx"
|
|
err = file.Save("./" + savePath)
|
|
err = file.Save("./" + savePath)
|
|
@@ -71,11 +79,22 @@ func FreeViewerDetail(cont context.Context) (err error) {
|
|
//发送邮件
|
|
//发送邮件
|
|
fmt.Println("start send email")
|
|
fmt.Println("start send email")
|
|
sendResult := utils.SendEmailByHongze(title, "潜在客户回访记录',\"你好,上周潜在客户回访记录见附件。", utils.EmailSendToHzUsers, savePath, title+".xlsx")
|
|
sendResult := utils.SendEmailByHongze(title, "潜在客户回访记录',\"你好,上周潜在客户回访记录见附件。", utils.EmailSendToHzUsers, savePath, title+".xlsx")
|
|
- //sendResult:=utils.SendEmailByHongze(title,"你好,上周研报阅读统计见附件。",utils.EmailSendToMe,savePath)
|
|
|
|
|
|
+ //sendResult:=utils.SendEmailByHongze(title,"潜在客户回访记录',\"你好,上周潜在客户回访记录见附件。",utils.EmailSendToMe,savePath, title+".xlsx")
|
|
if sendResult {
|
|
if sendResult {
|
|
- os.Remove(savePath)
|
|
|
|
|
|
+ _ = os.Remove(savePath)
|
|
}
|
|
}
|
|
//fmt.Println("send result:", sendResult)
|
|
//fmt.Println("send result:", sendResult)
|
|
fmt.Println("end send email")
|
|
fmt.Println("end send email")
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+func dealUser(userIds, applyRecordIds string) (err error) {
|
|
|
|
+ if userIds !="" {
|
|
|
|
+ _ = models.DealWxUsers(userIds)
|
|
|
|
+ }
|
|
|
|
+ if applyRecordIds != "" {
|
|
|
|
+ nowTime := time.Now()
|
|
|
|
+ _ = models.DealFiccApply(applyRecordIds, nowTime)
|
|
|
|
+ }
|
|
|
|
+ return
|
|
|
|
+}
|