1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144 |
- package controllers
-
- import (
- "XT_New/enums"
- "XT_New/models"
- "XT_New/service"
- "XT_New/utils"
- "fmt"
- "strconv"
- "strings"
- "time"
-
- "github.com/astaxie/beego"
- )
-
- func PatientDataConfigAPIControllerRegistRouters() {
- beego.Router("/api/patient/courses", &PatientDataConfigAPIController{}, "get:Courses")
- beego.Router("/api/patient/course/create", &PatientDataConfigAPIController{}, "get:CreateCourse")
- beego.Router("/api/patient/course/delete", &PatientDataConfigAPIController{}, "post:DeleteCourse")
- beego.Router("/api/patient/course/modify", &PatientDataConfigAPIController{}, "get:ModifyCourse")
-
- beego.Router("/api/patient/rescues", &PatientDataConfigAPIController{}, "get:Rescues")
- beego.Router("/api/patient/rescue/create", &PatientDataConfigAPIController{}, "post:CreateRescue")
- beego.Router("/api/patient/rescue/delete", &PatientDataConfigAPIController{}, "post:DeleteRescue")
-
- beego.Router("/api/patient/sickhistory", &PatientDataConfigAPIController{}, "get:GetSickHistorys")
- beego.Router("/api/patient/sickhistory/create", &PatientDataConfigAPIController{}, "get:CreateSickHistory")
- beego.Router("/api/patient/sickhistory/delete", &PatientDataConfigAPIController{}, "post:DeleteSickHistory")
- beego.Router("/api/patient/sickhistory/modify", &PatientDataConfigAPIController{}, "get:ModifySickHistory")
-
- beego.Router("/api/patient/physiquecheck", &PatientDataConfigAPIController{}, "get:GetPhysiqueChecks")
- beego.Router("/api/patient/physiquecheck/create", &PatientDataConfigAPIController{}, "get:CreatePhysiqueCheck")
- beego.Router("/api/patient/physiquecheck/delete", &PatientDataConfigAPIController{}, "post:DeletePhysiqueCheck")
- beego.Router("/api/patient/physiquecheck/modify", &PatientDataConfigAPIController{}, "get:ModifyPhysiqueCheck")
-
- beego.Router("/api/patient/sickhistory/print", &PatientDataConfigAPIController{}, "get:GetSickhistoryPrints")
- beego.Router("/api/patient/physiquecheck/print", &PatientDataConfigAPIController{}, "get:GetPhysiquecheckPrints")
-
- beego.Router("/api/patient/getpatientdialysisinforlist", &PatientDataConfigAPIController{}, "get:GetPatientDialysisInforList")
-
- beego.Router("/api/patient/getcontextschedulelist", &PatientDataConfigAPIController{}, "Get:GetContextScheduleList")
-
- }
-
- type PatientDataConfigAPIController struct {
- BaseAuthAPIController
- }
-
- func (this *PatientDataConfigAPIController) GetPhysiquecheckPrints() {
-
- patientID, _ := this.GetInt64("patient_id")
- idsStr := this.GetString("ids")
- if patientID <= 0 || len(idsStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- recordIDStrs := strings.Split(idsStr, ",")
- patient, _ := service.GetPatientByID(this.GetAdminUserInfo().CurrentOrgId, patientID)
- sickHostory, _ := service.GetPatienttPhysiqueByIds(this.GetAdminUserInfo().CurrentOrgId, patientID, recordIDStrs)
- this.ServeSuccessJSON(map[string]interface{}{
- "patient": patient,
- "sickhistorys": sickHostory,
- })
-
- }
- func (this *PatientDataConfigAPIController) GetSickhistoryPrints() {
- patientID, _ := this.GetInt64("patient_id")
- idsStr := this.GetString("ids")
- if patientID <= 0 || len(idsStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- recordIDStrs := strings.Split(idsStr, ",")
- patient, _ := service.GetPatientByID(this.GetAdminUserInfo().CurrentOrgId, patientID)
- sickHostory, _ := service.GetPatientSickHistoryByIds(this.GetAdminUserInfo().CurrentOrgId, patientID, recordIDStrs)
- for _, item := range sickHostory {
- pc, _ := service.GetLastPatientPhysiqueCheck(this.GetAdminUserInfo().CurrentOrgId, item.PatientId, item.RecordDate)
- item.XtPatientPhysiqueCheck = pc
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "patient": patient,
- "sickhistorys": sickHostory,
- })
- }
-
- func (this *PatientDataConfigAPIController) GetSickHistorys() {
- patientID, _ := this.GetInt64("patient_id")
- startTimeYMDStr := this.GetString("start_time")
- endTimeYMDStr := this.GetString("end_time")
- if patientID <= 0 || len(startTimeYMDStr) == 0 || len(endTimeYMDStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- endTimeYMDHmsStr := endTimeYMDStr + " 23:59:59"
- startTime, parseStartTimeErr := utils.ParseTimeStringToTime("2006-01-02", startTimeYMDStr)
- endTime, parseEndTimeErr := utils.ParseTimeStringToTime("2006-01-02 15:04:05", endTimeYMDHmsStr)
- if parseStartTimeErr != nil || parseEndTimeErr != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamFormatWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- records, getRecordsErr := service.GetPatientSickHistory(adminUserInfo.CurrentOrgId, patientID, startTime.Unix(), endTime.Unix())
- if getRecordsErr != nil {
- this.ErrorLog("获取患者病程记录失败:%v", getRecordsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- admins, getAllAdminsErr := service.GetAllAdminUsers(adminUserInfo.CurrentOrgId, adminUserInfo.CurrentAppId)
- if getAllAdminsErr != nil {
- this.ErrorLog("获取所有管理员失败:%v", getAllAdminsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "records": records,
- "doctors": admins,
- })
- }
- func (this *PatientDataConfigAPIController) CreateSickHistory() {
- patientID, _ := this.GetInt64("patient_id")
- content := this.GetString("content")
- record_time_str := this.GetString("record_time")
- title := this.GetString("title")
- is_shenyizhishi, _ := this.GetInt64("is_shenyizhishi")
- is_fumotouxishi, _ := this.GetInt64("is_fumotouxishi")
- is_guominyaowu, _ := this.GetInt64("is_guominyaowu")
- guominyaowu_desc := this.GetString("guominyaowu_desc")
- doctor_id, _ := this.GetInt64("doctor_id")
-
- if patientID <= 0 || len(content) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- if len(record_time_str) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- record_date := strings.Split(record_time_str, " ")
-
- checkDate, _ := utils.ParseTimeStringToTime("2006-01-02 15:04:05", record_time_str)
- checkDate_two, _ := utils.ParseTimeStringToTime("2006-01-02", record_date[0])
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- now := time.Now().Unix()
- record := models.XtPatientSickHistory{
- OrgId: adminUserInfo.CurrentOrgId,
- PatientId: patientID,
- Recorder: adminUserInfo.AdminUser.Id,
- RecordTime: checkDate.Unix(),
- Content: content,
- Status: 1,
- Title: title,
- IsShenyizhiHistory: is_shenyizhishi,
- IsFumoDialysisHistory: is_fumotouxishi,
- HypersusceptibilityDesc: guominyaowu_desc,
- IsHypersusceptibility: is_guominyaowu,
- Ctime: now,
- Mtime: now,
- DoctorId: doctor_id,
- RecordDate: checkDate_two.Unix(),
- }
-
- createErr := service.CreatePatientSickHistory(&record)
- if createErr != nil {
- this.ErrorLog("创建患者病史记录失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "record": record,
- })
- }
- func (this *PatientDataConfigAPIController) DeleteSickHistory() {
- patientID, _ := this.GetInt64("patient_id")
- idsStr := this.GetString("ids")
- if patientID <= 0 || len(idsStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- recordIDStrs := strings.Split(idsStr, ",")
- recordIDs := make([]int64, 0, len(recordIDStrs))
- for _, idStr := range recordIDStrs {
- id, parseErr := strconv.Atoi(idStr)
- if parseErr != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- recordIDs = append(recordIDs, int64(id))
- }
-
- deleteErr := service.DeletePatientSickHistoryInBatch(adminUserInfo.CurrentOrgId, patientID, recordIDs)
- if deleteErr != nil {
- this.ErrorLog("删除患者病程记录失败:%v", deleteErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(nil)
- }
- func (this *PatientDataConfigAPIController) ModifySickHistory() {
- patientID, _ := this.GetInt64("patient_id")
- content := this.GetString("content")
- id, _ := this.GetInt64("id", 0)
- record_time_str := this.GetString("record_time")
- title := this.GetString("title")
-
- is_shenyizhishi, _ := this.GetInt64("is_shenyizhishi")
- is_fumotouxishi, _ := this.GetInt64("is_fumotouxishi")
- is_guominyaowu, _ := this.GetInt64("is_guominyaowu")
- guominyaowu_desc := this.GetString("guominyaowu_desc")
- doctor_id, _ := this.GetInt64("doctor_id")
-
- if patientID <= 0 || len(content) == 0 || id == 0 || len(record_time_str) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- //timeLayout := "2006-01-02"
- //loc, _ := time.LoadLocation("Local")
- checkDate, _ := utils.ParseTimeStringToTime("2006-01-02 15:04:05", record_time_str)
-
- fmt.Println("checkDate--------------", checkDate)
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- now := time.Now().Unix()
-
- record := models.XtPatientSickHistory{
- ID: id,
- OrgId: adminUserInfo.CurrentOrgId,
- PatientId: patientID,
- Recorder: adminUserInfo.AdminUser.Id,
- Content: content,
- Status: 1,
- Ctime: now,
- Mtime: now,
- Title: title,
- RecordTime: checkDate.Unix(),
- IsShenyizhiHistory: is_shenyizhishi,
- IsFumoDialysisHistory: is_fumotouxishi,
- HypersusceptibilityDesc: guominyaowu_desc,
- IsHypersusceptibility: is_guominyaowu,
- DoctorId: doctor_id,
- }
- createErr := service.ModifyPatientSickHistory(&record)
- if createErr != nil {
- this.ErrorLog("创建患者抢救记录失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "record": record,
- })
- }
-
- func (this *PatientDataConfigAPIController) GetPhysiqueChecks() {
- patientID, _ := this.GetInt64("patient_id")
- startTimeYMDStr := this.GetString("start_time")
- endTimeYMDStr := this.GetString("end_time")
- if patientID <= 0 || len(startTimeYMDStr) == 0 || len(endTimeYMDStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- endTimeYMDHmsStr := endTimeYMDStr + " 23:59:59"
- startTime, parseStartTimeErr := utils.ParseTimeStringToTime("2006-01-02", startTimeYMDStr)
- endTime, parseEndTimeErr := utils.ParseTimeStringToTime("2006-01-02 15:04:05", endTimeYMDHmsStr)
- if parseStartTimeErr != nil || parseEndTimeErr != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamFormatWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- records, getRecordsErr := service.GetPatientPhysiqueCheck(adminUserInfo.CurrentOrgId, patientID, startTime.Unix(), endTime.Unix())
- if getRecordsErr != nil {
- this.ErrorLog("获取患者病程记录失败:%v", getRecordsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- admins, getAllAdminsErr := service.GetAllAdminUsers(adminUserInfo.CurrentOrgId, adminUserInfo.CurrentAppId)
- if getAllAdminsErr != nil {
- this.ErrorLog("获取所有管理员失败:%v", getAllAdminsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "records": records,
- "doctors": admins,
- })
- }
- func (this *PatientDataConfigAPIController) CreatePhysiqueCheck() {
- patientID, _ := this.GetInt64("patient_id")
- doctor_id, _ := this.GetInt64("doctor_id")
- record_time_str := this.GetString("record_time")
- t := this.GetString("t")
- p := this.GetString("p")
- r := this.GetString("r")
- bp_left := this.GetString("bp_left")
- bp_right := this.GetString("bp_right")
- pinxuerongmao, _ := this.GetInt64("pinxuerongmao")
- tiwei, _ := this.GetInt64("tiwei")
- fuzhong, _ := this.GetInt64("fuzhong")
- chuxuedian, _ := this.GetInt64("chuxuedian")
-
- fayu, _ := this.GetInt64("fayu")
- yinyang, _ := this.GetInt64("yinyang")
- shenzhi, _ := this.GetInt64("shenzhi")
- pifunianmo, _ := this.GetInt64("pifunianmo")
- buwei := this.GetString("buwei")
- chengdu := this.GetString("chengdu")
- pixiachuxue, _ := this.GetInt64("pixiachuxue")
- zidian, _ := this.GetInt64("zidian")
- pifuwendu, _ := this.GetInt64("pifuwendu")
- qita := this.GetString("qita")
-
- linbazhongda, _ := this.GetInt64("linbazhongda")
- linbabuwei := this.GetString("linbabuwei")
-
- yanlian, _ := this.GetInt64("yanlian")
- tongkong, _ := this.GetInt64("tongkong")
- zuo := this.GetString("zuo")
- you := this.GetString("you")
-
- duiguangfanshe := this.GetString("duiguangfanshe")
- biantaoti := this.GetString("biantaoti")
- yanbu := this.GetString("yanbu")
- toubuqita := this.GetString("toubuqita")
- huxiyin := this.GetString("huxiyin")
-
- xiongmomocayin, _ := this.GetInt64("xiongmomocayin")
- feizhangbuwei, _ := this.GetInt64("feizhangbuwei")
- luoyin, _ := this.GetInt64("luoyin")
- desc := this.GetString("desc")
-
- xinzangdaxiao, _ := this.GetInt64("xinzangdaxiao")
- xinlv, _ := this.GetInt64("xinlv")
- xinbaomocasheng, _ := this.GetInt64("xinbaomocasheng")
- zayin, _ := this.GetInt64("zayin")
- fujiayin, _ := this.GetInt64("fujiayin")
- xinzangdesc := this.GetString("xinzangdesc")
-
- fushuizheng, _ := this.GetInt64("fushuizheng")
- ganjingjingmai := this.GetString("ganjingjingmai")
-
- gangzhang_yatong, _ := this.GetInt64("gangzhang_yatong")
- gangzhang_koutong, _ := this.GetInt64("gangzhang_koutong")
- pizhang_yatong, _ := this.GetInt64("pizhang_yatong")
- pizhang_koutong, _ := this.GetInt64("pizhang_koutong")
-
- shenzhang_yatong, _ := this.GetInt64("shenzhang_yatong")
- shenzhang_koutong, _ := this.GetInt64("shenzhang_koutong")
- fubu_desc := this.GetString("fubu_desc")
- oth_desc := this.GetString("oth_desc")
-
- if patientID <= 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- if len(record_time_str) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- record_date := strings.Split(record_time_str, " ")
- checkDate, _ := utils.ParseTimeStringToTime("2006-01-02 15:04:05", record_time_str)
- checkDate_two, _ := utils.ParseTimeStringToTime("2006-01-02", record_date[0])
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- now := time.Now().Unix()
- record := models.XtPatientPhysiqueCheck{
- DoctorId: doctor_id,
- OrgId: adminUserInfo.CurrentOrgId,
- PatientId: patientID,
- Recorder: adminUserInfo.AdminUser.Id,
- RecordTime: checkDate.Unix(),
- Status: 1,
- Ctime: now,
- Mtime: now,
- T: t,
- P: p,
- R: r,
- BpRight: bp_right,
- BpLeft: bp_left,
- Pinxuerongmao: pinxuerongmao,
- Tiwei: tiwei,
- Fuzhong: fuzhong,
- Chuxuedian: chuxuedian,
- Fayu: fayu,
- Yinyang: yinyang,
- Shenzhi: shenzhi,
- Pifunianmo: pifunianmo,
- Buwei: buwei,
- Chengdu: chengdu,
- Pixiachuxue: pixiachuxue,
- Zidian: zidian,
- Pifuwendu: pifuwendu,
- Qita: qita,
- Linbazhongda: linbazhongda,
- Linbabuwei: linbabuwei,
- Yanlian: yanlian,
- Tongkong: tongkong,
- Zuo: zuo,
- You: you,
- Duiguangfanshe: duiguangfanshe,
- Biantaoti: biantaoti,
- Yanbu: yanbu,
- Toubuqita: toubuqita,
- Huxiyin: huxiyin,
- Xiongmomocayin: xiongmomocayin,
- Feizhangbuwei: feizhangbuwei,
- Luoyin: luoyin,
- Desc: desc,
- Xinzangdaxiao: xinzangdaxiao,
- Xinlv: xinlv,
- Xinbaomocasheng: xinbaomocasheng,
- Zayin: zayin,
- Fujiayin: fujiayin,
- Xinzangdesc: xinzangdesc,
- Fushuizheng: fushuizheng,
- Ganjingjingmai: ganjingjingmai,
- GangzhangYatong: gangzhang_yatong,
- GangzhangKoutong: gangzhang_koutong,
- PizhangKoutong: pizhang_koutong,
- PizhangYatong: pizhang_yatong,
- ShenzhangKoutong: shenzhang_koutong,
- ShenzhangYatong: shenzhang_yatong,
- FubuDesc: fubu_desc,
- OthDesc: oth_desc,
- RecordDate: checkDate_two.Unix(),
- }
- createErr := service.CreatePatientPhysiqueCheck(&record)
- if createErr != nil {
- this.ErrorLog("创建患者病史记录失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "record": record,
- })
- }
- func (this *PatientDataConfigAPIController) DeletePhysiqueCheck() {
- patientID, _ := this.GetInt64("patient_id")
- idsStr := this.GetString("ids")
- if patientID <= 0 || len(idsStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- recordIDStrs := strings.Split(idsStr, ",")
- recordIDs := make([]int64, 0, len(recordIDStrs))
- for _, idStr := range recordIDStrs {
- id, parseErr := strconv.Atoi(idStr)
- if parseErr != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- recordIDs = append(recordIDs, int64(id))
- }
-
- deleteErr := service.DeletePatientPhysiqueCheckInBatch(adminUserInfo.CurrentOrgId, patientID, recordIDs)
- if deleteErr != nil {
- this.ErrorLog("删除患者病程记录失败:%v", deleteErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(nil)
- }
- func (this *PatientDataConfigAPIController) ModifyPhysiqueCheck() {
- patientID, _ := this.GetInt64("patient_id")
- id, _ := this.GetInt64("id", 0)
- doctor_id, _ := this.GetInt64("doctor_id", 0)
-
- record_time_str := this.GetString("record_time")
-
- if patientID <= 0 || id == 0 || len(record_time_str) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- t := this.GetString("t")
- p := this.GetString("p")
- r := this.GetString("r")
- bp_left := this.GetString("bp_left")
- bp_right := this.GetString("bp_right")
- pinxuerongmao, _ := this.GetInt64("pinxuerongmao")
- tiwei, _ := this.GetInt64("tiwei")
- fuzhong, _ := this.GetInt64("fuzhong")
- chuxuedian, _ := this.GetInt64("chuxuedian")
-
- fayu, _ := this.GetInt64("fayu")
- yinyang, _ := this.GetInt64("yinyang")
- shenzhi, _ := this.GetInt64("shenzhi")
- pifunianmo, _ := this.GetInt64("pifunianmo")
- buwei := this.GetString("buwei")
- chengdu := this.GetString("chengdu")
- pixiachuxue, _ := this.GetInt64("pixiachuxue")
- zidian, _ := this.GetInt64("zidian")
- pifuwendu, _ := this.GetInt64("pifuwendu")
- qita := this.GetString("qita")
-
- linbazhongda, _ := this.GetInt64("linbazhongda")
- linbabuwei := this.GetString("linbabuwei")
-
- yanlian, _ := this.GetInt64("yanlian")
- tongkong, _ := this.GetInt64("tongkong")
- zuo := this.GetString("zuo")
- you := this.GetString("you")
-
- duiguangfanshe := this.GetString("duiguangfanshe")
- biantaoti := this.GetString("biantaoti")
- yanbu := this.GetString("yanbu")
- toubuqita := this.GetString("toubuqita")
- huxiyin := this.GetString("huxiyin")
-
- xiongmomocayin, _ := this.GetInt64("xiongmomocayin")
- feizhangbuwei, _ := this.GetInt64("feizhangbuwei")
- luoyin, _ := this.GetInt64("luoyin")
- desc := this.GetString("desc")
-
- xinzangdaxiao, _ := this.GetInt64("xinzangdaxiao")
- xinlv, _ := this.GetInt64("xinlv")
- xinbaomocasheng, _ := this.GetInt64("xinbaomocasheng")
- zayin, _ := this.GetInt64("zayin")
- fujiayin, _ := this.GetInt64("fujiayin")
- xinzangdesc := this.GetString("xinzangdesc")
-
- fushuizheng, _ := this.GetInt64("fushuizheng")
- ganjingjingmai := this.GetString("ganjingjingmai")
-
- gangzhang_yatong, _ := this.GetInt64("gangzhang_yatong")
- gangzhang_koutong, _ := this.GetInt64("gangzhang_koutong")
- pizhang_yatong, _ := this.GetInt64("pizhang_yatong")
- pizhang_koutong, _ := this.GetInt64("pizhang_koutong")
-
- shenzhang_yatong, _ := this.GetInt64("shenzhang_yatong")
- shenzhang_koutong, _ := this.GetInt64("shenzhang_koutong")
- fubu_desc := this.GetString("fubu_desc")
- oth_desc := this.GetString("oth_desc")
-
- checkDate, _ := utils.ParseTimeStringToTime("2006-01-02 15:04:05", record_time_str)
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
- now := time.Now().Unix()
-
- record := models.XtPatientPhysiqueCheck{
- ID: id,
- OrgId: adminUserInfo.CurrentOrgId,
- PatientId: patientID,
- Recorder: adminUserInfo.AdminUser.Id,
- RecordTime: checkDate.Unix(),
- DoctorId: doctor_id,
- Status: 1,
- Ctime: now,
- Mtime: now,
- T: t,
- P: p,
- R: r,
- BpRight: bp_right,
- BpLeft: bp_left,
- Pinxuerongmao: pinxuerongmao,
- Tiwei: tiwei,
- Fuzhong: fuzhong,
- Chuxuedian: chuxuedian,
- Fayu: fayu,
- Yinyang: yinyang,
- Shenzhi: shenzhi,
- Pifunianmo: pifunianmo,
- Buwei: buwei,
- Chengdu: chengdu,
- Pixiachuxue: pixiachuxue,
- Zidian: zidian,
- Pifuwendu: pifuwendu,
- Qita: qita,
- Linbazhongda: linbazhongda,
- Linbabuwei: linbabuwei,
- Yanlian: yanlian,
- Tongkong: tongkong,
- Zuo: zuo,
- You: you,
- Duiguangfanshe: duiguangfanshe,
- Biantaoti: biantaoti,
- Yanbu: yanbu,
- Toubuqita: toubuqita,
- Huxiyin: huxiyin,
- Xiongmomocayin: xiongmomocayin,
- Feizhangbuwei: feizhangbuwei,
- Luoyin: luoyin,
- Desc: desc,
- Xinzangdaxiao: xinzangdaxiao,
- Xinlv: xinlv,
- Xinbaomocasheng: xinbaomocasheng,
- Zayin: zayin,
- Fujiayin: fujiayin,
- Xinzangdesc: xinzangdesc,
- Fushuizheng: fushuizheng,
- Ganjingjingmai: ganjingjingmai,
- GangzhangYatong: gangzhang_yatong,
- GangzhangKoutong: gangzhang_koutong,
- PizhangKoutong: pizhang_koutong,
- PizhangYatong: pizhang_yatong,
- ShenzhangKoutong: shenzhang_koutong,
- ShenzhangYatong: shenzhang_yatong,
- FubuDesc: fubu_desc,
- OthDesc: oth_desc,
- }
- createErr := service.ModifyPatientPhysiqueCheck(&record)
- if createErr != nil {
- this.ErrorLog("修改患者体格检查失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(map[string]interface{}{
- "record": record,
- })
- }
-
- // /api/patient/courses [get]
- // @param patient_id:int
- // @param start_time:string (yyyy-MM-dd)
- // @param end_time:string (yyyy-MM-dd)
- func (this *PatientDataConfigAPIController) Courses() {
- patientID, _ := this.GetInt64("patient_id")
- startTimeYMDStr := this.GetString("start_time")
- endTimeYMDStr := this.GetString("end_time")
- if patientID <= 0 || len(startTimeYMDStr) == 0 || len(endTimeYMDStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- endTimeYMDHmsStr := endTimeYMDStr + " 23:59:59"
- startTime, parseStartTimeErr := utils.ParseTimeStringToTime("2006-01-02", startTimeYMDStr)
- endTime, parseEndTimeErr := utils.ParseTimeStringToTime("2006-01-02 15:04:05", endTimeYMDHmsStr)
- if parseStartTimeErr != nil || parseEndTimeErr != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamFormatWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- records, getRecordsErr := service.GetPatientCourseOfDisease(adminUserInfo.CurrentOrgId, patientID, startTime.Unix(), endTime.Unix())
- if getRecordsErr != nil {
- this.ErrorLog("获取患者病程记录失败:%v", getRecordsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- admins, getAllAdminsErr := service.GetAllAdminUsers(adminUserInfo.CurrentOrgId, adminUserInfo.CurrentAppId)
- if getAllAdminsErr != nil {
- this.ErrorLog("获取所有管理员失败:%v", getAllAdminsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "records": records,
- "doctors": admins,
- })
- }
-
- // /api/patient/course/create [post]
- // @param patient_id:int
- // @param content:string
- func (this *PatientDataConfigAPIController) CreateCourse() {
- patientID, _ := this.GetInt64("patient_id")
- fmt.Println(patientID)
- content := this.GetString("content")
-
- record_time_str := this.GetString("record_time")
- title := this.GetString("title")
-
- if patientID <= 0 || len(content) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- if len(record_time_str) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- checkDate, _ := utils.ParseTimeStringToTime("2006-01-02 15:04:05", record_time_str)
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- now := time.Now().Unix()
- record := models.PatientDiseaseCourse{
- OrgID: adminUserInfo.CurrentOrgId,
- PatientID: patientID,
- Recorder: adminUserInfo.AdminUser.Id,
- RecordTime: checkDate.Unix(),
- Content: content,
- Status: 1,
- CreateTime: now,
- ModifyTime: now,
- Title: title,
- }
-
- createErr := service.CreatePatientCourseOfDisease(&record)
- if createErr != nil {
- this.ErrorLog("创建患者病程记录失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "record": record,
- })
- }
-
- // /api/patient/course/delete
- // @param patient_id:int
- // @param ids:string 一个或多个record_id以逗号相隔 ("1,3,7")
- func (this *PatientDataConfigAPIController) DeleteCourse() {
- patientID, _ := this.GetInt64("patient_id")
- idsStr := this.GetString("ids")
- if patientID <= 0 || len(idsStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- recordIDStrs := strings.Split(idsStr, ",")
- recordIDs := make([]int64, 0, len(recordIDStrs))
- for _, idStr := range recordIDStrs {
- id, parseErr := strconv.Atoi(idStr)
- if parseErr != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- recordIDs = append(recordIDs, int64(id))
- }
-
- deleteErr := service.DeletePatientCoursesInBatch(adminUserInfo.CurrentOrgId, patientID, recordIDs)
- if deleteErr != nil {
- this.ErrorLog("删除患者病程记录失败:%v", deleteErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(nil)
- }
-
- // /api/patient/rescues [get]
- // @param patient_id:int
- // @param start_time:string (yyyy-MM-dd)
- // @param end_time:string (yyyy-MM-dd)
- func (this *PatientDataConfigAPIController) Rescues() {
- patientID, _ := this.GetInt64("patient_id")
- startTimeYMDStr := this.GetString("start_time")
- endTimeYMDStr := this.GetString("end_time")
- if patientID <= 0 || len(startTimeYMDStr) == 0 || len(endTimeYMDStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- endTimeYMDHmsStr := endTimeYMDStr + " 23:59:59"
- startTime, parseStartTimeErr := utils.ParseTimeStringToTime("2006-01-02", startTimeYMDStr)
- endTime, parseEndTimeErr := utils.ParseTimeStringToTime("2006-01-02 15:04:05", endTimeYMDHmsStr)
- if parseStartTimeErr != nil || parseEndTimeErr != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamFormatWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- records, getRecordsErr := service.GetPatientRescueRecords(adminUserInfo.CurrentOrgId, patientID, startTime.Unix(), endTime.Unix())
- if getRecordsErr != nil {
- this.ErrorLog("获取患者抢救记录失败:%v", getRecordsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- admins, getAllAdminsErr := service.GetAllAdminUsers(adminUserInfo.CurrentOrgId, adminUserInfo.CurrentAppId)
- if getAllAdminsErr != nil {
- this.ErrorLog("获取所有管理员失败:%v", getAllAdminsErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "records": records,
- "doctors": admins,
- })
- }
-
- // /api/patient/rescue/create [post]
- // @param patient_id:int
- // @param content:string
- func (this *PatientDataConfigAPIController) CreateRescue() {
- patientID, _ := this.GetInt64("patient_id")
- content := this.GetString("content")
- if patientID <= 0 || len(content) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- now := time.Now().Unix()
- record := models.PatientRescueRecord{
- OrgID: adminUserInfo.CurrentOrgId,
- PatientID: patientID,
- Recorder: adminUserInfo.AdminUser.Id,
- RecordTime: now,
- Content: content,
- Status: 1,
- CreateTime: now,
- ModifyTime: now,
- }
-
- createErr := service.CreatePatientRescueRecord(&record)
- if createErr != nil {
- this.ErrorLog("创建患者抢救记录失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "record": record,
- })
- }
-
- // /api/patient/rescue/delete
- // @param patient_id:int
- // @param ids:string 一个或多个record_id以逗号相隔 ("1,3,7")
- func (this *PatientDataConfigAPIController) DeleteRescue() {
- patientID, _ := this.GetInt64("patient_id")
- idsStr := this.GetString("ids")
- if patientID <= 0 || len(idsStr) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- recordIDStrs := strings.Split(idsStr, ",")
- recordIDs := make([]int64, 0, len(recordIDStrs))
- for _, idStr := range recordIDStrs {
- id, parseErr := strconv.Atoi(idStr)
- if parseErr != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- recordIDs = append(recordIDs, int64(id))
- }
-
- deleteErr := service.DeletePatientResuceRecordsInBatch(adminUserInfo.CurrentOrgId, patientID, recordIDs)
- if deleteErr != nil {
- this.ErrorLog("删除患者抢救记录失败:%v", deleteErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- this.ServeSuccessJSON(nil)
- }
-
- func (this *PatientDataConfigAPIController) ModifyCourse() {
- patientID, _ := this.GetInt64("patient_id")
- content := this.GetString("content")
- id, _ := this.GetInt64("id", 0)
- record_time_str := this.GetString("record_time")
- title := this.GetString("title")
-
- if patientID <= 0 || len(content) == 0 || id == 0 || len(record_time_str) == 0 {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- //timeLayout := "2006-01-02"
- //loc, _ := time.LoadLocation("Local")
- checkDate, _ := utils.ParseTimeStringToTime("2006-01-02 15:04:05", record_time_str)
-
- adminUserInfo := this.GetAdminUserInfo()
- patient, getPatientErr := service.GetPatientByID(adminUserInfo.CurrentOrgId, patientID)
- if getPatientErr != nil {
- this.ErrorLog("获取患者信息失败:%v", getPatientErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- } else if patient == nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodePatientNoExist)
- return
- }
-
- now := time.Now().Unix()
-
- record := models.PatientDiseaseCourse{
- ID: id,
- OrgID: adminUserInfo.CurrentOrgId,
- PatientID: patientID,
- Recorder: adminUserInfo.AdminUser.Id,
- Content: content,
- Status: 1,
- CreateTime: now,
- ModifyTime: now,
- Title: title,
- RecordTime: checkDate.Unix(),
- }
-
- createErr := service.ModifyPatientCourses(&record)
- if createErr != nil {
- this.ErrorLog("创建患者抢救记录失败:%v", createErr)
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- this.ServeSuccessJSON(map[string]interface{}{
- "record": record,
- })
- }
-
- func (this *PatientDataConfigAPIController) GetPatientDialysisInforList() {
-
- patientID, _ := this.GetInt64("patient_id")
- record_date := this.GetString("record_date")
-
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- var startTime int64
- if len(record_date) > 0 {
- theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", record_date+" 00:00:00", loc)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- startTime = theTime.Unix()
- }
-
- //获取患者姓名
- patient, _ := service.GetPatientName(patientID)
-
- orgId := this.GetAdminUserInfo().CurrentOrgId
- //获取透析处方
- prescription, _ := service.GetDialysisPrescription(patientID, orgId, startTime)
-
- //获取透前评估
- assessmentBefor, _ := service.GetAssessmentBefor(orgId, patientID, startTime)
-
- //透析上机
- order, _ := service.GetDialysisOrder(orgId, patientID, startTime)
-
- //透析监测
- monitor, _ := service.GetFistMonitorSix(orgId, patientID, startTime)
-
- //透析医嘱
- advice, _ := service.GetBloodDoctorAdvice(startTime, orgId, patientID)
-
- //透后评估
- afterDislysis, _ := service.GetAssessmentAfterDissData(patientID, orgId, startTime)
-
- this.ServeSuccessJSON(map[string]interface{}{
- "patient": patient,
- "prescription": prescription,
- "assessmentBefor": assessmentBefor,
- "order": order,
- "monitor": monitor,
- "advice": advice,
- "afterDislysis": afterDislysis,
- })
- }
-
- func (this *PatientDataConfigAPIController) GetContextScheduleList() {
-
- limit, _ := this.GetInt64("limit")
-
- page, _ := this.GetInt64("page")
-
- start_time := this.GetString("start_time")
-
- end_time := this.GetString("end_time")
-
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- var startTime int64
- if len(start_time) > 0 {
- theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", start_time+" 00:00:00", loc)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- startTime = theTime.Unix()
- }
-
- var endTime int64
- if len(end_time) > 0 {
- theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", end_time+" 00:00:00", loc)
- if err != nil {
- this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- startTime = theTime.Unix()
- }
-
- org_id := this.GetAdminUserInfo().CurrentOrgId
-
- schedule, total, _ := service.GetContextScheduleListGroupPatientId(limit, page, startTime, endTime, org_id)
-
- list, _, _ := service.GetContextScheduleListPatientId(startTime, endTime, org_id)
-
- patients, _ := service.GetAllpatientThirty(org_id)
-
- devicenumber, _ := service.GetAllBedNumber(org_id)
- this.ServeSuccessJSON(map[string]interface{}{
- "schedule": schedule,
- "total": total,
- "list": list,
- "patients": patients,
- "devicenumber": devicenumber,
- })
- }
|