mobile_dialysis_service.go 61KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255
  1. package service
  2. import (
  3. "XT_New/models"
  4. "fmt"
  5. "github.com/jinzhu/gorm"
  6. "time"
  7. )
  8. // func GetSchedualPatients(orgID int64) ([]*MDialysisScheduleVM, error) {
  9. // var vms []*MDialysisScheduleVM
  10. // err := readDb.
  11. // Table("xt_schedule as sch").
  12. // Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  13. // Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  14. // Preload("DeviceZone", "status = 1 AND org_id = ?", orgID).
  15. // Preload("TreatmentMode", "status = 1").
  16. // Preload("DialysisOrder", "status = 1 AND user_org_id = ?", orgID).
  17. // Preload("DialysisOrder.MonitoringRecords", "status = 1 AND user_org_id = ?", orgID).
  18. // Where("sch.status = 1 AND sch.user_org_id = ? AND schedule_date = 1536768000", orgID).
  19. // Find(&vms).
  20. // Error
  21. // return vms, err
  22. // }
  23. func MobileGetDialysisScheduals(orgID int64, scheduleDate int64, scheduleType int64) ([]*MDialysisScheduleVM, error) {
  24. var vms []*MDialysisScheduleVM
  25. db := readDb.
  26. Table("xt_schedule as sch").
  27. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  28. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  29. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  30. Preload("Advices", "status = 1 AND user_org_id = ? AND advice_type = 2", orgID).
  31. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  32. Preload("AssessmentBeforeDislysis", "status = 1 AND user_org_id = ? AND assessment_date = ? ", orgID, scheduleDate).
  33. Preload("DialysisOrder", "status = 1 AND user_org_id = ?", orgID).
  34. Preload("DialysisOrder.DeviceNumber", "status = 1 AND org_id = ?", orgID).
  35. Preload("TreatmentSummary", "status = 1 AND user_org_id = ?", orgID).
  36. // Preload("DialysisOrder.MonitoringRecords", func(rdb *gorm.DB) *gorm.DB {
  37. // return rdb.Where("status = 1 AND user_org_id = ?", orgID).Order("operate_time DESC")
  38. // }).
  39. Where("sch.status = 1 AND sch.user_org_id = ?", orgID)
  40. if scheduleDate != 0 {
  41. db = db.Where("schedule_date = ?", scheduleDate)
  42. }
  43. if scheduleType != 0 {
  44. db = db.Where("schedule_type = ?", scheduleType)
  45. }
  46. err := db.Find(&vms).Error
  47. return vms, err
  48. }
  49. func MobileGetWaitingScheduals(orgID int64, scheduleDate int64) ([]*MDialysisScheduleVM, error) {
  50. var vms []*MDialysisScheduleVM
  51. db := readDb.
  52. Table("xt_schedule as sch").
  53. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  54. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  55. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  56. // Preload("DeviceZone", "status = 1 AND org_id = ?", orgID).
  57. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  58. Preload("AssessmentBeforeDislysis", "status = 1 AND user_org_id = ? AND assessment_date = ? ", orgID, scheduleDate).
  59. Preload("DialysisOrder", "status = 1 AND user_org_id = ?", orgID).
  60. Preload("Advices", "status = 1 AND user_org_id = ? AND advice_type = 2 ", orgID).
  61. Preload("TreatmentMode", "status = 1").
  62. Preload("TreatmentSummary", "status = 1 AND user_org_id = ?", orgID).
  63. Where("sch.status = 1 AND sch.user_org_id = ?", orgID)
  64. if scheduleDate != 0 {
  65. db = db.Where("schedule_date = ?", scheduleDate)
  66. }
  67. err := db.Find(&vms).Error
  68. return vms, err
  69. }
  70. type MDialysisScheduleVM struct {
  71. ID int64 `gorm:"column:id" json:"id"`
  72. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  73. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  74. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  75. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  76. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  77. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  78. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  79. Status int64 `gorm:"column:status" json:"status"`
  80. SchedualPatient *MSchedualPatientVMList `gorm:"ForeignKey:PatientId" json:"patient"`
  81. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  82. DialysisOrder *MDialysisOrderVMList `gorm:"ForeignKey:DialysisDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"dialysis_order"`
  83. Prescription *models.DialysisPrescriptionList `gorm:"ForeignKey:RecordDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"prescription"`
  84. AssessmentBeforeDislysis *models.PredialysisEvaluationList `gorm:"ForeignKey:AssessmentDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"assessment_before_dislysis"`
  85. Advices []*VMDoctorAdvice `gorm:"ForeignKey:AdviceDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"doctor_advice"`
  86. TreatmentSummary *models.TreatmentSummary `gorm:"ForeignKey:AssessmentDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"treatment_summary"`
  87. }
  88. func (MDialysisScheduleVM) TableName() string {
  89. return "xt_schedule"
  90. }
  91. type MDeviceNumberVM struct {
  92. models.DeviceNumber
  93. Zone *models.DeviceZone `gorm:"ForeignKey:ZoneID" json:"zone"`
  94. }
  95. func (MDeviceNumberVM) TableName() string {
  96. return "xt_device_number"
  97. }
  98. type MSchedualPatientVMList struct {
  99. ID int64 `gorm:"column:id" json:"id" form:"id"`
  100. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  101. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  102. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  103. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  104. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  105. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  106. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  107. Age int64 `gorm:"column:age" json:"age"`
  108. Name string `gorm:"column:name" json:"name" form:"name"`
  109. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  110. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  111. }
  112. func (MSchedualPatientVMList) TableName() string {
  113. return "xt_patients"
  114. }
  115. type MSchedualPatientVM struct {
  116. ID int64 `gorm:"column:id" json:"id" form:"id"`
  117. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  118. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  119. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  120. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  121. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  122. AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
  123. Source int64 `gorm:"column:source" json:"source" form:"source"`
  124. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  125. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  126. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  127. Name string `gorm:"column:name" json:"name" form:"name"`
  128. Alias string `gorm:"column:alias" json:"alias" form:"alias"`
  129. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  130. Nation string `gorm:"column:nation" json:"nation" form:"nation"`
  131. NativePlace string `gorm:"column:native_place" json:"native_place" form:"native_place"`
  132. MaritalStatus int64 `gorm:"column:marital_status" json:"marital_status" form:"marital_status"`
  133. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  134. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  135. ReimbursementWayId int64 `gorm:"column:reimbursement_way_id" json:"reimbursement_way_id" form:"reimbursement_way_id"`
  136. HealthCareType int64 `gorm:"column:health_care_type" json:"health_care_type" form:"health_care_type"`
  137. HealthCareNo string `gorm:"column:health_care_no" json:"health_care_no" form:"health_care_no"`
  138. HealthCareDueDate int64 `gorm:"column:health_care_due_date" json:"health_care_due_date" form:"health_care_due_date"`
  139. Height int64 `gorm:"column:height" json:"height" form:"height"`
  140. BloodType int64 `gorm:"column:blood_type" json:"blood_type" form:"blood_type"`
  141. Rh int64 `gorm:"column:rh" json:"rh" form:"rh"`
  142. HealthCareDueAlertDate int64 `gorm:"column:health_care_due_alert_date" json:"health_care_due_alert_date" form:"health_care_due_alert_date"`
  143. EducationLevel int64 `gorm:"column:education_level" json:"education_level" form:"education_level"`
  144. Profession int64 `gorm:"column:profession" json:"profession" form:"profession"`
  145. Phone string `gorm:"column:phone" json:"phone" form:"phone"`
  146. HomeTelephone string `gorm:"column:home_telephone" json:"home_telephone" form:"home_telephone"`
  147. RelativePhone string `gorm:"column:relative_phone" json:"relative_phone" form:"relative_phone"`
  148. RelativeRelations string `gorm:"column:relative_relations" json:"relative_relations" form:"relative_relations"`
  149. HomeAddress string `gorm:"column:home_address" json:"home_address" form:"home_address"`
  150. WorkUnit string `gorm:"column:work_unit" json:"work_unit" form:"work_unit"`
  151. UnitAddress string `gorm:"column:unit_address" json:"unit_address" form:"unit_address"`
  152. Children int64 `gorm:"column:children" json:"children" form:"children"`
  153. ReceivingDate int64 `gorm:"column:receiving_date" json:"receiving_date" form:"receiving_date"`
  154. IsHospitalFirstDialysis int64 `gorm:"column:is_hospital_first_dialysis" json:"is_hospital_first_dialysis" form:"is_hospital_first_dialysis"`
  155. FirstDialysisDate int64 `gorm:"column:first_dialysis_date" json:"first_dialysis_date" form:"first_dialysis_date"`
  156. FirstDialysisHospital string `gorm:"column:first_dialysis_hospital" json:"first_dialysis_hospital" form:"first_dialysis_hospital"`
  157. InductionPeriod int64 `gorm:"column:induction_period" json:"induction_period" form:"induction_period"`
  158. InitialDialysis int64 `gorm:"column:initial_dialysis" json:"initial_dialysis" form:"initial_dialysis"`
  159. TotalDialysis int64 `gorm:"column:total_dialysis" json:"total_dialysis" form:"total_dialysis"`
  160. AttendingDoctorId int64 `gorm:"column:attending_doctor_id" json:"attending_doctor_id" form:"attending_doctor_id"`
  161. HeadNurseId int64 `gorm:"column:head_nurse_id" json:"head_nurse_id" form:"head_nurse_id"`
  162. Evaluate string `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
  163. Diagnose string `gorm:"column:diagnose" json:"diagnose" form:"diagnose"`
  164. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  165. RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
  166. Registrars string `gorm:"column:registrars" json:"registrars" form:"registrars"`
  167. QrCode string `gorm:"column:qr_code" json:"qr_code" form:"qr_code"`
  168. BindingState int64 `gorm:"column:binding_state" json:"binding_state" form:"binding_state"`
  169. PatientComplains string `gorm:"column:patient_complains" json:"patient_complains"` // 主诉
  170. PresentHistory string `gorm:"column:present_history" json:"present_history"` // 现病史
  171. PastHistory string `gorm:"column:past_history" json:"past_history"` // 既往史
  172. Temperature float64 `gorm:"column:temperature" json:"temperature"` // 体格检查-体温
  173. Pulse int64 `gorm:"column:pulse" json:"pulse"` // 体格检查-脉搏
  174. Respiratory int64 `gorm:"column:respiratory" json:"respiratory"` // 体格检查-呼吸频率
  175. SBP int64 `gorm:"column:sbp" json:"sbp"` // 体格检查-收缩压
  176. DBP int64 `gorm:"column:dbp" json:"dbp"` // 体格检查-舒张压
  177. Status int64 `gorm:"column:status" json:"status" form:"status"`
  178. Age int64 `gorm:"column:age" json:"age"`
  179. IsOpenRemind int64 `gorm:"column:is_open_remind" json:"is_open_remind"`
  180. DialysisAge int64 `gorm:"column:dialysis_age" json:"dialysis_age" form:"dialysis_age"`
  181. ExpenseKind int64 `gorm:"column:expense_kind" json:"expense_kind" form:"expense_kind"`
  182. TellPhone string `gorm:"column:tell_phone" json:"tell_phone" form:"tell_phone"`
  183. FirstTreatmentDate int64 `gorm:"column:first_treatment_date" json:"first_treatment_date" form:"first_treatment_date"`
  184. ContactName string `gorm:"column:contact_name" json:"contact_name" form:"contact_name"`
  185. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  186. }
  187. func (MSchedualPatientVM) TableName() string {
  188. return "xt_patients"
  189. }
  190. type MDialysisOrderVM struct {
  191. ID int64 `gorm:"column:id" json:"id"`
  192. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
  193. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  194. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  195. // PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id"`
  196. Stage int64 `gorm:"column:stage" json:"stage"`
  197. // Remark string `gorm:"column:remark" json:"remark"`
  198. BedID int64 `gorm:"column:bed_id" json:"bed_id"`
  199. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse"`
  200. FinishNurse int64 `gorm:"column:finish_nurse" json:"finish_nurse"`
  201. Status int64 `gorm:"column:status" json:"status"`
  202. PunctureNurse int64 `gorm:"column:puncture_nurse" json:"puncture_nurse"`
  203. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedID" json:"device_number"`
  204. MonitoringRecords []*models.MonitoringRecord `gorm:"ForeignKey:DialysisOrderId" json:"monitoring_records"`
  205. Creator int64 `gorm:"column:creator" json:"creator"`
  206. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  207. FinishCreator int64 `gorm:"column:finish_creator" json:"finish_creator"`
  208. FinishModifier int64 `gorm:"column:finish_modifier" json:"finish_modifier"`
  209. SchedualType int64 `gorm:"column:schedual_type" json:"schedual_type"`
  210. }
  211. func (MDialysisOrderVM) TableName() string {
  212. return "xt_dialysis_order"
  213. }
  214. type MDialysisOrderVMList struct {
  215. ID int64 `gorm:"column:id" json:"id"`
  216. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
  217. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  218. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  219. // PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id"`
  220. Stage int64 `gorm:"column:stage" json:"stage"`
  221. // Remark string `gorm:"column:remark" json:"remark"`
  222. BedID int64 `gorm:"column:bed_id" json:"bed_id"`
  223. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse"`
  224. Status int64 `gorm:"column:status" json:"status"`
  225. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedID" json:"device_number"`
  226. Creator int64 `gorm:"column:creator" json:"creator"`
  227. }
  228. func (MDialysisOrderVMList) TableName() string {
  229. return "xt_dialysis_order"
  230. }
  231. type VMDoctorAdvice struct {
  232. ID int64 `gorm:"column:id" json:"id" form:"id"`
  233. GroupNo int64 `gorm:"column:groupno" json:"groupno" form:"groupno"`
  234. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  235. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  236. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
  237. Status int64 `gorm:"column:status" json:"status" form:"status"`
  238. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
  239. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  240. }
  241. func (VMDoctorAdvice) TableName() string {
  242. return "xt_doctor_advice"
  243. }
  244. // 获取透析记录
  245. func MobileGetDialysisRecord(orgID int64, patientID int64, recordDate int64) (*models.DialysisOrder, error) {
  246. var record models.DialysisOrder
  247. err := readDb.Model(&models.DialysisOrder{}).Where("user_org_id = ? AND patient_id = ? AND dialysis_date = ?", orgID, patientID, recordDate).First(&record).Error
  248. if err != nil {
  249. if err == gorm.ErrRecordNotFound {
  250. return nil, nil
  251. } else {
  252. return nil, err
  253. }
  254. }
  255. return &record, nil
  256. }
  257. // 用户基本信息
  258. func MobileGetPatientDetail(orgID int64, patientID int64) (*MPatient, error) {
  259. var patient MPatient
  260. err := readDb.Model(&MPatient{}).Where("status = 1 AND user_org_id = ? AND id = ?", orgID, patientID).First(&patient).Error
  261. if err != nil {
  262. if err == gorm.ErrRecordNotFound {
  263. return nil, nil
  264. } else {
  265. return nil, err
  266. }
  267. }
  268. return &patient, nil
  269. }
  270. // 用户排班信息
  271. func MobileGetSchedualDetail(orgID int64, patientID int64, schedualDate int64) (*MDialysisScheduleVM, error) {
  272. var vm MDialysisScheduleVM
  273. err := readDb.
  274. Table("xt_schedule").
  275. // Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  276. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  277. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND patient_id = ?", orgID, schedualDate, patientID).
  278. First(&vm).Error
  279. if err != nil {
  280. if err == gorm.ErrRecordNotFound {
  281. return nil, nil
  282. } else {
  283. return nil, err
  284. }
  285. }
  286. return &vm, err
  287. }
  288. // 用户排班信息
  289. func MobileGetPatientSchedual(orgID int64, patientID int64, schedualDate int64) (*models.Schedule, error) {
  290. var schedule models.Schedule
  291. err := readDb.
  292. Table("xt_schedule").
  293. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND patient_id = ?", orgID, schedualDate, patientID).
  294. First(&schedule).Error
  295. if err != nil {
  296. if err == gorm.ErrRecordNotFound {
  297. return nil, nil
  298. } else {
  299. return nil, err
  300. }
  301. }
  302. return &schedule, nil
  303. }
  304. type MPatient struct {
  305. ID int64 `gorm:"column:id" json:"id" form:"id"`
  306. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  307. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  308. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  309. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  310. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  311. AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
  312. Source int64 `gorm:"column:source" json:"source" form:"source"`
  313. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  314. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  315. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  316. Name string `gorm:"column:name" json:"name" form:"name"`
  317. Alias string `gorm:"column:alias" json:"alias" form:"alias"`
  318. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  319. Nation string `gorm:"column:nation" json:"nation" form:"nation"`
  320. NativePlace string `gorm:"column:native_place" json:"native_place" form:"native_place"`
  321. MaritalStatus int64 `gorm:"column:marital_status" json:"marital_status" form:"marital_status"`
  322. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  323. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  324. ReimbursementWayId int64 `gorm:"column:reimbursement_way_id" json:"reimbursement_way_id" form:"reimbursement_way_id"`
  325. HealthCareType int64 `gorm:"column:health_care_type" json:"health_care_type" form:"health_care_type"`
  326. HealthCareNo string `gorm:"column:health_care_no" json:"health_care_no" form:"health_care_no"`
  327. HealthCareDueDate int64 `gorm:"column:health_care_due_date" json:"health_care_due_date" form:"health_care_due_date"`
  328. Height int64 `gorm:"column:height" json:"height" form:"height"`
  329. BloodType int64 `gorm:"column:blood_type" json:"blood_type" form:"blood_type"`
  330. Rh int64 `gorm:"column:rh" json:"rh" form:"rh"`
  331. HealthCareDueAlertDate int64 `gorm:"column:health_care_due_alert_date" json:"health_care_due_alert_date" form:"health_care_due_alert_date"`
  332. EducationLevel int64 `gorm:"column:education_level" json:"education_level" form:"education_level"`
  333. Profession int64 `gorm:"column:profession" json:"profession" form:"profession"`
  334. Phone string `gorm:"column:phone" json:"phone" form:"phone"`
  335. HomeTelephone string `gorm:"column:home_telephone" json:"home_telephone" form:"home_telephone"`
  336. RelativePhone string `gorm:"column:relative_phone" json:"relative_phone" form:"relative_phone"`
  337. RelativeRelations string `gorm:"column:relative_relations" json:"relative_relations" form:"relative_relations"`
  338. HomeAddress string `gorm:"column:home_address" json:"home_address" form:"home_address"`
  339. WorkUnit string `gorm:"column:work_unit" json:"work_unit" form:"work_unit"`
  340. UnitAddress string `gorm:"column:unit_address" json:"unit_address" form:"unit_address"`
  341. Children int64 `gorm:"column:children" json:"children" form:"children"`
  342. ReceivingDate int64 `gorm:"column:receiving_date" json:"receiving_date" form:"receiving_date"`
  343. IsHospitalFirstDialysis int64 `gorm:"column:is_hospital_first_dialysis" json:"is_hospital_first_dialysis" form:"is_hospital_first_dialysis"`
  344. FirstDialysisDate int64 `gorm:"column:first_dialysis_date" json:"first_dialysis_date" form:"first_dialysis_date"`
  345. FirstDialysisHospital string `gorm:"column:first_dialysis_hospital" json:"first_dialysis_hospital" form:"first_dialysis_hospital"`
  346. InductionPeriod int64 `gorm:"column:induction_period" json:"induction_period" form:"induction_period"`
  347. InitialDialysis int64 `gorm:"column:initial_dialysis" json:"initial_dialysis" form:"initial_dialysis"`
  348. TotalDialysis int64 `gorm:"column:total_dialysis" json:"total_dialysis" form:"total_dialysis"`
  349. AttendingDoctorId int64 `gorm:"column:attending_doctor_id" json:"attending_doctor_id" form:"attending_doctor_id"`
  350. HeadNurseId int64 `gorm:"column:head_nurse_id" json:"head_nurse_id" form:"head_nurse_id"`
  351. Evaluate string `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
  352. Diagnose string `gorm:"column:diagnose" json:"diagnose" form:"diagnose"`
  353. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  354. RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
  355. Registrars string `gorm:"column:registrars" json:"registrars" form:"registrars"`
  356. QrCode string `gorm:"column:qr_code" json:"qr_code" form:"qr_code"`
  357. BindingState int64 `gorm:"column:binding_state" json:"binding_state" form:"binding_state"`
  358. PatientComplains string `gorm:"column:patient_complains" json:"patient_complains"` // 主诉
  359. PresentHistory string `gorm:"column:present_history" json:"present_history"` // 现病史
  360. PastHistory string `gorm:"column:past_history" json:"past_history"` // 既往史
  361. Temperature float64 `gorm:"column:temperature" json:"temperature"` // 体格检查-体温
  362. Pulse int64 `gorm:"column:pulse" json:"pulse"` // 体格检查-脉搏
  363. Respiratory int64 `gorm:"column:respiratory" json:"respiratory"` // 体格检查-呼吸频率
  364. SBP int64 `gorm:"column:sbp" json:"sbp"` // 体格检查-收缩压
  365. DBP int64 `gorm:"column:dbp" json:"dbp"` // 体格检查-舒张压
  366. Status int64 `gorm:"column:status" json:"status" form:"status"`
  367. Age int64 `gorm:"column:age" json:"age"`
  368. IsOpenRemind int64 `gorm:"column:is_open_remind" json:"is_open_remind"`
  369. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  370. DialysisAge int64 `gorm:"column:dialysis_age" json:"dialysis_age" form:"dialysis_age"`
  371. ExpenseKind int64 `gorm:"column:expense_kind" json:"expense_kind" form:"expense_kind"`
  372. TellPhone string `gorm:"column:tell_phone" json:"tell_phone" form:"tell_phone"`
  373. FirstTreatmentDate int64 `gorm:"column:first_treatment_date" json:"first_treatment_date" form:"first_treatment_date"`
  374. ContactName string `gorm:"column:contact_name" json:"contact_name" form:"contact_name"`
  375. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  376. }
  377. func (MPatient) TableName() string {
  378. return "xt_patients"
  379. }
  380. // 接诊评估
  381. func MobileGetReceiverTreatmentAccessRecord(orgID int64, patientID int64, recordDate int64) (*models.ReceiveTreatmentAsses, error) {
  382. var record models.ReceiveTreatmentAsses
  383. err = readDb.Model(&models.ReceiveTreatmentAsses{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  384. if err != nil {
  385. if err == gorm.ErrRecordNotFound {
  386. return nil, nil
  387. } else {
  388. return nil, err
  389. }
  390. }
  391. return &record, nil
  392. }
  393. // 透前评估
  394. func MobileGetPredialysisEvaluation(orgID int64, patientID int64, recordDate int64) (*models.PredialysisEvaluation, error) {
  395. fmt.Println("recordDate", recordDate)
  396. var record models.PredialysisEvaluation
  397. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  398. if err != nil {
  399. if err == gorm.ErrRecordNotFound {
  400. return nil, nil
  401. } else {
  402. return nil, err
  403. }
  404. }
  405. return &record, nil
  406. }
  407. // 获取 maxDate 之前一次的透前评估记录
  408. func MobileGetLastTimePredialysisEvaluation(orgID int64, patientID int64, maxDate int64) (*models.PredialysisEvaluation, error) {
  409. var record models.PredialysisEvaluation
  410. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  411. if err != nil {
  412. if err == gorm.ErrRecordNotFound {
  413. return nil, nil
  414. } else {
  415. return nil, err
  416. }
  417. }
  418. return &record, nil
  419. }
  420. // 临时医嘱
  421. func MobileGetDoctorAdvices(orgID int64, patientID int64, recordDate int64) ([]*models.DoctorAdvice, error) {
  422. var records []*models.DoctorAdvice
  423. // err := readDb.Model(&models.DoctorAdvice{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).Find(&records).Error
  424. err := readDb.
  425. Model(&models.DoctorAdvice{}).
  426. Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ? and (advice_type = 2 or advice_type = 3)", patientID, orgID, recordDate).
  427. Select("id,user_org_id,patient_id,advice_type,advice_date,record_date,start_time,advice_name,advice_desc,reminder_date, drug_spec, drug_spec_unit,single_dose,single_dose_unit,prescribing_number,prescribing_number_unit,delivery_way,execution_frequency,advice_doctor,status,created_time,updated_time,advice_affirm,remark,stop_time,stop_reason,stop_doctor,stop_state,parent_id,execution_time,execution_staff,execution_state,checker, check_state, check_time,IF(parent_id>0, parent_id, id) as advice_order,groupno").
  428. Order("start_time asc, groupno desc, advice_order desc, id").
  429. Scan(&records).Error
  430. if err != nil {
  431. return nil, err
  432. }
  433. return records, nil
  434. }
  435. func MobileGetDoctorAdvicesByGroups(orgID int64, patientID int64, recordDate int64) ([]*models.DoctorAdvice, error) {
  436. var records []*models.DoctorAdvice
  437. // err := readDb.Model(&models.DoctorAdvice{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).Find(&records).Error
  438. err := readDb.
  439. Model(&models.DoctorAdvice{}).
  440. Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ? and advice_type = 2", patientID, orgID, recordDate).
  441. Select("id, user_org_id, patient_id, advice_type, advice_date, record_date, start_time, advice_name,advice_desc, reminder_date, drug_spec, drug_spec_unit, single_dose, single_dose_unit, prescribing_number, prescribing_number_unit, delivery_way, execution_frequency, advice_doctor, status, created_time,updated_time, advice_affirm, remark, stop_time, stop_reason, stop_doctor, stop_state, parent_id, execution_time, execution_staff, execution_state, checker, check_state, check_time, groupno, IF(parent_id > 0, parent_id, id) as advice_order").
  442. Order("start_time asc, groupno desc, advice_order desc, id asc").
  443. Scan(&records).Error
  444. if err != nil {
  445. return nil, err
  446. }
  447. return records, nil
  448. }
  449. // 透析记录
  450. func MobileGetSchedualDialysisRecord(orgID int64, patientID int64, recordDate int64) (*models.DialysisOrder, error) {
  451. var record models.DialysisOrder
  452. err := readDb.Model(&models.DialysisOrder{}).Preload("DeviceNumber", "org_id = ? AND status = 1", orgID).Where("user_org_id = ? AND patient_id = ? AND dialysis_date = ?", orgID, patientID, recordDate).First(&record).Error
  453. if err != nil {
  454. if err == gorm.ErrRecordNotFound {
  455. return nil, nil
  456. } else {
  457. return nil, err
  458. }
  459. }
  460. return &record, nil
  461. }
  462. // 双人核对
  463. func MobileGetDoubleCheck(orgID int64, patientID int64, recordDate int64) (*models.DoubleCheck, error) {
  464. var record models.DoubleCheck
  465. err := readDb.Model(&models.DoubleCheck{}).Where("patient_id = ? and user_org_id = ? and status = 1 and check_date = ?", patientID, orgID, recordDate).First(&record).Error
  466. if err != nil {
  467. if err == gorm.ErrRecordNotFound {
  468. return nil, nil
  469. } else {
  470. return nil, err
  471. }
  472. }
  473. return &record, nil
  474. }
  475. // 透析监测记录
  476. func MobileGetMonitorRecords(orgID int64, patientID int64, recordDate int64) ([]*models.MonitoringRecord, error) {
  477. var records []*models.MonitoringRecord
  478. err := readDb.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id = ? and status = 1 and monitoring_date = ?", patientID, orgID, recordDate).Order("operate_time asc").Find(&records).Error
  479. if err != nil {
  480. return nil, err
  481. }
  482. return records, nil
  483. }
  484. func MobileGetMonitorRecordFirst(orgID int64, patientID int64, recordDate int64) (*models.MonitoringRecord, error) {
  485. var records models.MonitoringRecord
  486. err := readDb.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id = ? and status = 1 and monitoring_date = ?", patientID, orgID, recordDate).Order("operate_time asc").First(&records).Error
  487. if err != nil {
  488. return nil, err
  489. }
  490. return &records, nil
  491. }
  492. func MobileGetLastMonitorRecord(orgID int64, patientID int64, beforeDate int64) (*models.MonitoringRecord, error) {
  493. var record models.MonitoringRecord
  494. err := readDb.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id = ? and status = 1 and monitoring_date = ?", patientID, orgID, beforeDate).Order("operate_time desc").First(&record).Error
  495. if err != nil {
  496. if err == gorm.ErrRecordNotFound {
  497. return nil, nil
  498. } else {
  499. return nil, err
  500. }
  501. }
  502. return &record, nil
  503. }
  504. // 透后评估
  505. func MobileGetAssessmentAfterDislysis(orgID int64, patientID int64, recordDate int64) (*models.AssessmentAfterDislysis, error) {
  506. var record models.AssessmentAfterDislysis
  507. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  508. if err != nil {
  509. if err == gorm.ErrRecordNotFound {
  510. return nil, nil
  511. } else {
  512. return nil, err
  513. }
  514. }
  515. return &record, nil
  516. }
  517. // 获取 maxDate 之前一次的透后评估记录
  518. func MobileGetLastTimeAssessmentAfterDislysis(orgID int64, patientID int64, maxDate int64) (*models.AssessmentAfterDislysis, error) {
  519. var record models.AssessmentAfterDislysis
  520. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  521. if err != nil {
  522. if err == gorm.ErrRecordNotFound {
  523. return nil, nil
  524. } else {
  525. return nil, err
  526. }
  527. }
  528. return &record, nil
  529. }
  530. func MobileGetLast(orgID int64, patientID int64, maxDate int64) (models.AssessmentAfterDislysis, error) {
  531. dislysis := models.AssessmentAfterDislysis{}
  532. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&dislysis).Error
  533. return dislysis, err
  534. }
  535. // 治疗小结
  536. func MobileGetTreatmentSummary(orgID int64, patientID int64, recordDate int64) (*models.TreatmentSummary, error) {
  537. var record models.TreatmentSummary
  538. err := readDb.Model(&models.TreatmentSummary{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  539. if err != nil {
  540. if err == gorm.ErrRecordNotFound {
  541. return nil, nil
  542. } else {
  543. return nil, err
  544. }
  545. }
  546. return &record, nil
  547. }
  548. // 透析处方
  549. func MobileGetDialysisPrescribe(orgID int64, patientID int64, recordDate int64) (*models.DialysisPrescription, error) {
  550. var record models.DialysisPrescription
  551. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  552. if err != nil {
  553. if err == gorm.ErrRecordNotFound {
  554. return nil, nil
  555. } else {
  556. return nil, err
  557. }
  558. }
  559. return &record, nil
  560. }
  561. // 透析方案
  562. func MobileGetDialysisSolution(orgID int64, patientID int64) (*models.DialysisSolution, error) {
  563. var record models.DialysisSolution
  564. err := readDb.Model(&models.DialysisSolution{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  565. if err != nil {
  566. if err == gorm.ErrRecordNotFound {
  567. return nil, nil
  568. } else {
  569. return nil, err
  570. }
  571. }
  572. return &record, nil
  573. }
  574. func MobileGetPatientById(orgID int64, patientID int64) (*models.Patients, error) {
  575. var patient models.Patients
  576. err := readDb.Model(&models.Patients{}).Where("id = ? and user_org_id = ? and status = 1", patientID, orgID).First(&patient).Error
  577. if err != nil {
  578. if err == gorm.ErrRecordNotFound {
  579. return nil, nil
  580. } else {
  581. return nil, err
  582. }
  583. }
  584. return &patient, nil
  585. }
  586. func DisableMonitor(orgID int64, patientID int64, recordID int64, admin_user_id int64) error {
  587. fmt.Println()
  588. tx := writeDb.Begin()
  589. updateTime := time.Now().Unix()
  590. err := tx.Model(&models.MonitoringRecord{}).Where("user_org_id = ? AND patient_id = ? AND id = ? AND status = 1 ", orgID, patientID, recordID).Updates(map[string]interface{}{"status": 0, "updated_time": updateTime, "modify": admin_user_id}).Error
  591. if err != nil {
  592. tx.Rollback()
  593. return err
  594. }
  595. tx.Commit()
  596. return nil
  597. }
  598. func GetMonitor(orgID int64, patientID int64, id int64) (*models.MonitoringRecord, error) {
  599. var monitor models.MonitoringRecord
  600. var err error
  601. err = readDb.Model(&models.MonitoringRecord{}).Where("id = ? AND user_org_id = ? AND patient_id = ? AND status = 1 ", id, orgID, patientID).Find(&monitor).Error
  602. if err == gorm.ErrRecordNotFound {
  603. return nil, nil
  604. }
  605. if err != nil {
  606. return nil, err
  607. }
  608. return &monitor, nil
  609. }
  610. type MScheduleDoctorAdviceVM struct {
  611. ID int64 `gorm:"column:id" json:"id"`
  612. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  613. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  614. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  615. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  616. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  617. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  618. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  619. Status int64 `gorm:"column:status" json:"status"`
  620. DialysisOrder *MDialysisOrderVM `gorm:"ForeignKey:DialysisDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"dialysis_order"`
  621. SchedualPatient *MSchedualPatientVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
  622. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  623. DoctorAdvices []*MDoctorAdviceVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  624. }
  625. func (MScheduleDoctorAdviceVM) TableName() string {
  626. return "xt_schedule"
  627. }
  628. type MDoctorAdviceVM struct {
  629. ID int64 `gorm:"column:id" json:"id"`
  630. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  631. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  632. AdviceType int64 `gorm:"column:advice_type" json:"advice_type"`
  633. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date"`
  634. StartTime int64 `gorm:"column:start_time" json:"start_time"`
  635. AdviceName string `gorm:"column:advice_name" json:"advice_name"`
  636. AdviceDesc string `gorm:"column:advice_desc" json:"advice_desc"`
  637. ReminderDate int64 `gorm:"column:reminder_date" json:"reminder_date"`
  638. SingleDose float64 `gorm:"column:single_dose" json:"single_dose"`
  639. SingleDoseUnit string `gorm:"column:single_dose_unit" json:"single_dose_unit"`
  640. PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number"`
  641. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit"`
  642. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way"`
  643. ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency"`
  644. AdviceDoctor int64 `gorm:"column:advice_doctor" json:"advice_doctor"`
  645. Status int64 `gorm:"column:status" json:"status"`
  646. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  647. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  648. AdviceAffirm string `gorm:"column:advice_affirm" json:"advice_affirm"`
  649. Remark string `gorm:"column:remark" json:"remark"`
  650. StopTime int64 `gorm:"column:stop_time" json:"stop_time"`
  651. StopReason string `gorm:"column:stop_reason" json:"stop_reason"`
  652. StopDoctor int64 `gorm:"column:stop_doctor" json:"stop_doctor"`
  653. StopState int64 `gorm:"column:stop_state" json:"stop_state"`
  654. ParentId int64 `gorm:"column:parent_id" json:"parent_id"`
  655. ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time"`
  656. ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff"`
  657. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state"`
  658. Checker int64 `gorm:"column:checker" json:"checker"`
  659. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  660. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  661. CheckTime int64 `gorm:"column:check_time" json:"check_time"`
  662. CheckState int64 `gorm:"column:check_state" json:"check_state"`
  663. DrugSpec float64 `gorm:"column:drug_spec" json:"drug_spec"`
  664. DrugSpecUnit string `gorm:"column:drug_spec_unit" json:"drug_spec_unit"`
  665. Groupno int64 `gorm:"column:groupno" json:"groupno"`
  666. RemindType int64 `gorm:"column:remind_type" json:"remind_type"`
  667. FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type"`
  668. DayCount int64 `gorm:"column:day_count" json:"day_count"`
  669. WeekDay string `gorm:"column:week_day" json:"week_day"`
  670. TemplateId string `gorm:"column:template_id" json:"template_id"`
  671. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  672. }
  673. func (MDoctorAdviceVM) TableName() string {
  674. return "xt_doctor_advice"
  675. }
  676. func MobileGetScheduleDoctorAdvices(orgID int64, scheduleDate int64, adviceType int, patientType int, adminUserId int64) ([]*MScheduleDoctorAdviceVM, error) {
  677. var vms []*MScheduleDoctorAdviceVM
  678. adviceWhere := ""
  679. fmt.Println("advicetype", adviceType)
  680. fmt.Println("patientType", patientType)
  681. fmt.Println("adminUserId", adminUserId)
  682. adviceCondition := []interface{}{}
  683. if adviceType == 0 {
  684. if patientType == 0 {
  685. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1)"
  686. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  687. } else if patientType == 1 {
  688. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1)"
  689. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  690. } else if patientType == 2 {
  691. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1)"
  692. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  693. }
  694. } else if adviceType == 1 {
  695. if patientType == 0 {
  696. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? "
  697. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  698. } else if patientType == 1 {
  699. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? "
  700. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  701. } else if patientType == 2 {
  702. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0"
  703. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  704. }
  705. } else if adviceType == 3 {
  706. if patientType == 0 {
  707. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? "
  708. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  709. } else if patientType == 1 {
  710. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? "
  711. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  712. } else if patientType == 2 {
  713. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0"
  714. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  715. }
  716. } else if adviceType == 2 {
  717. if patientType == 0 {
  718. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? "
  719. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  720. } else if patientType == 1 {
  721. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? "
  722. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  723. } else if patientType == 2 {
  724. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0"
  725. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  726. }
  727. }
  728. db := readDb.
  729. Table("xt_schedule").
  730. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  731. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  732. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  733. }).
  734. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  735. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  736. Preload("DoctorAdvices", adviceCondition...).
  737. Where("status = 1 AND user_org_id = ?", orgID)
  738. if scheduleDate != 0 {
  739. db = db.Where("schedule_date = ?", scheduleDate)
  740. }
  741. err := db.Find(&vms).Error
  742. return vms, err
  743. }
  744. func MobileCreateDialysisOrder(orgID int64, patientID int64, order *models.DialysisOrder) error {
  745. now := time.Now()
  746. tx := writeDb.Begin()
  747. if createOrderErr := tx.Model(&models.DialysisOrder{}).Create(order).Error; createOrderErr != nil {
  748. tx.Rollback()
  749. return createOrderErr
  750. }
  751. // 更新透析记录 ID
  752. // 透析处方
  753. if err := tx.Model(&models.DialysisPrescription{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"record_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  754. tx.Rollback()
  755. return err
  756. }
  757. // 接诊评估
  758. if err := tx.Model(&models.ReceiveTreatmentAsses{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"record_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  759. tx.Rollback()
  760. return err
  761. }
  762. // 透前评估
  763. if err := tx.Model(&models.PredialysisEvaluation{}).Where("user_org_id = ? AND patient_id = ? AND assessment_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  764. tx.Rollback()
  765. return err
  766. }
  767. // 临时医嘱
  768. if err := tx.Model(&models.DoctorAdvice{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1 AND advice_type = 2", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  769. tx.Rollback()
  770. return err
  771. }
  772. // 双人核对
  773. if err := tx.Model(&models.DoubleCheck{}).Where("user_org_id = ? AND patient_id = ? AND check_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  774. tx.Rollback()
  775. return err
  776. }
  777. // 透后评估
  778. if err := tx.Model(&models.AssessmentAfterDislysis{}).Where("user_org_id = ? AND patient_id = ? AND assessment_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  779. tx.Rollback()
  780. return err
  781. }
  782. // 治疗小结
  783. if err := tx.Model(&models.TreatmentSummary{}).Where("user_org_id = ? AND patient_id = ? AND assessment_date = ? AND status = 1", orgID, patientID, order.DialysisDate).Updates(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  784. tx.Rollback()
  785. return err
  786. }
  787. // 透析监测
  788. if err := tx.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id=? and status=1 and monitoring_date = ?", patientID, orgID, order.DialysisDate).Update(map[string]interface{}{"dialysis_order_id": order.ID, "updated_time": now.Unix()}).Error; err != nil {
  789. tx.Rollback()
  790. return err
  791. }
  792. tx.Commit()
  793. return nil
  794. }
  795. type MobileUrgentSchedulePatientVM struct {
  796. ID int64 `gorm:"column:id" json:"id"`
  797. Name string `gorm:"column:name" json:"name"`
  798. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no"`
  799. }
  800. func (MobileUrgentSchedulePatientVM) TableName() string {
  801. return "xt_patients"
  802. }
  803. type MobileUrgentScheduleTreatmentModeVM struct {
  804. ID int64 `gorm:"column:id" json:"id"`
  805. Name string `gorm:"column:name" json:"name"`
  806. }
  807. func (MobileUrgentScheduleTreatmentModeVM) TableName() string {
  808. return "xt_treatment_mode"
  809. }
  810. func MobileGetAllPatientsForUrgentSchedule(orgID int64, record_date int64) ([]*MobileUrgentSchedulePatientVM, error) {
  811. var vms []*MobileUrgentSchedulePatientVM = make([]*MobileUrgentSchedulePatientVM, 0)
  812. rows, err := readDb.Raw("SELECT p.* FROM xt_patients as p WHERE (p.user_org_id = ? AND p.status = 1 AND p.lapseto = 1) AND NOT EXISTS (Select * FROM `xt_dialysis_order` as d Where d.`dialysis_date` = ? AND d.`status` = 1 AND d.`patient_id` = p.id AND d.user_org_id = p.user_org_id )", orgID, record_date).Rows()
  813. defer rows.Close()
  814. if err != nil {
  815. return nil, err
  816. }
  817. for rows.Next() {
  818. var vm MobileUrgentSchedulePatientVM
  819. readDb.ScanRows(rows, &vm)
  820. vms = append(vms, &vm)
  821. }
  822. return vms, nil
  823. }
  824. func MobileGetAllTrearmentModesForUrgentSchedule() ([]*MobileUrgentScheduleTreatmentModeVM, error) {
  825. var modes []*MobileUrgentScheduleTreatmentModeVM
  826. err := readDb.Model(&MobileUrgentScheduleTreatmentModeVM{}).Where("status = 1").Find(&modes).Error
  827. if err != nil {
  828. return nil, err
  829. }
  830. return modes, nil
  831. }
  832. type MobileUrgentScheduleScheduleListVM struct {
  833. ID int64 `gorm:"column:id" json:"id"`
  834. // ZoneID int64 `gorm:"column:partition_id" json:"zone_id"`
  835. DeviceNumberID int64 `gorm:"column:bed_id" json:"bed_id"`
  836. PatientID int64 `gorm:"column:patient_id" json:"patient_id"`
  837. ScheduleType int `gorm:"column:schedule_type" json:"schedule_type"`
  838. DeviceNumber *models.DeviceNumber `gorm:"ForeignKey:DeviceNumberID" json:"device_number"`
  839. // DeviceZone *models.DeviceZone `gorm:"ForeignKey:ZoneID" json:"device_zone"`
  840. }
  841. func (MobileUrgentScheduleScheduleListVM) TableName() string {
  842. return "xt_schedule"
  843. }
  844. func MobileGetSchedulesForUrgentSchedule(orgID int64, scheduleDate int64, schedule_type int) (schedules []*MobileUrgentScheduleScheduleListVM, err error) {
  845. db := readDb.
  846. Model(&MobileUrgentScheduleScheduleListVM{}).
  847. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  848. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND schedule_type = ? ", orgID, scheduleDate, schedule_type)
  849. err = db.Find(&schedules).Error
  850. if err != nil {
  851. return nil, err
  852. }
  853. return schedules, nil
  854. }
  855. func MobileGetOtherSchedulesForUrgentSchedule(orgID int64, scheduleDate int64, schedule_type int) ([]*MobileUrgentScheduleScheduleListVM, error) {
  856. var vms []*MobileUrgentScheduleScheduleListVM = make([]*MobileUrgentScheduleScheduleListVM, 0)
  857. rows, err := readDb.Raw("SELECT * FROM xt_schedule as s WHERE s.user_org_id = ? AND s.status = 1 AND s.schedule_date = ? ", orgID, scheduleDate).Rows()
  858. defer rows.Close()
  859. if err != nil {
  860. return nil, err
  861. }
  862. for rows.Next() {
  863. var vm MobileUrgentScheduleScheduleListVM
  864. readDb.ScanRows(rows, &vm)
  865. vms = append(vms, &vm)
  866. }
  867. return vms, nil
  868. }
  869. type MobileUrgentScheduleDeviceNumberVM struct {
  870. ID int64 `gorm:"column:id" json:"id"`
  871. Number string `gorm:"column:number" json:"number"`
  872. ZoneID int64 `gorm:"column:zone_id" json:"zone_id"`
  873. Zone *models.DeviceZone `gorm:"ForeignKey:ZoneID" json:"zone"`
  874. }
  875. func (MobileUrgentScheduleDeviceNumberVM) TableName() string {
  876. return "xt_device_number"
  877. }
  878. func MobileGetAllDeviceNumbersForUrgentSchedule(orgID int64, record_date int64, schedule_type int) ([]*DeviceNumberViewModel, error) {
  879. var vms []*DeviceNumberViewModel = make([]*DeviceNumberViewModel, 0)
  880. rows, err := readDb.Raw("SELECT n.*, z.name as zone_name, g.name as group_name FROM xt_device_number as n join xt_device_zone as z on z.id = n.zone_id join xt_device_group as g on g.id = n.group_id WHERE (n.org_id = ? AND n.status = 1) AND NOT EXISTS (Select * FROM xt_schedule as s Where s.`schedule_date` = ? AND s.user_org_id = n.org_id AND s.`bed_id` = n.id AND s.`schedule_type` = ? AND s.status = 1 )", orgID, record_date, schedule_type).Rows()
  881. defer rows.Close()
  882. if err != nil {
  883. return nil, err
  884. }
  885. for rows.Next() {
  886. var vm DeviceNumberViewModel
  887. readDb.ScanRows(rows, &vm)
  888. vms = append(vms, &vm)
  889. }
  890. return vms, nil
  891. //var deviceNumbers []*MobileUrgentScheduleDeviceNumberVM
  892. //db := readDb.
  893. // Model(&MobileUrgentScheduleDeviceNumberVM{}).
  894. // Preload("Zone", "status = 1 AND org_id = ?", orgID).
  895. // Where("status = 1 AND org_id = ?", orgID)
  896. //err := db.Order("zone_id asc").Find(&deviceNumbers).Error
  897. //if err != nil {
  898. // return nil, err
  899. //}
  900. //return deviceNumbers, nil
  901. }
  902. func GetValidScheduleMonitorRecordCount() (int64, error) {
  903. var total int64
  904. err := readDb.Model(&models.MonitoringRecord{}).Where("status = 1 AND operate_time = 0 AND monitoring_date <> 0").Count(&total).Error
  905. return total, err
  906. }
  907. func GetTop1000ValidScheduleMonitorRecord() ([]*models.MonitoringRecord, error) {
  908. var monitors []*models.MonitoringRecord
  909. err := readDb.Model(&models.MonitoringRecord{}).Where("status = 1 AND operate_time = 0 AND monitoring_date <> 0").Order("id asc").Limit(100).Find(&monitors).Error
  910. if err != nil {
  911. return nil, err
  912. }
  913. return monitors, nil
  914. }
  915. func BatchUpdateMonitors(monitors []*models.MonitoringRecord) error {
  916. tx := writeDb.Begin()
  917. for index := 0; index < len(monitors); index++ {
  918. tx.Save(monitors[index])
  919. }
  920. return tx.Commit().Error
  921. }
  922. func ModifyStartDialysisOrder(order *models.DialysisOrder) error {
  923. tx := writeDb.Begin()
  924. updateTime := time.Now().Unix()
  925. err := tx.Model(&models.DialysisOrder{}).Where("user_org_id = ? AND id = ? AND status = 1 ", order.UserOrgId, order.ID).Updates(map[string]interface{}{"start_nurse": order.StartNurse, "updated_time": updateTime, "bed_id": order.BedID, "puncture_nurse": order.PunctureNurse, "start_time": order.StartTime, "modifier": order.Modifier, "schedual_type": order.SchedualType}).Error
  926. if err != nil {
  927. tx.Rollback()
  928. return err
  929. }
  930. tx.Commit()
  931. return err
  932. }
  933. func ModifyFinishDialysisOrder(order *models.DialysisOrder) error {
  934. tx := writeDb.Begin()
  935. updateTime := time.Now().Unix()
  936. err := tx.Model(&models.DialysisOrder{}).Where("user_org_id = ? AND id = ? AND status = 1 ", order.UserOrgId, order.ID).Updates(map[string]interface{}{"finish_nurse": order.FinishNurse, "updated_time": updateTime, "end_time": order.EndTime, "finish_modifier": order.FinishModifier}).Error
  937. if err != nil {
  938. tx.Rollback()
  939. return err
  940. }
  941. tx.Commit()
  942. return err
  943. }
  944. func MobileGetLastDryWeight(orgID int64, patientID int64) (*models.SgjPatientDryweight, error) {
  945. var record models.SgjPatientDryweight
  946. err := readDb.Model(&models.SgjPatientDryweight{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  947. if err != nil {
  948. if err == gorm.ErrRecordNotFound {
  949. return nil, nil
  950. } else {
  951. return nil, err
  952. }
  953. }
  954. return &record, nil
  955. }
  956. // 透析方案
  957. func MobileGetDialysisSolutionByModeId(orgID int64, patientID int64, mode_id int64) (*models.DialysisSolution, error) {
  958. var record models.DialysisSolution
  959. err := readDb.Model(&models.DialysisSolution{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  960. if err != nil {
  961. if err == gorm.ErrRecordNotFound {
  962. return nil, nil
  963. } else {
  964. return nil, err
  965. }
  966. }
  967. return &record, nil
  968. }
  969. // 透析处方
  970. func MobileGetDialysisPrescribeByModeId(orgID int64, patientID int64, recordDate int64, mode_id int64) (*models.DialysisPrescription, error) {
  971. var record models.DialysisPrescription
  972. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ? AND mode_id = ?", patientID, orgID, recordDate, mode_id).First(&record).Error
  973. if err != nil {
  974. if err == gorm.ErrRecordNotFound {
  975. return nil, nil
  976. } else {
  977. return nil, err
  978. }
  979. }
  980. return &record, nil
  981. }
  982. func MobileGetLastDialysisPrescribe(orgID int64, patientID int64) (*models.DialysisPrescription, error) {
  983. var record models.DialysisPrescription
  984. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 ", patientID, orgID).Last(&record).Error
  985. if err != nil {
  986. if err == gorm.ErrRecordNotFound {
  987. return nil, nil
  988. } else {
  989. return nil, err
  990. }
  991. }
  992. return &record, nil
  993. }
  994. func MobileGetLastDialysisPrescribeByModeId(orgID int64, patientID int64, mode_id int64) (*models.DialysisPrescription, error) {
  995. var record models.DialysisPrescription
  996. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  997. if err != nil {
  998. if err == gorm.ErrRecordNotFound {
  999. return nil, nil
  1000. } else {
  1001. return nil, err
  1002. }
  1003. }
  1004. return &record, nil
  1005. }
  1006. func GetAllAvaildDeviceNumbers(orgID int64, record_date int64, schedule_type int) ([]*DeviceNumberViewModel, error) {
  1007. var vms []*DeviceNumberViewModel = make([]*DeviceNumberViewModel, 0)
  1008. rows, err := readDb.Raw("SELECT n.*, z.name as zone_name, g.name as group_name FROM xt_device_number as n join xt_device_zone as z on z.id = n.zone_id join xt_device_group as g on g.id = n.group_id WHERE (n.org_id = ? AND n.status = 1) AND NOT EXISTS (Select * FROM xt_schedule as s Where s.`schedule_date` = ? AND s.user_org_id = n.org_id AND s.`bed_id` = n.id AND s.`schedule_type` = ? AND s.status = 1 )", orgID, record_date, schedule_type).Rows()
  1009. defer rows.Close()
  1010. if err != nil {
  1011. return nil, err
  1012. }
  1013. for rows.Next() {
  1014. var vm DeviceNumberViewModel
  1015. readDb.ScanRows(rows, &vm)
  1016. vms = append(vms, &vm)
  1017. }
  1018. return vms, nil
  1019. }
  1020. // 获取 maxDate 之前一次的透前评估记录
  1021. func GetLastTimePredialysisEvaluation(orgID int64, patientID int64, maxDate int64) (*models.PredialysisEvaluation, error) {
  1022. var record models.PredialysisEvaluation
  1023. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  1024. if err != nil {
  1025. if err == gorm.ErrRecordNotFound {
  1026. return nil, nil
  1027. } else {
  1028. return nil, err
  1029. }
  1030. }
  1031. return &record, nil
  1032. }
  1033. func GetLastMonitorRecord(orgID int64, patientID int64, beforeDate int64) (*models.MonitoringRecord, error) {
  1034. var record models.MonitoringRecord
  1035. err := readDb.Model(&models.MonitoringRecord{}).Where("patient_id = ? and user_org_id = ? and status = 1 and monitoring_date = ?", patientID, orgID, beforeDate).Order("operate_time desc").First(&record).Error
  1036. if err != nil {
  1037. if err == gorm.ErrRecordNotFound {
  1038. return nil, nil
  1039. } else {
  1040. return nil, err
  1041. }
  1042. }
  1043. return &record, nil
  1044. }
  1045. // 获取 maxDate 之前一次的透后评估记录
  1046. func GetLastTimeAssessmentAfterDislysis(orgID int64, patientID int64, maxDate int64) (*models.AssessmentAfterDislysis, error) {
  1047. var record models.AssessmentAfterDislysis
  1048. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date < ?", patientID, orgID, maxDate).Order("assessment_date desc").First(&record).Error
  1049. if err != nil {
  1050. if err == gorm.ErrRecordNotFound {
  1051. return nil, nil
  1052. } else {
  1053. return nil, err
  1054. }
  1055. }
  1056. return &record, nil
  1057. }
  1058. // 透析处方
  1059. func GetDialysisPrescribe(orgID int64, patientID int64, recordDate int64) (*models.DialysisPrescription, error) {
  1060. var record models.DialysisPrescription
  1061. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  1062. if err != nil {
  1063. if err == gorm.ErrRecordNotFound {
  1064. return nil, nil
  1065. } else {
  1066. return nil, err
  1067. }
  1068. }
  1069. return &record, nil
  1070. }
  1071. // 透析方案
  1072. func GetDialysisSolution(orgID int64, patientID int64, mode_id int64) (*models.DialysisSolution, error) {
  1073. var record models.DialysisSolution
  1074. err := readDb.Model(&models.DialysisSolution{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  1075. if err != nil {
  1076. if err == gorm.ErrRecordNotFound {
  1077. return nil, nil
  1078. } else {
  1079. return nil, err
  1080. }
  1081. }
  1082. return &record, nil
  1083. }
  1084. func GetLastDialysisPrescribeByModeId(orgID int64, patientID int64, mode_id int64) (*models.DialysisPrescription, error) {
  1085. var record models.DialysisPrescription
  1086. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 AND mode_id = ?", patientID, orgID, mode_id).Last(&record).Error
  1087. if err != nil {
  1088. if err == gorm.ErrRecordNotFound {
  1089. return nil, nil
  1090. } else {
  1091. return nil, err
  1092. }
  1093. }
  1094. return &record, nil
  1095. }
  1096. func GetLastDryWeight(orgID int64, patientID int64) (*models.SgjPatientDryweight, error) {
  1097. var record models.SgjPatientDryweight
  1098. err := readDb.Model(&models.SgjPatientDryweight{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  1099. if err != nil {
  1100. if err == gorm.ErrRecordNotFound {
  1101. return nil, nil
  1102. } else {
  1103. return nil, err
  1104. }
  1105. }
  1106. return &record, nil
  1107. }
  1108. func MobileGetSystemDialysisPrescribeByModeId(orgID int64, mode_id int64) (*models.SystemPrescription, error) {
  1109. var record models.SystemPrescription
  1110. err := readDb.Model(&models.SystemPrescription{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).First(&record).Error
  1111. if err != nil {
  1112. if err == gorm.ErrRecordNotFound {
  1113. return nil, nil
  1114. } else {
  1115. return nil, err
  1116. }
  1117. }
  1118. return &record, nil
  1119. }
  1120. func GetSystemDialysisPrescribeByModeId(orgID int64, mode_id int64) (*models.SystemPrescription, error) {
  1121. var record models.SystemPrescription
  1122. err := readDb.Model(&models.SystemPrescription{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).Last(&record).Error
  1123. if err != nil {
  1124. if err == gorm.ErrRecordNotFound {
  1125. return nil, nil
  1126. } else {
  1127. return nil, err
  1128. }
  1129. }
  1130. return &record, nil
  1131. }
  1132. func GetDialysisOrderCount(orgID int64, patient_id int64, recordDate int64) (count int64, err error) {
  1133. err = readDb.Model(&models.DialysisOrder{}).Where("dialysis_date <= ? AND status = 1 AND stage = 2 AND user_org_id = ? AND patient_id = ?", recordDate, orgID, patient_id).Count(&count).Error
  1134. return
  1135. }