task.go 21 KB

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