xcx_api_controller.go 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. package xcx_mobile_api_controller_go
  2. import (
  3. "Xcx_New/controllers/mobile_api_controllers"
  4. "Xcx_New/enums"
  5. "Xcx_New/models"
  6. "Xcx_New/service"
  7. "Xcx_New/utils"
  8. "fmt"
  9. "github.com/astaxie/beego"
  10. "github.com/jinzhu/gorm"
  11. "strconv"
  12. "time"
  13. )
  14. func XcxApiControllersRegisterRouters() {
  15. ////传送codeinit
  16. beego.Router("/xcx/m/api/code", &XcxApiController{}, "Get:GetCodeInit")
  17. //获取验证码
  18. beego.Router("/xcx/api/mobile/code", &XcxApiController{}, "Get:GetCodeInfo")
  19. //用户绑定
  20. beego.Router("/xcx/api/mobile/register", &XcxApiController{}, "Get:GetUserRegister")
  21. //登录
  22. beego.Router("/xcx/api/mobile/login", &XcxApiController{}, "Get:GetLoginInfor")
  23. //获取二维码信息
  24. beego.Router("/xcx/api/mobile/patient", &XcxApiController{}, "Get:GetPatientList")
  25. //获取登录后的信息
  26. beego.Router("/xcx/api/mobile/getdatainfo", &XcxApiController{}, "Get:GetDataInfo")
  27. //获取排班数据
  28. beego.Router("/xcx/api/mobile/schedule", &XcxApiController{}, "Get:GetScheduleInfo")
  29. //获取透析记录
  30. beego.Router("/xcx/api/mobile/dialysis", &XcxApiController{}, "Get:GetMobileSchedule")
  31. //获取患者的电子病历
  32. beego.Router("/xcx/api/mobile/getpatientinfo", &XcxApiController{}, "Get:GetPatientInfo")
  33. //获取机构名称
  34. beego.Router("/xcx/api/mobile/getorginfo", &XcxApiController{}, "Get:GetOrgInfo")
  35. //获取宣教信息
  36. beego.Router("/xcx/api/mobile/geteducation", &XcxApiController{}, "Get:GetEducationList")
  37. //获取医嘱信息
  38. beego.Router("/xcx/api/mobile/getdoctoradvice", &XcxApiController{}, "Get:GetDoctorAdvice")
  39. }
  40. type XcxApiController struct {
  41. mobile_api_controllers.MobileBaseAPIController
  42. }
  43. func (this *XcxApiController) GetCodeInit() {
  44. redisClient := service.RedisClient()
  45. defer redisClient.Close()
  46. req := this.Ctx.Request
  47. addr := utils.GetIP(req)
  48. cur_time := time.Now().Format("2006-01-02")
  49. _, err := redisClient.Get("ip:host_" + cur_time + "_" + addr).Result()
  50. if err != nil {
  51. redisClient.Set("ip:host_"+cur_time+"_"+addr, 0, time.Second*24*60*60)
  52. }
  53. //将客户端的ip加密传给前端,作为短信验证的密钥,来验证短信发送的IP地址
  54. aespass := utils.AESEncrypt(addr)
  55. fmt.Println("hhhhhhh3223323232332", aespass)
  56. this.ServeSuccessJSON(map[string]interface{}{
  57. "aespass": aespass,
  58. })
  59. }
  60. func (this *XcxApiController) GetUserRegister() {
  61. //用户绑定
  62. name := this.GetString("name")
  63. id_card_no := this.GetString("id_card_no")
  64. fmt.Println("id_card_no", id_card_no)
  65. mobile := this.GetString("mobile")
  66. code := this.GetString("code")
  67. patient, errcodes := service.GetMobilePatient(id_card_no)
  68. fmt.Println("errcodes2323232232", errcodes)
  69. if errcodes == nil {
  70. role := models.XcxAdminUserRole{
  71. PatientName: name,
  72. IdCardNo: id_card_no,
  73. Mobile: mobile,
  74. Code: code,
  75. PatientId: patient.ID,
  76. UserOrgId: patient.UserOrgId,
  77. Status: 1,
  78. Ctime: time.Now().Unix(),
  79. Mtime: 0,
  80. Appid: "",
  81. Appsecret: "",
  82. SessionKey: "",
  83. }
  84. //查找该电话号码是否存在
  85. _, errcode := service.GetMobilePatient(mobile)
  86. if errcode == gorm.ErrRecordNotFound {
  87. err := service.CreateXcxAdminUser(role)
  88. if err == nil {
  89. mobilePatient, _ := service.GetMobilePatient(id_card_no)
  90. this.ServeSuccessJSON(map[string]interface{}{
  91. "role": role,
  92. "is_bind": true,
  93. "patient": mobilePatient,
  94. })
  95. } else {
  96. this.ServeSuccessJSON(map[string]interface{}{
  97. "is_bind": false,
  98. "msg": "绑定失败",
  99. })
  100. }
  101. } else if errcode == nil {
  102. mobilePatient, _ := service.GetMobilePatient(id_card_no)
  103. this.ServeSuccessJSON(map[string]interface{}{
  104. "is_bind": true,
  105. "patient": mobilePatient,
  106. })
  107. }
  108. fmt.Println("roler", role)
  109. } else if errcodes == gorm.ErrRecordNotFound {
  110. this.ServeSuccessJSON(map[string]interface{}{
  111. "is_bind": false,
  112. })
  113. }
  114. }
  115. func (this *XcxApiController) GetCodeInfo() {
  116. //mobile := this.GetString("phone")
  117. //aespass := this.GetString("aespass")
  118. //utils.TraceLog("mobile:%v aespass:%v", mobile, aespass)
  119. //if utils.CellPhoneRegexp().MatchString(mobile) == false {
  120. // this.Data["json"] = enums.MakeFailResponseJSONWithSGJErrorCode(enums.ErrorCodeMobileFormat)
  121. // this.ServeJSON()
  122. // return
  123. //}
  124. //if err := service.SendVerificationCodeSMS(mobile, aespass); err != nil {
  125. // this.Data["json"] = enums.MakeFailResponseJSON(err.Error(), 600)
  126. // this.ServeJSON()
  127. //} else {
  128. // this.Data["json"] = enums.MakeSuccessResponseJSON(map[string]interface{}{
  129. // "msg": "短信发送成功,有效期为10分钟",
  130. //
  131. // })
  132. // this.ServeJSON()
  133. //}
  134. this.ServeSuccessJSON(map[string]interface{}{
  135. "code": "100100",
  136. })
  137. }
  138. func (this *XcxApiController) GetLoginInfor() {
  139. mobile := this.GetString("mobile")
  140. fmt.Println(mobile)
  141. user_admin, errcodes := service.GetXcxMobileInformation(mobile)
  142. if errcodes == gorm.ErrRecordNotFound {
  143. info, _ := service.GetMobilePatientInfo(mobile)
  144. this.ServeSuccessJSON(map[string]interface{}{
  145. "patient": info,
  146. "role": user_admin,
  147. "is_bind": false,
  148. })
  149. } else if errcodes == nil {
  150. info, _ := service.GetPatientListByPatientId(user_admin.PatientId)
  151. this.ServeSuccessJSON(map[string]interface{}{
  152. "patient": info,
  153. "role": user_admin,
  154. "is_bind": true,
  155. })
  156. }
  157. }
  158. func (this *XcxApiController) GetPatientList() {
  159. appid := "wx20b60369111b063a"
  160. key := "Yz1HgsFX3yJvWPJSEdwJDA=="
  161. strs := "uSevGQ5ShkiHjQuqz7s36SKZisVGA4fHH/dy+etg0W7ibVeidl6TyFS+kQZ6B9AI2T+1kOtKXeyveQR7q2TXJdu3fhKCFoLKVFzICNEvkiHMnchJ0T0OpRO3oT+icYq80+egvT+jMSgP7yi0cAgmiKaK/4QURD7+nvxRAj9drzz77sbeFt8KElb1LN/+Wn8dIoQzisxbON9G1VJYYtyBkQ=="
  162. iv := "JgsbDhJ613uaAgAoBVh0Zw=="
  163. //data, err := service.Dncrypt(strs, key, iv)
  164. //fmt.Println(err)
  165. data, err := service.DecryptData(appid, key, iv, strs)
  166. patient_id, _ := this.GetInt64("patient_id")
  167. patient, err := service.GetPatientListByPatientId(patient_id)
  168. if err == nil {
  169. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
  170. return
  171. }
  172. this.ServeSuccessJSON(map[string]interface{}{
  173. "patient": patient,
  174. "data": data,
  175. })
  176. }
  177. func (this *XcxApiController) GetDataInfo() {
  178. appid := this.GetString("appid")
  179. fmt.Println(appid)
  180. key := this.GetString("key")
  181. iv := this.GetString("iv")
  182. encryptedData := this.GetString("encryptedData")
  183. list, _ := service.DecryptData(appid, key, iv, encryptedData)
  184. //list, _ := service.Dncrypt(encryptedData, key, iv)
  185. this.ServeSuccessJSON(map[string]interface{}{
  186. "list": list,
  187. })
  188. }
  189. func (this *XcxApiController) GetScheduleInfo() {
  190. patient_id, _ := this.GetInt64("patient_id")
  191. fmt.Println(patient_id)
  192. thisWeekMonday := service.GetFirstDateOfWeek()
  193. weekDayWeek := service.GetWeekDayOfWeek()
  194. TimeMonday, _ := time.Parse("2006-01-02", thisWeekMonday)
  195. weekDays, _ := time.Parse("2006-01-02", weekDayWeek)
  196. lastWeekMonday := TimeMonday.AddDate(0, 0, -7)
  197. nextWeekMonday := weekDays.AddDate(0, 0, +13)
  198. var weekMonday = lastWeekMonday.Format("2006-01-02")
  199. var weekDay = nextWeekMonday.Format("2006-01-02")
  200. fmt.Println("weekmodonday", weekMonday)
  201. fmt.Println("nextweeekday", weekDay)
  202. timeLayout := "2006-01-02"
  203. loc, _ := time.LoadLocation("Local")
  204. startTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", weekMonday+" 00:00:00", loc)
  205. fmt.Println("startiem", startTime)
  206. endTime, _ := time.ParseInLocation(timeLayout+"15:04:05", weekDay+"00:00:00", loc)
  207. fmt.Println(startTime.Unix(), endTime.Unix())
  208. schedule, err := service.GetScheduleInfo(startTime.Unix(), endTime.Unix(), patient_id)
  209. //获取当前今日的排班日期
  210. time_now := time.Now().Format("2006-01-02")
  211. fmt.Println("time_now", time_now)
  212. timeNowUnix, _ := time.ParseInLocation(timeLayout+"15:04:05", time_now+"00:00:00", loc)
  213. fmt.Println("timeNowUnix", timeNowUnix.Unix())
  214. //获取今日下机日期
  215. order, _ := service.GetTodayDialysis(timeNowUnix.Unix(), patient_id)
  216. //获取下一次排班信息
  217. patientSchedule, _ := service.GetNextPatientSchedule(1, timeNowUnix.Unix())
  218. if err != nil {
  219. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
  220. return
  221. }
  222. var one = startTime.Unix() + 86400
  223. fmt.Println("one2322332", one)
  224. var two = one + 86400
  225. var three = two + 86400
  226. var four = three + 86400
  227. var five = four + 86400
  228. var six = five + 86400
  229. var seven = six + 86400
  230. var nextOne = seven + 86400
  231. var nexttwo = nextOne + 86400
  232. var nextthree = nexttwo + 86400
  233. var nextfour = nextthree + 86400
  234. var nextfive = nextfour + 86400
  235. var nextsix = nextfive + 86400
  236. var nextseven = nextsix + 86400
  237. var lastOne = nextseven + 86400
  238. var lastwo = lastOne + 86400
  239. var lasthree = lastwo + 86400
  240. var lastfour = lasthree + 86400
  241. var lastfive = lastfour + 86400
  242. var lastsix = lastfive + 86400
  243. var lastseven = lastsix + 86400
  244. fmt.Println("各地好当家232332323232", lastseven)
  245. array := []interface{}{
  246. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(one, 10), "schedule_week": "1", "mode_id": "", "name": ""},
  247. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(one, 10), "schedule_week": "1", "mode_id": "", "name": ""},
  248. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(one, 10), "schedule_week": "1", "mode_id": "", "name": ""},
  249. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(two, 10), "schedule_week": "2", "mode_id": "", "name": ""},
  250. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(two, 10), "schedule_week": "2", "mode_id": "", "name": ""},
  251. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(two, 10), "schedule_week": "2", "mode_id": "", "name": ""},
  252. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(three, 10), "schedule_week": "3", "mode_id": "", "name": ""},
  253. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(three, 10), "schedule_week": "3", "mode_id": "", "name": ""},
  254. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(three, 10), "schedule_week": "3", "mode_id": "", "name": ""},
  255. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(four, 10), "schedule_week": "4", "mode_id": "", "name": ""},
  256. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(four, 10), "schedule_week": "4", "mode_id": "", "name": ""},
  257. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(four, 10), "schedule_week": "4", "mode_id": "", "name": ""},
  258. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(five, 10), "schedule_week": "5", "mode_id": "", "name": ""},
  259. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(five, 10), "schedule_week": "5", "mode_id": "", "name": ""},
  260. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(five, 10), "schedule_week": "5", "mode_id": "", "name": ""},
  261. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(six, 10), "schedule_week": "6", "mode_id": "", "name": ""},
  262. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(six, 10), "schedule_week": "6", "mode_id": "", "name": ""},
  263. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(six, 10), "schedule_week": "6", "mode_id": "", "name": ""},
  264. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(seven, 10), "schedule_week": "7", "mode_id": "", "name": ""},
  265. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(seven, 10), "schedule_week": "7", "mode_id": "", "name": ""},
  266. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(seven, 10), "schedule_week": "7", "mode_id": "", "name": ""},
  267. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(nextOne, 10), "schedule_week": "1", "mode_id": "", "name": ""},
  268. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(nextOne, 10), "schedule_week": "1", "mode_id": "", "name": ""},
  269. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(nextOne, 10), "schedule_week": "1", "mode_id": "", "name": ""},
  270. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(nexttwo, 10), "schedule_week": "2", "mode_id": "", "name": ""},
  271. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(nexttwo, 10), "schedule_week": "2", "mode_id": "", "name": ""},
  272. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(nexttwo, 10), "schedule_week": "2", "mode_id": "", "name": ""},
  273. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(nextthree, 10), "schedule_week": "3", "mode_id": "", "name": ""},
  274. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(nextthree, 10), "schedule_week": "3", "mode_id": "", "name": ""},
  275. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(nextthree, 10), "schedule_week": "3", "mode_id": "", "name": ""},
  276. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(nextfour, 10), "schedule_week": "4", "mode_id": "", "name": ""},
  277. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(nextfour, 10), "schedule_week": "4", "mode_id": "", "name": ""},
  278. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(nextfour, 10), "schedule_week": "4", "mode_id": "", "name": ""},
  279. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(nextfive, 10), "schedule_week": "5", "mode_id": "", "name": ""},
  280. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(nextfive, 10), "schedule_week": "5", "mode_id": "", "name": ""},
  281. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(nextfive, 10), "schedule_week": "5", "mode_id": "", "name": ""},
  282. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(nextsix, 10), "schedule_week": "6", "mode_id": "", "name": ""},
  283. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(nextsix, 10), "schedule_week": "6", "mode_id": "", "name": ""},
  284. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(nextsix, 10), "schedule_week": "6", "mode_id": "", "name": ""},
  285. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(nextseven, 10), "schedule_week": "7", "mode_id": "", "name": ""},
  286. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(nextseven, 10), "schedule_week": "7", "mode_id": "", "name": ""},
  287. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(nextseven, 10), "schedule_week": "7", "mode_id": "", "name": ""},
  288. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(lastOne, 10), "schedule_week": "1", "mode_id": "", "name": ""},
  289. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(lastOne, 10), "schedule_week": "1", "mode_id": "", "name": ""},
  290. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(lastOne, 10), "schedule_week": "1", "mode_id": "", "name": ""},
  291. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(lastwo, 10), "schedule_week": "2", "mode_id": "", "name": ""},
  292. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(lastwo, 10), "schedule_week": "2", "mode_id": "", "name": ""},
  293. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(lastwo, 10), "schedule_week": "2", "mode_id": "", "name": ""},
  294. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(lasthree, 10), "schedule_week": "3", "mode_id": "", "name": ""},
  295. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(lasthree, 10), "schedule_week": "3", "mode_id": "", "name": ""},
  296. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(lasthree, 10), "schedule_week": "3", "mode_id": "", "name": ""},
  297. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(lastfour, 10), "schedule_week": "4", "mode_id": "", "name": ""},
  298. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(lastfour, 10), "schedule_week": "4", "mode_id": "", "name": ""},
  299. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(lastfour, 10), "schedule_week": "4", "mode_id": "", "name": ""},
  300. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(lastfive, 10), "schedule_week": "5", "mode_id": "", "name": ""},
  301. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(lastfive, 10), "schedule_week": "5", "mode_id": "", "name": ""},
  302. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(lastfive, 10), "schedule_week": "5", "mode_id": "", "name": ""},
  303. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(lastsix, 10), "schedule_week": "6", "mode_id": "", "name": ""},
  304. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(lastsix, 10), "schedule_week": "6", "mode_id": "", "name": ""},
  305. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(lastsix, 10), "schedule_week": "6", "mode_id": "", "name": ""},
  306. map[string]string{"schedule_type": "1", "schedule_date": strconv.FormatInt(lastseven, 10), "schedule_week": "7", "mode_id": "", "name": ""},
  307. map[string]string{"schedule_type": "2", "schedule_date": strconv.FormatInt(lastseven, 10), "schedule_week": "7", "mode_id": "", "name": ""},
  308. map[string]string{"schedule_type": "3", "schedule_date": strconv.FormatInt(lastseven, 10), "schedule_week": "7", "mode_id": "", "name": ""},
  309. }
  310. this.ServeSuccessJSON(map[string]interface{}{
  311. "list": schedule,
  312. "array": array,
  313. "order": order,
  314. "patientSchedule": patientSchedule,
  315. })
  316. }
  317. func (this *XcxApiController) GetMobileSchedule() {
  318. patientID, _ := this.GetInt64("patient_id")
  319. recordDateStr := this.GetString("date")
  320. if patientID <= 0 {
  321. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
  322. return
  323. }
  324. if len(recordDateStr) == 0 {
  325. recordDateStr = time.Now().Format("2006-01-02")
  326. }
  327. date, parseDateErr := utils.ParseTimeStringToTime("2006-01-02", recordDateStr)
  328. if parseDateErr != nil {
  329. this.ErrorLog("日期(%v)解析错误:%v", recordDateStr, parseDateErr)
  330. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
  331. return
  332. }
  333. adminInfo := this.GetMobileAdminUserInfo()
  334. patient, getPatientErr := service.MobileGetPatientDetail(adminInfo.Org.Id, patientID)
  335. if getPatientErr != nil {
  336. this.ErrorLog("获取患者信息失败:%v", getPatientErr)
  337. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  338. return
  339. } else if patient == nil {
  340. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
  341. return
  342. }
  343. schedual, getSchedualErr := service.MobileGetSchedualDetail(adminInfo.Org.Id, patientID, date.Unix())
  344. if getSchedualErr != nil {
  345. this.ErrorLog("获取患者排班信息失败:%v", getSchedualErr)
  346. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  347. return
  348. }
  349. receiverTreatmentAccess, getRTARErr := service.MobileGetReceiverTreatmentAccessRecord(adminInfo.Org.Id, patientID, date.Unix())
  350. if getRTARErr != nil {
  351. this.ErrorLog("获取接诊评估失败:%v", getRTARErr)
  352. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  353. return
  354. }
  355. predialysisEvaluation, getPEErr := service.MobileGetPredialysisEvaluation(adminInfo.Org.Id, patientID, date.Unix())
  356. if getPEErr != nil {
  357. this.ErrorLog("获取透前评估失败:%v", getPEErr)
  358. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  359. return
  360. }
  361. lastPredialysisEvaluation, getLPEErr := service.MobileGetLastTimePredialysisEvaluation(adminInfo.Org.Id, patientID, date.Unix())
  362. if getLPEErr != nil {
  363. this.ErrorLog("获取上一次透前评估失败:%v", getLPEErr)
  364. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  365. return
  366. }
  367. doctorAdvices, getDoctorAdvicesErr := service.MobileGetDoctorAdvicesByGroups(adminInfo.Org.Id, patientID, date.Unix())
  368. if getDoctorAdvicesErr != nil {
  369. this.ErrorLog("获取临时医嘱失败:%v", getDoctorAdvicesErr)
  370. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  371. return
  372. }
  373. dialysisOrder, getDialysisOrderErr := service.MobileGetSchedualDialysisRecord(adminInfo.Org.Id, patientID, date.Unix())
  374. if getDialysisOrderErr != nil {
  375. this.ErrorLog("获取透析记录失败:%v", getDialysisOrderErr)
  376. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  377. return
  378. }
  379. doubleCheck, getDoubleCheckErr := service.MobileGetDoubleCheck(adminInfo.Org.Id, patientID, date.Unix())
  380. if getDoubleCheckErr != nil {
  381. this.ErrorLog("获取双人核对记录失败:%v", getDoubleCheckErr)
  382. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  383. return
  384. }
  385. monitorRecords, getMonitorRecordsErr := service.MobileGetMonitorRecords(adminInfo.Org.Id, patientID, date.Unix())
  386. if getMonitorRecordsErr != nil {
  387. this.ErrorLog("获取透析监测记录失败:%v", getMonitorRecordsErr)
  388. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  389. return
  390. }
  391. var lastMonitorRecord *models.MonitoringRecord
  392. lastMonitorRecord, getLastErr := service.MobileGetLastMonitorRecord(adminInfo.Org.Id, patientID, date.Unix())
  393. if getLastErr != nil {
  394. this.ErrorLog("获取上一次透析的监测记录失败:%v", getLastErr)
  395. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  396. return
  397. }
  398. assessmentAfterDislysis, getAADErr := service.MobileGetAssessmentAfterDislysis(adminInfo.Org.Id, patientID, date.Unix())
  399. if getAADErr != nil {
  400. this.ErrorLog("获取透后评估失败:%v", getAADErr)
  401. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  402. return
  403. }
  404. lastAssessmentAfterDislysis, getLAADErr := service.MobileGetLastTimeAssessmentAfterDislysis(adminInfo.Org.Id, patientID, date.Unix())
  405. if getLAADErr != nil {
  406. this.ErrorLog("获取上一次透后评估失败:%v", getLAADErr)
  407. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  408. return
  409. }
  410. treatmentSummary, getTreatmentSummaryErr := service.MobileGetTreatmentSummary(adminInfo.Org.Id, patientID, date.Unix())
  411. if getTreatmentSummaryErr != nil {
  412. this.ErrorLog("获取治疗小结失败:%v", getTreatmentSummaryErr)
  413. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  414. return
  415. }
  416. dialysisPrescribe, _ := service.MobileGetDialysisPrescribeByModeId(adminInfo.Org.Id, patientID, date.Unix(), schedual.ModeId)
  417. dialysisSolution, _ := service.MobileGetDialysisSolutionByModeId(adminInfo.Org.Id, patientID, schedual.ModeId)
  418. lastDialysisPrescribe, _ := service.MobileGetLastDialysisPrescribeByModeId(adminInfo.Org.Id, patientID, schedual.ModeId)
  419. //获取系统透析处方模版
  420. systemDialysisPrescribe, _ := service.MobileGetSystemDialysisPrescribeByModeId(adminInfo.Org.Id, schedual.ModeId)
  421. _, is_open_config := service.FindXTHisRecordByOrgId(adminInfo.Org.Id)
  422. _, is_project_open_config := service.FindXTHisProjectByOrgId(adminInfo.Org.Id)
  423. projects, _ := service.GetHisPrescriptionProjects(adminInfo.Org.Id, patientID, date.Unix())
  424. stockType, _ := service.GetStockType(adminInfo.Org.Id)
  425. prepare, _ := service.GetDialyStockOut(adminInfo.Org.Id, date.Unix(), patientID)
  426. //获取最后一次血管通路
  427. lastAssessment, parseDateErr := service.GetLastPassWayAssessment(adminInfo.Org.Id, patientID)
  428. prescribeOne, parseDateErr := service.MobileGetDialysisPrescribeByModeIdOne(adminInfo.Org.Id, patientID, date.Unix())
  429. var his_advices []*models.HisDoctorAdviceInfo
  430. if is_open_config.IsOpen == 1 {
  431. his_advices, _ = service.GetAllHisDoctorAdvice(adminInfo.Org.Id, patientID, date.Unix())
  432. }
  433. if getLPEErr != nil {
  434. this.ErrorLog("获取上一次透前评估失败:%v", getLPEErr)
  435. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  436. return
  437. }
  438. lastDryWeightDislysis, getDryErr := service.MobileGetLastDryWeight(adminInfo.Org.Id, patientID)
  439. if getDryErr != nil {
  440. this.ErrorLog("获取最后一条干体重失败:%v", getDryErr)
  441. this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
  442. return
  443. }
  444. _, gobalConfig := service.FindAutomaticReduceRecordByOrgId(adminInfo.Org.Id)
  445. operators, _ := service.GetAllStarfEs(adminInfo.Org.Id)
  446. returnData := map[string]interface{}{
  447. "patient": patient,
  448. "schedual": schedual,
  449. "prescription": dialysisPrescribe,
  450. "solution": dialysisSolution,
  451. "last_prescription": lastDialysisPrescribe,
  452. "receiver_treatment_access": receiverTreatmentAccess,
  453. "predialysis_evaluation": predialysisEvaluation,
  454. "doctor_advices": doctorAdvices,
  455. "double_check": doubleCheck,
  456. "assessment_after_dislysis": assessmentAfterDislysis,
  457. "treatment_summary": treatmentSummary,
  458. "monitor_records": monitorRecords,
  459. "dialysis_order": dialysisOrder,
  460. "operators": operators,
  461. "last_predialysis_evaluation": lastPredialysisEvaluation,
  462. "last_assessment_after_dislysis": lastAssessmentAfterDislysis,
  463. "last_monitor_record": lastMonitorRecord,
  464. "config": gobalConfig,
  465. "dry_weight": lastDryWeightDislysis,
  466. "system_prescription": systemDialysisPrescribe,
  467. "his_advices": his_advices,
  468. "is_open_config": is_open_config,
  469. "stockType": stockType,
  470. "prepare": prepare,
  471. "lastAssessment": lastAssessment,
  472. "prescribeOne": prescribeOne,
  473. "is_project_open_config": is_project_open_config,
  474. "project": projects,
  475. }
  476. this.ServeSuccessJSON(returnData)
  477. }
  478. func (this *XcxApiController) GetPatientInfo() {
  479. patient_id, _ := this.GetInt64("patient_id")
  480. patient, _ := service.GetXcxPatientInfo(patient_id)
  481. this.ServeSuccessJSON(map[string]interface{}{
  482. "patient": patient,
  483. })
  484. }
  485. func (this *XcxApiController) GetOrgInfo() {
  486. patient_id, _ := this.GetInt64("patient_id")
  487. info, _ := service.GetXcxPatientInfo(patient_id)
  488. orgInfo, _ := service.GetOrgInfo(info.UserOrgId)
  489. this.ServeSuccessJSON(map[string]interface{}{
  490. "orgInfo": orgInfo,
  491. })
  492. }
  493. func (this *XcxApiController) GetEducationList() {
  494. start_time := this.GetString("start_time")
  495. end_time := this.GetString("end_time")
  496. patient_id, _ := this.GetInt64("patient_id")
  497. timeLayout := "2006-01-02"
  498. loc, _ := time.LoadLocation("Local")
  499. startTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", start_time+" 00:00:00", loc)
  500. endTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", end_time+" 00:00:00", loc)
  501. list, _ := service.GetEducationList(startTime.Unix(), endTime.Unix(), patient_id)
  502. this.ServeSuccessJSON(map[string]interface{}{
  503. "list": list,
  504. })
  505. }
  506. func (this *XcxApiController) GetDoctorAdvice() {
  507. //判断是否开启医嘱同步功能
  508. start_time := this.GetString("start_time")
  509. end_time := this.GetString("end_time")
  510. patient_id, _ := this.GetInt64("patient_id")
  511. fmt.Println("patient_id", patient_id)
  512. timeLayout := "2006-01-02"
  513. loc, _ := time.LoadLocation("Local")
  514. startTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", start_time+" 00:00:00", loc)
  515. endTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", end_time+" 00:00:00", loc)
  516. info, _ := service.GetXcxPatientInfo(1)
  517. config, _ := service.GetDoctorAdviceConfig(info.UserOrgId)
  518. fmt.Println(startTime, endTime)
  519. if config.IsOpenRemind == 0 || config.IsOpenRemind == 2 {
  520. advice, _ := service.GetDoctorAdvice(patient_id, startTime.Unix(), endTime.Unix())
  521. this.ServeSuccessJSON(map[string]interface{}{
  522. "list": advice,
  523. })
  524. }
  525. if config.IsOpenRemind == 1 {
  526. advice, _ := service.GetHisDoctorAdvice(patient_id, startTime.Unix(), endTime.Unix())
  527. this.ServeSuccessJSON(map[string]interface{}{
  528. "list": advice,
  529. })
  530. }
  531. }