task.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. package services
  2. import (
  3. "context"
  4. "errors"
  5. "fmt"
  6. "github.com/beego/beego/v2/task"
  7. "hongze/hongze_task/models"
  8. "hongze/hongze_task/services/company_contract"
  9. "hongze/hongze_task/services/data"
  10. "hongze/hongze_task/utils"
  11. "strconv"
  12. "strings"
  13. "sync"
  14. "time"
  15. )
  16. func Task() {
  17. fmt.Println("task start")
  18. //如果是生产环境,才需要走这些任务
  19. if utils.RunMode == "release" {
  20. releaseTask()
  21. }
  22. //每日定时合同处理
  23. handleCompanyContract := task.NewTask("handleCompanyContract", "0 1 0 * * *", company_contract.HandleCompanyContract)
  24. task.AddTask("每日定时合同处理", handleCompanyContract)
  25. //正式->试用
  26. companyTryOut := task.NewTask("companyTryOut", "0 5 0 * * *", CompanyTryOut)
  27. task.AddTask("正式->试用", companyTryOut)
  28. //试用->冻结
  29. companyFreeze := task.NewTask("companyFreeze", "0 10 0 * * *", CompanyFreeze)
  30. task.AddTask("试用->冻结", companyFreeze)
  31. //冻结->流失
  32. companyLoss := task.NewTask("companyLoss", "0 20 0 * * *", CompanyLoss)
  33. task.AddTask("冻结->流失", companyLoss)
  34. //用户产品权限试用-->关闭
  35. companyReportPermissionClose := task.NewTask("companyReportPermissionClose", "0 30 0 * * *", CompanyReportPermissionClose)
  36. task.AddTask("用户产品权限试用-->关闭", companyReportPermissionClose)
  37. //删除日志记录
  38. //deleteReportSaveLog := task.NewTask("deleteReportSaveLog", "0 30 08 * * *", DeleteReportSaveLog)
  39. //task.AddTask("deleteReportSaveLog", deleteReportSaveLog)
  40. // 存量客户数据统计
  41. stackCompanyStatistic := task.NewTask("stackCompanyStatistic", "0 35 0 * * *", StackCompanyStatistic)
  42. task.AddTask("存量客户数据统计", stackCompanyStatistic)
  43. // 定时往同花顺推送报告
  44. sendWaitReport := task.NewTask("sendWaitReport", "0 */1 * * * * ", SendWaitReport)
  45. task.AddTask("定时往同花顺推送报告", sendWaitReport)
  46. task.StartTask()
  47. //GetHistoryLzProductDetail()
  48. //GetLzPrice()
  49. //GetLzProductDetail()
  50. //LzExportExcel()
  51. //GetLzProductList()GetLzProductDetail
  52. // 定时新增手工指标数据提醒
  53. addEdbTask := task.NewTask("sendWaitReport", "1 0 0 * * * ", AddEdbTask)
  54. task.AddTask("定时新增手工指标数据提醒", addEdbTask)
  55. //每次服务启动都需要执行一次的
  56. _ = AddEdbTask(nil)
  57. //每日用户阅读数据统计
  58. statisticsUserView := task.NewTask("statisticsUserView", "0 5 0 * * *", StatisticsUserView)
  59. task.AddTask("每日用户阅读数据统计", statisticsUserView)
  60. fmt.Println("task end")
  61. }
  62. //生产环境需要走的任务
  63. func releaseTask() {
  64. //隆众指标获取
  65. //getLzProductList := task.NewTask("getLzProductList", "0 0 11-19/1 * * * ", GetLzProductList)
  66. //task.AddTask("getLzProductList", getLzProductList)
  67. //隆众指标数据获取
  68. //getLzProductDetail := task.NewTask("getLzProductDetail", "0 5 11-19/1 * * * ", GetLzProductDetail)
  69. //task.AddTask("getLzProductDetail", getLzProductDetail)
  70. //隆众价格指标获取
  71. //getLzProductPriceProduct := task.NewTask("getLzProductPriceProduct", "0 5 11-19/1 * * * ", GetLzProductPriceProduct)
  72. //task.AddTask("getLzProductPriceProduct", getLzProductPriceProduct)
  73. //隆众价格指标数据获取
  74. //getLzProductPriceData := task.NewTask("getLzProductPriceData", "0 10 11-19/1 * * * ", GetLzProductPriceData)
  75. //task.AddTask("getLzProductPriceData", getLzProductPriceData)
  76. //隆众调研指标获取
  77. getLzSurveyProduct := task.NewTask("getLzSurveyProduct", "0 5 08-19/1 * * * ", GetLzSurveyProduct)
  78. task.AddTask("getLzSurveyProduct", getLzSurveyProduct)
  79. //隆众调研指标数据获取
  80. getLzSurveyProductData := task.NewTask("getLzSurveyProductData", "0 10 08-19/1 * * * ", GetLzSurveyProductData)
  81. task.AddTask("getLzSurveyProductData", getLzSurveyProductData)
  82. //发送邮件
  83. sendEmail := task.NewTask("sendEmail", "0 0 12 * * 0 ", SendEmail)
  84. task.AddTask("sendEmail", sendEmail)
  85. //oneMinute := task.NewTask("oneMinute", "0 */1 7-23 * * * ", OneMinute)
  86. //task.AddTask("oneMinute", oneMinute)
  87. // 正式/试用 用户到期提醒
  88. companyRemind := task.NewTask("companyRemind", "0 30 08 * * *", CompanyRemind)
  89. task.AddTask("companyRemind", companyRemind)
  90. //潜在客户
  91. freeViewerDetail := task.NewTask("freeViewerDetail", "0 0 9 * * 1 ", FreeViewerDetail)
  92. task.AddTask("潜在客户", freeViewerDetail)
  93. //刷新指标数据
  94. refreshData := task.NewTask("refreshData", "0 1 0,19 * * *", RefreshData)
  95. task.AddTask("refreshData", refreshData)
  96. //刷新指标基础数据
  97. refreshBaseData := task.NewTask("refreshBaseData", "0 */30 * * * * ", RefreshBaseData)
  98. task.AddTask("refreshBaseData", refreshBaseData)
  99. //同步弘则数据库中来自,钢联,隆众,有色,人工等基础数据--每隔五分钟,同步一次最新数据
  100. syncBaseData := task.NewTask("syncBaseData", "0 */5 * * * * ", SyncBaseData)
  101. task.AddTask("syncBaseData", syncBaseData)
  102. syncBaseDataExt := task.NewTask("syncBaseDataExt", "0 */30 * * * * ", SyncBaseDataExt)
  103. task.AddTask("syncBaseDataExt", syncBaseDataExt)
  104. // 定时往同花顺同步微信群的截止日期(凌晨4点)
  105. syncThsWxGroupEveryDay := task.NewTask("syncThsWxGroupEveryDay", "0 1 4 * * * ", SyncWxGroupEveryDay)
  106. task.AddTask("定时往同花顺同步微信群的截止日期", syncThsWxGroupEveryDay)
  107. //刷新计算指标数据
  108. //refreshCalculateData := task.NewTask("refreshCalculateData", "0 15 0,19 * * *", RefreshCalculateData)
  109. //task.AddTask("refreshCalculateData", refreshCalculateData)
  110. checkDataInterface := task.NewTask("checkDataInterface", "0 */2 * * * * ", data.CheckDataInterface)
  111. task.AddTask("checkDataInterface", checkDataInterface)
  112. checkPbDataInterface := task.NewTask("checkPbDataInterface", "0 */5 * * * * ", data.CheckPbDataInterface)
  113. task.AddTask("checkPbDataInterface", checkPbDataInterface)
  114. //初始化指标更新状态
  115. resetEdbInfoIsUpdate := task.NewTask("resetEdbInfoIsUpdate", "0 0 0 * * *", data.ResetEdbInfoIsUpdate)
  116. task.AddTask("resetEdbInfoIsUpdate", resetEdbInfoIsUpdate)
  117. }
  118. func TaskTest() {
  119. fmt.Println("The task is start")
  120. //companyReportPermissionClose := task.NewTask("companyTryOut", "0 5 0 * * *", CompanyReportPermissionClose)
  121. companyReportPermissionClose := task.NewTask("companyReportPermissionClose", "0/30 * * * * *", CompanyReportPermissionClose)
  122. task.AddTask("用户产品权限试用-->关闭", companyReportPermissionClose)
  123. task.StartTask()
  124. fmt.Println("The task is end")
  125. }
  126. func SendEmail(cont context.Context) (err error) {
  127. //报告历史访问次数
  128. go ReportViewTimes()
  129. //报告访问详情
  130. go ReportViewDetail()
  131. //用户权限统计
  132. go HongzeUsers()
  133. return
  134. }
  135. func OneMinute(cont context.Context) (err error) {
  136. //日度
  137. //FrequencyByDay()
  138. //周度
  139. FrequencyByWeek()
  140. //月度
  141. FrequencyByMonth()
  142. return
  143. }
  144. func RefreshData(cont context.Context) (err error) {
  145. wg := sync.WaitGroup{}
  146. wg.Add(7)
  147. //wind
  148. go data.RefreshDataFromWind(&wg)
  149. //同花顺
  150. go data.RefreshDataFromThs(&wg)
  151. //彭博
  152. go data.RefreshDataFromPb(&wg)
  153. //手工数据
  154. go data.RefreshDataFromManual(&wg)
  155. //隆众数据
  156. go data.RefreshDataFromLz(&wg)
  157. //有色
  158. go data.RefreshDataFromYs(&wg)
  159. //钢联
  160. go data.RefreshDataFromGl(&wg)
  161. wg.Wait()
  162. //计算指标
  163. data.RefreshDataFromCalculateAll()
  164. time.Sleep(2 * time.Second)
  165. data.RefreshNotice()
  166. return
  167. }
  168. //刷新基础数据
  169. func RefreshBaseData(cont context.Context) (err error) {
  170. now := time.Now()
  171. if now.Hour() == 0 || now.Hour() == 19 {
  172. return nil
  173. }
  174. //同步有色基础指标数据
  175. go data.SyncSmmIndexDataBase()
  176. return
  177. }
  178. //刷新基础数据
  179. func SyncBaseData(cont context.Context) (err error) {
  180. now := time.Now()
  181. if now.Hour() == 0 || now.Hour() == 19 {
  182. return nil
  183. }
  184. //同步钢联基础数据
  185. go data.SyncGlDataBase()
  186. return
  187. }
  188. //刷新基础数据
  189. func SyncBaseDataExt(cont context.Context) (err error) {
  190. now := time.Now()
  191. if now.Hour() == 0 || now.Hour() == 19 {
  192. return nil
  193. }
  194. //同步隆众基础数据
  195. go data.SyncLzDataBase()
  196. //同步手工数据
  197. go data.SyncManualDataBase()
  198. //同步有色基础数据
  199. go data.SyncSmmDataBase()
  200. return
  201. }
  202. //func RefreshCalculateData(cont context.Context) (err error) {
  203. // //计算指标
  204. // go data.RefreshDataFromCalculateAll()
  205. // //刷新公历转农历数据
  206. // //go data.RefreshDataFromQuarterAll()
  207. // return
  208. //}
  209. //func Task() {
  210. // fmt.Println("start")
  211. // data.RefreshDataFromCalculateAll()
  212. // //startDate := time.Now().AddDate(-30, 0, 0).UnixNano() / 1e6
  213. //
  214. // //fmt.Println(startDate)
  215. // //fmt.Println(endDate)
  216. // fmt.Println("end")
  217. //}
  218. /*
  219. endData:=time.Now().UnixNano()/1e6
  220. dateTime:=time.Unix(endData/1000,0)
  221. fmt.Println(dateTime)
  222. */
  223. // EdbTaskNameMap 手工指标定时任务名称map集合
  224. var EdbTaskNameMap map[string]map[string]bool
  225. // EdbTaskNameChannel 手工指标定时任务名称channel
  226. var EdbTaskNameChannel chan string
  227. // EdbTaskStopChannel 手工指标定时任务停止channel
  228. var EdbTaskStopChannel chan string
  229. // EdbTaskRunNum 手工指标定时任务开始次数
  230. var EdbTaskRunNum int
  231. // AddEdbTask 新增手工指标数据录入提醒
  232. func AddEdbTask(cont context.Context) (err error) {
  233. //失败列表
  234. failList := make([]string, 0)
  235. defer func() {
  236. if len(failList) > 0 {
  237. fmt.Println("提醒失败:")
  238. for _, v := range failList {
  239. fmt.Println(v)
  240. }
  241. }
  242. }()
  243. list, err := models.GetEdbInfoByFrequencyNotDay()
  244. if err != nil {
  245. fmt.Println("查询获取频度非日度 且 提醒时间不为空 的指标数据失败,Err:", err.Error())
  246. }
  247. //如果还没有初始化map,那么先初始
  248. if EdbTaskNameMap == nil {
  249. EdbTaskNameMap = make(map[string]map[string]bool)
  250. }
  251. tmpEdbTaskNameMap := make(map[string]bool)
  252. // 今天的日期字符串(格式:2021-10-25)
  253. todayStr := time.Now().Format(utils.FormatDate)
  254. //当前周的周一与周日
  255. nowWeekFirstDay := utils.GetNowWeekMonday()
  256. nowWeekLastDay := utils.GetNowWeekLastDay()
  257. //当前月的一号与最后一天
  258. nowMonthFirstDay := utils.GetNowMonthFirstDay()
  259. nowMonthLastDay := utils.GetNowMonthLastDay()
  260. //当前季度的第一天与最后一天
  261. nowQuarterFirstDay := utils.GetNowQuarterFirstDay()
  262. nowQuarterLastDay := utils.GetNowQuarterLastDay()
  263. //当前半年的第一天与最后一天
  264. nowHalfYearFirstDay := utils.GetNowHalfYearFirstDay()
  265. nowHalfYearLastDay := utils.GetNowHalfYearLastDay()
  266. // 当前年的第一天与最后一天
  267. nowYearFirstDay := utils.GetNowYearFirstDay()
  268. nowYearLastDay := utils.GetNowYearLastDay()
  269. debugNoticeUserId := 0 //测试环境,需要发送消息的用户
  270. if utils.RunMode == "debug" {
  271. tmpWxUser, tmpErr := models.GetWxUserByMobile("17634786714")
  272. if tmpErr == nil && tmpWxUser != nil {
  273. //debugNoticeUserId = 44078 //测试环境的话,发送邮箱给颜鹏
  274. debugNoticeUserId = int(tmpWxUser.UserId) //测试环境的话,发送邮箱给嘉豪
  275. }
  276. }
  277. //task.globalTaskManager.adminTaskList
  278. for _, edb := range list {
  279. tmpEdb := edb //指标信息
  280. isNotice := false //是否需要提醒
  281. noticeTime := "12:00:00" //提醒时间
  282. var dataDtTime time.Time
  283. edbData, tmpErr := models.GetLastEdbdataInfo(edb.TradeCode)
  284. if tmpErr != nil {
  285. if tmpErr.Error() != utils.ErrNoRow() {
  286. failList = append(failList, fmt.Sprint(edb.TradeCode, "失败,Err:", tmpErr.Error()))
  287. continue
  288. }
  289. }
  290. //如果确实是有数据的
  291. if edbData != nil {
  292. tmpDataDtTime, _ := time.ParseInLocation(utils.FormatDate, edbData.Dt, time.Now().Location())
  293. dataDtTime = tmpDataDtTime
  294. }
  295. switch edb.Frequency {
  296. case "周度":
  297. modifyDate := nowWeekLastDay //下次更新日期
  298. if edb.NoticeTime != "" {
  299. addDay := 7
  300. noticeArr := strings.Split(edb.NoticeTime, " ")
  301. if len(noticeArr) >= 2 {
  302. noticeTime = noticeArr[1]
  303. }
  304. noticeWeek := noticeArr[0]
  305. switch noticeWeek {
  306. case "周一":
  307. addDay = 1
  308. case "周二":
  309. addDay = 2
  310. case "周三":
  311. addDay = 3
  312. case "周四":
  313. addDay = 4
  314. case "周五":
  315. addDay = 5
  316. case "周六":
  317. addDay = 6
  318. case "周日":
  319. addDay = 7
  320. }
  321. modifyDate = modifyDate.AddDate(0, 0, addDay-7)
  322. }
  323. //如果正好是提醒日,同时本周没有过记录,那么需要提醒
  324. if todayStr == modifyDate.Format(utils.FormatDate) && !nowWeekFirstDay.Before(dataDtTime) {
  325. isNotice = true
  326. }
  327. case "月度":
  328. addDay := 0
  329. modifyDate := nowMonthLastDay //下次更新日期
  330. if edb.NoticeTime != "" {
  331. strArr := strings.Split(edb.NoticeTime, "日")
  332. if len(strArr) >= 2 {
  333. noticeTime = strArr[1]
  334. }
  335. tmpAddDay, tmpErr := strconv.Atoi(strArr[0])
  336. if tmpErr != nil {
  337. continue
  338. }
  339. addDay = tmpAddDay - 1
  340. modifyDate = nowMonthFirstDay.AddDate(0, 0, addDay)
  341. }
  342. //如果正好是提醒日,同时本月没有过记录,那么需要提醒
  343. if todayStr == modifyDate.Format(utils.FormatDate) && !nowMonthFirstDay.Before(dataDtTime) {
  344. isNotice = true
  345. }
  346. case "季度":
  347. //提醒时间
  348. if edb.NoticeTime != "" {
  349. noticeArr := strings.Split(edb.NoticeTime, " ")
  350. if len(noticeArr) >= 2 {
  351. noticeTime = noticeArr[1]
  352. }
  353. }
  354. //每季度更新数据时间
  355. //如果正好是提醒日(每季度最后一天),同时本季度没有过记录,那么需要提醒
  356. if todayStr == nowQuarterLastDay.Format(utils.FormatDate) && !nowQuarterFirstDay.Before(dataDtTime) {
  357. isNotice = true
  358. }
  359. case "半年度":
  360. //提醒时间
  361. if edb.NoticeTime != "" {
  362. noticeArr := strings.Split(edb.NoticeTime, " ")
  363. if len(noticeArr) >= 2 {
  364. noticeTime = noticeArr[1]
  365. }
  366. }
  367. //每半年度更新数据时间
  368. //如果正好是提醒日(每半年度最后一天),同时本半年度没有过记录,那么需要提醒
  369. if todayStr == nowHalfYearLastDay.Format(utils.FormatDate) && !nowHalfYearFirstDay.Before(dataDtTime) {
  370. isNotice = true
  371. }
  372. case "年度":
  373. //提醒时间
  374. if edb.NoticeTime != "" {
  375. noticeArr := strings.Split(edb.NoticeTime, " ")
  376. if len(noticeArr) >= 2 {
  377. noticeTime = noticeArr[1]
  378. }
  379. }
  380. //每年度更新数据时间
  381. //如果正好是提醒日(每年度最后一天),同时半年度没有过记录,那么需要提醒
  382. if todayStr == nowYearLastDay.Format(utils.FormatDate) && !nowYearFirstDay.Before(dataDtTime) {
  383. isNotice = true
  384. }
  385. }
  386. if isNotice {
  387. taskName := "edb_task_" + todayStr + ":" + fmt.Sprint(edb.TradeCode)
  388. //fmt.Println(taskName, ";", edb.SecName)
  389. //定时任务
  390. tmpTaskFunc := func(ctx context.Context) (funcErr error) {
  391. //方法执行结束后,移除定时任务
  392. defer func() {
  393. EdbTaskNameChannel <- taskName
  394. }()
  395. // 匿名方法内判断是否发送提醒,因为可能时间到的时候,发现
  396. funcIsNotice := false
  397. // 再次获取指标数据详情
  398. edbData, tmpErr := models.GetLastEdbdataInfo(tmpEdb.TradeCode)
  399. if tmpErr != nil {
  400. if tmpErr.Error() != utils.ErrNoRow() {
  401. funcErr = tmpErr
  402. return
  403. }
  404. }
  405. if utils.RunMode == "debug" && debugNoticeUserId > 0 {
  406. tmpEdb.UserId = debugNoticeUserId //测试环境的话,发送邮箱给嘉豪
  407. }
  408. //数据过期时间
  409. var funcDataDtTime time.Time
  410. //如果确实是有数据的
  411. if edbData != nil {
  412. tmpDataDtTime, _ := time.ParseInLocation(utils.FormatDate, edbData.Dt, time.Now().Location())
  413. funcDataDtTime = tmpDataDtTime
  414. }
  415. switch tmpEdb.Frequency {
  416. case "周度":
  417. modifyDate := nowWeekLastDay //下次更新日期
  418. if tmpEdb.NoticeTime != "" {
  419. addDay := 7
  420. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  421. if len(noticeArr) >= 2 {
  422. noticeTime = noticeArr[1]
  423. }
  424. noticeWeek := noticeArr[0]
  425. switch noticeWeek {
  426. case "周一":
  427. addDay = 1
  428. case "周二":
  429. addDay = 2
  430. case "周三":
  431. addDay = 3
  432. case "周四":
  433. addDay = 4
  434. case "周五":
  435. addDay = 5
  436. case "周六":
  437. addDay = 6
  438. case "周日":
  439. addDay = 7
  440. }
  441. modifyDate = modifyDate.AddDate(0, 0, addDay-7)
  442. }
  443. //如果正好是提醒日,同时本周没有过记录,那么需要提醒
  444. if todayStr == modifyDate.Format(utils.FormatDate) && !nowWeekFirstDay.Before(funcDataDtTime) {
  445. funcIsNotice = true
  446. }
  447. case "月度":
  448. addDay := 0
  449. modifyDate := nowMonthLastDay //下次更新日期
  450. if tmpEdb.NoticeTime != "" {
  451. strArr := strings.Split(tmpEdb.NoticeTime, "日")
  452. if len(strArr) >= 2 {
  453. noticeTime = strArr[1]
  454. }
  455. tmpAddDay, tmpErr := strconv.Atoi(strArr[0])
  456. if tmpErr != nil {
  457. funcErr = tmpErr
  458. }
  459. addDay = tmpAddDay - 1
  460. modifyDate = nowMonthFirstDay.AddDate(0, 0, addDay)
  461. }
  462. //如果正好是提醒日,同时本月没有过记录,那么需要提醒
  463. if todayStr == modifyDate.Format(utils.FormatDate) && !nowMonthFirstDay.Before(funcDataDtTime) {
  464. funcIsNotice = true
  465. }
  466. case "季度":
  467. //提醒时间
  468. if tmpEdb.NoticeTime != "" {
  469. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  470. if len(noticeArr) >= 2 {
  471. noticeTime = noticeArr[1]
  472. }
  473. }
  474. //每季度更新数据时间
  475. //如果正好是提醒日(每季度最后一天),同时本季度没有过记录,那么需要提醒
  476. if todayStr == nowQuarterLastDay.Format(utils.FormatDate) && !nowQuarterFirstDay.Before(funcDataDtTime) {
  477. funcIsNotice = true
  478. }
  479. case "半年度":
  480. //提醒时间
  481. if tmpEdb.NoticeTime != "" {
  482. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  483. if len(noticeArr) >= 2 {
  484. noticeTime = noticeArr[1]
  485. }
  486. }
  487. //每半年度更新数据时间
  488. //如果正好是提醒日(每半年度最后一天),同时本半年度没有过记录,那么需要提醒
  489. if todayStr == nowHalfYearLastDay.Format(utils.FormatDate) && !nowHalfYearFirstDay.Before(funcDataDtTime) {
  490. funcIsNotice = true
  491. }
  492. case "年度":
  493. //提醒时间
  494. if tmpEdb.NoticeTime != "" {
  495. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  496. if len(noticeArr) >= 2 {
  497. noticeTime = noticeArr[1]
  498. }
  499. }
  500. //每年度更新数据时间
  501. //如果正好是提醒日(每年度最后一天),同时半年度没有过记录,那么需要提醒
  502. if todayStr == nowYearLastDay.Format(utils.FormatDate) && !nowYearFirstDay.Before(funcDataDtTime) {
  503. funcIsNotice = true
  504. }
  505. }
  506. //fmt.Println(tmpEdb.TradeCode, " funcIsNotice:", funcIsNotice)
  507. //如果还是要提醒
  508. if funcIsNotice {
  509. //用户微信openid列表数据
  510. openIdList := make([]*models.OpenIdList, 0)
  511. //获取用户信息
  512. isAdmin := true
  513. admin, err := models.GetAdminByAdminId(tmpEdb.UserId)
  514. if err != nil {
  515. if err.Error() == utils.ErrNoRow() {
  516. isAdmin = false
  517. } else {
  518. return err
  519. }
  520. }
  521. if admin == nil {
  522. isAdmin = false
  523. }
  524. if isAdmin {
  525. if admin.Mobile == "" {
  526. } else {
  527. wxUser, err := models.GetWxUserByMobile(admin.Mobile)
  528. if err != nil {
  529. return err
  530. }
  531. if wxUser == nil {
  532. funcErr = errors.New("用户信息不存在:mobile:" + admin.Mobile)
  533. return err
  534. }
  535. tmpOpenidList, err := models.GetUserOpenidListByUserId(int(wxUser.UserId))
  536. if err != nil {
  537. return err
  538. }
  539. openIdList = tmpOpenidList
  540. }
  541. } else {
  542. tmpOpenidList, err := models.GetUserOpenidListByUserId(tmpEdb.UserId)
  543. if err != nil {
  544. return err
  545. }
  546. openIdList = tmpOpenidList
  547. }
  548. //发送消息
  549. if len(openIdList) <= 0 {
  550. funcErr = errors.New("openId 列表为空" + strconv.Itoa(tmpEdb.UserId))
  551. return
  552. }
  553. first := "数据录入提醒"
  554. keyword1 := tmpEdb.SecName
  555. keyword2 := "每周 " + edb.NoticeTime
  556. remark := tmpEdb.SecName + "该更新了"
  557. err = SendWxMsgWithFrequency(first, keyword1, keyword2, remark, openIdList)
  558. if err != nil {
  559. return err
  560. }
  561. //发送成功,记录发送日志
  562. {
  563. sendRecord := new(models.EdbinfoSendMsgRecord)
  564. sendRecord.UserId = tmpEdb.UserId
  565. sendRecord.TradeCode = tmpEdb.TradeCode
  566. sendRecord.CreateTime = time.Now()
  567. err = models.AddEdbinfoSendMsgRecord(sendRecord)
  568. if err != nil {
  569. return err
  570. }
  571. }
  572. }
  573. return
  574. }
  575. //添加定时任务(没有设置通知时间就不进行定时任务通知了)
  576. spec := ``
  577. if noticeTime != "" {
  578. noticeArr := strings.Split(noticeTime, ":")
  579. if len(noticeArr) == 3 {
  580. //spec = ` */20 * * * * * `
  581. spec = fmt.Sprintf(` %s %s %s * * * `, noticeArr[2], noticeArr[1], noticeArr[0])
  582. //定时任务开始的时间
  583. tmpTask := task.NewTask(taskName, spec, tmpTaskFunc)
  584. task.AddTask(taskName, tmpTask)
  585. tmpEdbTaskNameMap[taskName] = true
  586. }
  587. }
  588. }
  589. }
  590. //将当天的手工指标加入到手工指标池去
  591. EdbTaskNameMap[todayStr] = tmpEdbTaskNameMap
  592. //开启协程,用来清除定时任务
  593. go deleteTask()
  594. //如果当前定时任务执行次数大于0次,那么需要往手工指标定时任务停止channel写入数据,用来关闭昨天没有执行的的定时任务
  595. if EdbTaskRunNum > 0 {
  596. //清除昨天的数据
  597. EdbTaskStopChannel <- time.Now().AddDate(0, 0, -1).Format(utils.FormatDate)
  598. }
  599. //手工指标定时任务开始次数累加
  600. EdbTaskRunNum++
  601. return
  602. //fmt.Println(task.NewMapSorter())
  603. }
  604. // deleteTask 清除已通知的任务
  605. func deleteTask() {
  606. for {
  607. select {
  608. case taskName := <-EdbTaskNameChannel:
  609. task.DeleteTask(taskName)
  610. delete(EdbTaskNameMap, taskName)
  611. case dayStr := <-EdbTaskStopChannel: //收到停止信号,先清除掉那一天的定时任务,
  612. for taskName := range EdbTaskNameMap[dayStr] {
  613. task.DeleteTask(taskName)
  614. delete(EdbTaskNameMap, taskName)
  615. }
  616. break
  617. }
  618. }
  619. }