Patient.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. package controllers
  2. import (
  3. "FollowUp_Notice/conf"
  4. "FollowUp_Notice/http"
  5. "FollowUp_Notice/logs"
  6. "FollowUp_Notice/models/Account"
  7. "FollowUp_Notice/models/Illness"
  8. "FollowUp_Notice/models/Patient"
  9. "FollowUp_Notice/models/System"
  10. "FollowUp_Notice/models/Tag"
  11. "fmt"
  12. "git.baozhida.cn/ERP_libs/lib"
  13. beego "github.com/beego/beego/v2/server/web"
  14. "github.com/robfig/cron/v3"
  15. "math"
  16. "strconv"
  17. "strings"
  18. "time"
  19. )
  20. type PatientController struct {
  21. beego.Controller
  22. User Account.User
  23. }
  24. func (c *PatientController) Prepare() {
  25. if Account.User_r != nil {
  26. c.User = *Account.User_r
  27. }
  28. }
  29. // 添加患者信息
  30. func (c *PatientController) Patient_List() {
  31. // 分页参数 初始化
  32. page, _ := c.GetInt("page")
  33. if page < 1 {
  34. page = 1
  35. }
  36. page_z, _ := c.GetInt("page_z")
  37. if page_z < 1 {
  38. page_z = conf.Page_size
  39. }
  40. // 病历号
  41. T_number := c.GetString("T_number")
  42. // 姓名
  43. T_name := c.GetString("T_name")
  44. // 标签
  45. T_tag, _ := c.GetInt("T_tag")
  46. // 疾病
  47. T_illness, _ := c.GetInt("T_illness")
  48. // 通知状态 1待通知 2已通知
  49. T_notice, _ := c.GetInt("T_notice")
  50. // 复诊状态 1正常 2超时
  51. T_follow_up, _ := c.GetInt("T_follow_up")
  52. // 年龄排序 1-升序 2降序
  53. T_age_sort, _ := c.GetInt("T_age_sort")
  54. // 下次复诊时间 1-升序 2降序
  55. T_next_time_sort, _ := c.GetInt("T_next_time_sort")
  56. Tag.Read_Tag_All_Map()
  57. Illness.Read_Illness_All_Map()
  58. R_List, R_cnt := Patient.Read_Patient_List(c.User.Id, T_number, T_name, T_tag, T_illness, T_notice, T_follow_up, T_age_sort, T_next_time_sort, page, page_z)
  59. var r_jsons lib.R_JSONS
  60. r_jsons.Num = R_cnt
  61. r_jsons.Data = R_List
  62. r_jsons.Page = page
  63. r_jsons.Page_size = int(math.Ceil(float64(R_cnt) / float64(page_z)))
  64. c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: r_jsons}
  65. c.ServeJSON()
  66. return
  67. }
  68. // 添加患者信息
  69. func (c *PatientController) Patient_Add() {
  70. T_number := c.GetString("T_number")
  71. T_name := c.GetString("T_name")
  72. T_age, _ := c.GetInt("T_age")
  73. T_tag := c.GetString("T_tag")
  74. T_illness, _ := c.GetInt("T_illness")
  75. T_phone := c.GetString("T_phone")
  76. T_notice_phone, _ := c.GetInt("T_notice_phone")
  77. T_notice_message, _ := c.GetInt("T_notice_message")
  78. T_notice_interval := c.GetString("T_notice_interval")
  79. T_record := c.GetString("T_record")
  80. var_ := Patient.Patient{
  81. T_uid: c.User.Id,
  82. T_number: T_number,
  83. T_name: T_name,
  84. T_age: T_age,
  85. T_tag: T_tag,
  86. T_illness: T_illness,
  87. T_phone: T_phone,
  88. T_notice_phone: T_notice_phone,
  89. T_notice_message: T_notice_message,
  90. T_notice_interval: T_notice_interval,
  91. T_record: T_record,
  92. T_State: 1,
  93. }
  94. T_record_list := strings.Split(strings.Trim(T_record, "|"), "|")
  95. var T_time string // 复诊时间
  96. var T_interval int // 复诊间隔
  97. if len(T_record_list) > 0 {
  98. temp := T_record_list[len(T_record_list)-1]
  99. T_time = strings.Split(temp, ",")[0]
  100. T_interval, _ = strconv.Atoi(strings.Split(temp, ",")[1])
  101. t, _ := lib.DateStrToTime(T_time)
  102. nextTime := t.AddDate(0, 0, T_interval)
  103. // 复诊状态 1正常 2超时 3结束
  104. var_.T_follow_up = 1
  105. if nextTime.Before(time.Now()) {
  106. var_.T_follow_up = 2
  107. }
  108. if T_interval == 0 {
  109. var_.T_follow_up = 3
  110. }
  111. var_.T_next_time = nextTime.Format("2006-01-02")
  112. var_.T_notice = 1
  113. }
  114. _, err := Patient.Add_Patient(var_)
  115. if err != nil {
  116. c.Data["json"] = lib.JSONS{Code: 209, Msg: "添加失败!"}
  117. c.ServeJSON()
  118. return
  119. }
  120. System.Add_UserLogs_T(c.User.T_uuid, "患者", "新增", var_)
  121. c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!"}
  122. c.ServeJSON()
  123. return
  124. }
  125. // 修改患者信息
  126. func (c *PatientController) Patient_Edit() {
  127. T_uuid := c.GetString("T_uuid")
  128. T_number := c.GetString("T_number")
  129. T_name := c.GetString("T_name")
  130. T_age, _ := c.GetInt("T_age")
  131. T_tag := c.GetString("T_tag")
  132. T_illness, _ := c.GetInt("T_illness")
  133. T_phone := c.GetString("T_phone")
  134. T_notice_phone, _ := c.GetInt("T_notice_phone")
  135. T_notice_message, _ := c.GetInt("T_notice_message")
  136. T_notice_interval := c.GetString("T_notice_interval")
  137. T_record := c.GetString("T_record")
  138. var err error
  139. var patient Patient.Patient
  140. if len(T_uuid) == 0 {
  141. c.Data["json"] = lib.JSONS{Code: 202, Msg: "T_uuid Err!"}
  142. c.ServeJSON()
  143. return
  144. }
  145. patient, err = Patient.Read_Patient_ByT_uuid(T_uuid)
  146. if err != nil {
  147. c.Data["json"] = lib.JSONS{Code: 202, Msg: "T_uuid Err!"}
  148. c.ServeJSON()
  149. return
  150. }
  151. var cols []string
  152. if len(T_number) > 0 {
  153. patient.T_number = T_number
  154. cols = append(cols, "T_number")
  155. }
  156. if len(T_name) > 0 {
  157. patient.T_name = T_name
  158. cols = append(cols, "T_name")
  159. }
  160. if T_age > 0 {
  161. patient.T_age = T_age
  162. cols = append(cols, "T_age")
  163. }
  164. if len(T_tag) > 0 {
  165. patient.T_tag = T_tag
  166. cols = append(cols, "T_tag")
  167. }
  168. if T_illness > 0 {
  169. patient.T_illness = T_illness
  170. cols = append(cols, "T_illness")
  171. }
  172. if len(T_phone) > 0 {
  173. patient.T_phone = T_phone
  174. cols = append(cols, "T_name")
  175. }
  176. if T_notice_phone > 0 {
  177. patient.T_notice_phone = T_notice_phone
  178. cols = append(cols, "T_notice_phone")
  179. }
  180. if T_notice_message > 0 {
  181. patient.T_notice_message = T_notice_message
  182. cols = append(cols, "T_notice_message")
  183. }
  184. if len(T_notice_interval) > 0 {
  185. patient.T_notice_interval = T_notice_interval
  186. cols = append(cols, "T_notice_interval")
  187. }
  188. if len(T_record) > 0 {
  189. patient.T_record = T_record
  190. cols = append(cols, "T_record")
  191. }
  192. T_record_list := strings.Split(strings.Trim(T_record, "|"), "|")
  193. var T_time string // 复诊时间
  194. var T_interval int // 复诊间隔
  195. if len(T_record_list) > 0 {
  196. temp := T_record_list[len(T_record_list)-1]
  197. T_time = strings.Split(temp, ",")[0]
  198. T_interval, _ = strconv.Atoi(strings.Split(temp, ",")[1])
  199. t, _ := lib.DateStrToTime(T_time)
  200. nextTime := t.AddDate(0, 0, T_interval)
  201. nextTimeStr := nextTime.Format("2006-01-02")
  202. if nextTimeStr != patient.T_next_time {
  203. patient.T_follow_up = 1
  204. if nextTime.Before(time.Now()) {
  205. patient.T_follow_up = 2
  206. }
  207. if T_interval == 0 {
  208. patient.T_follow_up = 3
  209. }
  210. patient.T_next_time = nextTimeStr
  211. patient.T_notice = 1
  212. }
  213. }
  214. cols = append(cols, "T_next_time", "T_notice", "T_follow_up")
  215. if err = Patient.Update_Patient(patient, cols...); err != nil {
  216. c.Data["json"] = lib.JSONS{Code: 208, Msg: "修改失败!"}
  217. c.ServeJSON()
  218. return
  219. }
  220. System.Add_UserLogs_T(c.User.T_uuid, "用户", "修改个人信息", patient)
  221. c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!"}
  222. c.ServeJSON()
  223. return
  224. }
  225. // 删除患者信息
  226. func (c *PatientController) Patient_Del() {
  227. T_uuid := c.GetString("T_uuid")
  228. if len(T_uuid) == 0 {
  229. c.Data["json"] = lib.JSONS{Code: 201, Msg: "T_uuid Err!"}
  230. c.ServeJSON()
  231. return
  232. }
  233. patient, err := Patient.Read_Patient_ByT_uuid(T_uuid)
  234. if err != nil {
  235. c.Data["json"] = lib.JSONS{Code: 202, Msg: "T_uuid Err!"}
  236. c.ServeJSON()
  237. return
  238. }
  239. if c.User.Id != 1 || c.User.Id != patient.T_uid {
  240. c.Data["json"] = lib.JSONS{Code: 202, Msg: "无权删除!"}
  241. c.ServeJSON()
  242. return
  243. }
  244. if err = Patient.Delete_Patient(patient); err != nil {
  245. c.Data["json"] = lib.JSONS{Code: 202, Msg: "删除失败!"}
  246. c.ServeJSON()
  247. return
  248. }
  249. c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!"}
  250. c.ServeJSON()
  251. return
  252. }
  253. func Cron_Patient() {
  254. //创建一个定时任务对象
  255. c := cron.New(cron.WithSeconds())
  256. //给对象增加定时任务
  257. //c.AddFunc("0 */1 * * * ?", Cron_Patient_Notice)
  258. c.AddFunc("@daily", Cron_Patient_ChangeFollowUp) // 修改复诊状态
  259. c.AddFunc("0 0 8 * * *", Cron_Patient_Notice) // 消息通知
  260. //启动定时任务
  261. c.Start()
  262. defer c.Stop()
  263. //查询语句,阻塞,让main函数不退出,保持程序运行
  264. select {}
  265. }
  266. // 修改患者复诊状态 每晚0点统计
  267. // 已通知并且下次复诊时间超过当期时间 已过期
  268. func Cron_Patient_ChangeFollowUp() {
  269. T_date := time.Now().Format("2006-01-02")
  270. logs.Info("开始处理" + T_date + "患者通知状态")
  271. // T_notice 通知状态 1待通知 2已通知
  272. // T_follow_up 复诊状态 1正常 2超时
  273. list, _ := Patient.Read_Patient_List(0, "", "", 0, 0, 2, 1, 0, 0, 0, 9999)
  274. for _, v := range list {
  275. nextTime, _ := lib.DateStrToTime(v.T_next_time)
  276. expDate := nextTime.AddDate(0, 0, v.T_next_interval)
  277. if expDate.Before(time.Now()) {
  278. var_ := Patient.Patient{Id: v.Id, T_follow_up: 2}
  279. if err := Patient.Update_Patient(var_, "T_follow_up"); err != nil {
  280. System.Add_SysLogs_T("复诊状态", "修改失败", var_)
  281. }
  282. }
  283. }
  284. }
  285. // 给患者发送消息提醒 每天8点
  286. // 发送成功将通知状态修改未已通知H
  287. func Cron_Patient_Notice() {
  288. T_date := time.Now().Format("2006-01-02")
  289. logs.Info("开始发送" + T_date + "患者通知")
  290. // T_notice 通知状态 1待通知 2已通知
  291. // T_follow_up 复诊状态 1正常 2超时 3结束
  292. now := time.Now()
  293. nowDate := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local)
  294. userList, _ := Account.Read_User_List("", 0, 9999)
  295. for _, user := range userList {
  296. // T_arrears_notice 欠费通知 1继续通知 2终止通知
  297. // T_State 0删除 1启用 2停用
  298. // 欠费终止通知或者停用后,不再继续发送通知
  299. if (user.T_money <= 0 && user.T_arrears_notice == 2) || user.T_State == 2 {
  300. continue
  301. }
  302. patientList, _ := Patient.Read_Patient_List(user.Id, "", "", 0, 0, 0, 1, 0, 0, 0, 9999)
  303. for _, v := range patientList {
  304. nextTime, _ := lib.DateStrToTime(v.T_next_time)
  305. intervalList := strings.Split(strings.Trim(v.T_notice_interval, ","), ",")
  306. var success bool
  307. // 提前1天
  308. if intervalList[0] == "1" && nextTime.AddDate(0, 0, -1) == nowDate {
  309. success = Send_Notice(nextTime, user, v)
  310. }
  311. // 提前2天
  312. if intervalList[1] == "1" && nextTime.AddDate(0, 0, -2) == nowDate {
  313. success = Send_Notice(nextTime, user, v)
  314. }
  315. // 提前3天
  316. if intervalList[2] == "1" && nextTime.AddDate(0, 0, -3) == nowDate {
  317. success = Send_Notice(nextTime, user, v)
  318. }
  319. // 提前7天
  320. if intervalList[3] == "1" && nextTime.AddDate(0, 0, -7) == nowDate {
  321. success = Send_Notice(nextTime, user, v)
  322. }
  323. if success == true {
  324. // 通知状态 1待通知 2已通知
  325. var_ := Patient.Patient{Id: v.Id, T_notice: 2}
  326. if err := Patient.Update_Patient(var_, "T_notice"); err != nil {
  327. System.Add_SysLogs_T("复诊通知", "修改失败", var_)
  328. }
  329. }
  330. }
  331. }
  332. }
  333. // 发送通知(短信、电话)
  334. func Send_Notice(nextTime time.Time, user Account.User_R, patient Patient.Patient_R) (Success bool) {
  335. // 发送短信通知
  336. //if patient.T_notice_message == 1 {
  337. // res, err := http.SmsXSend(user.T_template_id, patient.T_phone, patient.T_name, nextTime.Format("2006年01月02日"))
  338. // if err != nil {
  339. // System.Add_SysLogs_T("复诊通知", "短信通知失败", patient)
  340. // }
  341. // // 保存短信发送记录
  342. // smsSend := Patient.PatientSend{
  343. // T_uid: user.Id,
  344. // T_pid: patient.Id,
  345. // T_phone: patient.T_phone,
  346. // T_type: 1,
  347. // T_Remark: "send_id:" + res.Send_id,
  348. // T_State: 1,
  349. // }
  350. // if res.Status == "error" {
  351. // smsSend.T_State = 0
  352. // }
  353. // if res.Status == "success" {
  354. // Success = true
  355. // }
  356. // _, err = Patient.Add_PatientSend(smsSend)
  357. // if err != nil {
  358. // System.Add_SysLogs_T("复诊通知", "添加发送记录失败", patient)
  359. // }
  360. //}
  361. if patient.T_notice_phone == 1 {
  362. playInfoList := http.GetPlayInfoList(conf.VoiceCall_Template, []string{user.T_user, patient.T_name, nextTime.Format("2006/01/02")})
  363. res, err := http.VoiceNotifyAPI(conf.VoiceCall_Phone, "+86"+patient.T_phone, playInfoList)
  364. if err != nil {
  365. System.Add_SysLogs_T("复诊通知", "电话通知失败", patient)
  366. }
  367. // 保存短信发送记录
  368. smsSend := Patient.PatientSend{
  369. T_uid: user.Id,
  370. T_pid: patient.Id,
  371. T_phone: patient.T_phone,
  372. T_type: 1,
  373. T_Remark: fmt.Sprintf("resultdesc:%s,sessionId:%s", res.Resultdesc, res.SessionId),
  374. T_State: 1,
  375. }
  376. if res.Resultcode != "0" {
  377. smsSend.T_State = 0
  378. }
  379. if res.Resultcode == "0" {
  380. Success = true
  381. }
  382. _, err = Patient.Add_PatientSend(smsSend)
  383. if err != nil {
  384. System.Add_SysLogs_T("复诊通知", "添加发送记录失败", patient)
  385. }
  386. }
  387. return Success
  388. }