task.go 23 KB

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