mobile_dialysis_service.go 60KB

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