mobile_dialysis_service.go 97KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941
  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 AND advice_date = ? ", orgID, scheduleDate).
  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 = ? AND dialysis_date = ?", orgID, scheduleDate).
  34. Preload("DialysisOrder.DeviceNumber", "status = 1 AND org_id = ?", orgID).
  35. Preload("TreatmentSummary", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  36. Preload("AssessmentAfterDislysis", "status = 1 AND user_org_id = ? AND assessment_date = ?", orgID, scheduleDate).
  37. Preload("HisAdvices", "status = 1 AND user_org_id = ? AND advice_date = ? ", orgID, scheduleDate).
  38. // Preload("DialysisOrder.MonitoringRecords", func(rdb *gorm.DB) *gorm.DB {
  39. // return rdb.Where("status = 1 AND user_org_id = ?", orgID).Order("operate_time DESC")
  40. // }).
  41. Where("sch.status = 1 AND sch.user_org_id = ?", orgID)
  42. if scheduleDate != 0 {
  43. db = db.Where("schedule_date = ?", scheduleDate)
  44. }
  45. if scheduleType != 0 {
  46. db = db.Where("schedule_type = ?", scheduleType)
  47. }
  48. err := db.Find(&vms).Error
  49. return vms, err
  50. }
  51. func MobileGetWaitingScheduals(orgID int64, scheduleDate int64) ([]*MDialysisScheduleVM, error) {
  52. var vms []*MDialysisScheduleVM
  53. db := readDb.
  54. Table("xt_schedule as sch").
  55. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  56. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  57. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  58. // Preload("DeviceZone", "status = 1 AND org_id = ?", orgID).
  59. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  60. Preload("AssessmentBeforeDislysis", "status = 1 AND user_org_id = ? AND assessment_date = ? ", orgID, scheduleDate).
  61. Preload("DialysisOrder", "status = 1 AND user_org_id = ?", orgID).
  62. Preload("Advices", "status = 1 AND user_org_id = ? AND advice_type = 2 ", orgID).
  63. Preload("TreatmentMode", "status = 1").
  64. Preload("TreatmentSummary", "status = 1 AND user_org_id = ?", orgID).
  65. Where("sch.status = 1 AND sch.user_org_id = ?", orgID)
  66. if scheduleDate != 0 {
  67. db = db.Where("schedule_date = ?", scheduleDate)
  68. }
  69. err := db.Find(&vms).Error
  70. return vms, err
  71. }
  72. type VMTreatmentSummary struct {
  73. ID int64 `gorm:"column:id" json:"id"`
  74. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  75. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  76. AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date"`
  77. DialysisSummary string `gorm:"column:dialysis_summary" json:"dialysis_summary" form:"dialysis_summary"`
  78. }
  79. func (VMTreatmentSummary) TableName() string {
  80. return "xt_treatment_summary"
  81. }
  82. type AssessmentAfterDislysis struct {
  83. ID int64 `gorm:"column:id" json:"id"`
  84. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  85. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  86. AssessmentDate int64 `gorm:"column:assessment_date" json:"assessment_date"`
  87. WeightAfter float64 `gorm:"column:weight_after" json:"weight_after"`
  88. Status int64 `gorm:"column:status" json:"status"`
  89. }
  90. func (AssessmentAfterDislysis) TableName() string {
  91. return "xt_assessment_after_dislysis"
  92. }
  93. type MDialysisScheduleVM struct {
  94. ID int64 `gorm:"column:id" json:"id"`
  95. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  96. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  97. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  98. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  99. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  100. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  101. ScheduleWeek int64 `gorm:"column:schedule_week" json:"schedule_week"`
  102. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  103. Status int64 `gorm:"column:status" json:"status"`
  104. SchedualPatient *MSchedualPatientVMList `gorm:"ForeignKey:PatientId" json:"patient"`
  105. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  106. DialysisOrder *MDialysisOrderVMList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysis_order"`
  107. Prescription *models.DialysisPrescriptionList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  108. AssessmentBeforeDislysis *models.PredialysisEvaluationList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"assessment_before_dislysis"`
  109. AssessmentAfterDislysis *AssessmentAfterDislysis `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"assessment_after_dislysis"`
  110. HisAdvices []*VMHisDoctorAdviceInfo `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"his_doctor_advice"`
  111. Advices []*VMDoctorAdvice `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  112. TreatmentSummary *VMTreatmentSummary `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"treatment_summary"`
  113. }
  114. func (MDialysisScheduleVM) TableName() string {
  115. return "xt_schedule"
  116. }
  117. type MDeviceNumberVM struct {
  118. models.DeviceNumber
  119. Zone *models.DeviceZone `gorm:"ForeignKey:ZoneID" json:"zone"`
  120. }
  121. func (MDeviceNumberVM) TableName() string {
  122. return "xt_device_number"
  123. }
  124. type MSchedualPatientVMList struct {
  125. ID int64 `gorm:"column:id" json:"id" form:"id"`
  126. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  127. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  128. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  129. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  130. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  131. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  132. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  133. Age int64 `gorm:"column:age" json:"age"`
  134. Name string `gorm:"column:name" json:"name" form:"name"`
  135. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  136. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  137. }
  138. func (MSchedualPatientVMList) TableName() string {
  139. return "xt_patients"
  140. }
  141. type MSchedualPatientVM struct {
  142. ID int64 `gorm:"column:id" json:"id" form:"id"`
  143. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  144. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  145. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  146. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  147. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  148. AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
  149. Source int64 `gorm:"column:source" json:"source" form:"source"`
  150. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  151. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  152. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  153. Name string `gorm:"column:name" json:"name" form:"name"`
  154. Alias string `gorm:"column:alias" json:"alias" form:"alias"`
  155. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  156. Nation string `gorm:"column:nation" json:"nation" form:"nation"`
  157. NativePlace string `gorm:"column:native_place" json:"native_place" form:"native_place"`
  158. MaritalStatus int64 `gorm:"column:marital_status" json:"marital_status" form:"marital_status"`
  159. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  160. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  161. ReimbursementWayId int64 `gorm:"column:reimbursement_way_id" json:"reimbursement_way_id" form:"reimbursement_way_id"`
  162. HealthCareType int64 `gorm:"column:health_care_type" json:"health_care_type" form:"health_care_type"`
  163. HealthCareNo string `gorm:"column:health_care_no" json:"health_care_no" form:"health_care_no"`
  164. HealthCareDueDate int64 `gorm:"column:health_care_due_date" json:"health_care_due_date" form:"health_care_due_date"`
  165. Height int64 `gorm:"column:height" json:"height" form:"height"`
  166. BloodType int64 `gorm:"column:blood_type" json:"blood_type" form:"blood_type"`
  167. Rh int64 `gorm:"column:rh" json:"rh" form:"rh"`
  168. HealthCareDueAlertDate int64 `gorm:"column:health_care_due_alert_date" json:"health_care_due_alert_date" form:"health_care_due_alert_date"`
  169. EducationLevel int64 `gorm:"column:education_level" json:"education_level" form:"education_level"`
  170. Profession int64 `gorm:"column:profession" json:"profession" form:"profession"`
  171. Phone string `gorm:"column:phone" json:"phone" form:"phone"`
  172. HomeTelephone string `gorm:"column:home_telephone" json:"home_telephone" form:"home_telephone"`
  173. RelativePhone string `gorm:"column:relative_phone" json:"relative_phone" form:"relative_phone"`
  174. RelativeRelations string `gorm:"column:relative_relations" json:"relative_relations" form:"relative_relations"`
  175. HomeAddress string `gorm:"column:home_address" json:"home_address" form:"home_address"`
  176. WorkUnit string `gorm:"column:work_unit" json:"work_unit" form:"work_unit"`
  177. UnitAddress string `gorm:"column:unit_address" json:"unit_address" form:"unit_address"`
  178. Children int64 `gorm:"column:children" json:"children" form:"children"`
  179. ReceivingDate int64 `gorm:"column:receiving_date" json:"receiving_date" form:"receiving_date"`
  180. IsHospitalFirstDialysis int64 `gorm:"column:is_hospital_first_dialysis" json:"is_hospital_first_dialysis" form:"is_hospital_first_dialysis"`
  181. FirstDialysisDate int64 `gorm:"column:first_dialysis_date" json:"first_dialysis_date" form:"first_dialysis_date"`
  182. FirstDialysisHospital string `gorm:"column:first_dialysis_hospital" json:"first_dialysis_hospital" form:"first_dialysis_hospital"`
  183. InductionPeriod int64 `gorm:"column:induction_period" json:"induction_period" form:"induction_period"`
  184. InitialDialysis int64 `gorm:"column:initial_dialysis" json:"initial_dialysis" form:"initial_dialysis"`
  185. TotalDialysis int64 `gorm:"column:total_dialysis" json:"total_dialysis" form:"total_dialysis"`
  186. AttendingDoctorId int64 `gorm:"column:attending_doctor_id" json:"attending_doctor_id" form:"attending_doctor_id"`
  187. HeadNurseId int64 `gorm:"column:head_nurse_id" json:"head_nurse_id" form:"head_nurse_id"`
  188. Evaluate string `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
  189. Diagnose string `gorm:"column:diagnose" json:"diagnose" form:"diagnose"`
  190. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  191. RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
  192. Registrars string `gorm:"column:registrars" json:"registrars" form:"registrars"`
  193. QrCode string `gorm:"column:qr_code" json:"qr_code" form:"qr_code"`
  194. BindingState int64 `gorm:"column:binding_state" json:"binding_state" form:"binding_state"`
  195. PatientComplains string `gorm:"column:patient_complains" json:"patient_complains"` // 主诉
  196. PresentHistory string `gorm:"column:present_history" json:"present_history"` // 现病史
  197. PastHistory string `gorm:"column:past_history" json:"past_history"` // 既往史
  198. Temperature float64 `gorm:"column:temperature" json:"temperature"` // 体格检查-体温
  199. Pulse int64 `gorm:"column:pulse" json:"pulse"` // 体格检查-脉搏
  200. Respiratory int64 `gorm:"column:respiratory" json:"respiratory"` // 体格检查-呼吸频率
  201. SBP int64 `gorm:"column:sbp" json:"sbp"` // 体格检查-收缩压
  202. DBP int64 `gorm:"column:dbp" json:"dbp"` // 体格检查-舒张压
  203. Status int64 `gorm:"column:status" json:"status" form:"status"`
  204. Age int64 `gorm:"column:age" json:"age"`
  205. IsOpenRemind int64 `gorm:"column:is_open_remind" json:"is_open_remind"`
  206. DialysisAge int64 `gorm:"column:dialysis_age" json:"dialysis_age" form:"dialysis_age"`
  207. ExpenseKind int64 `gorm:"column:expense_kind" json:"expense_kind" form:"expense_kind"`
  208. TellPhone string `gorm:"column:tell_phone" json:"tell_phone" form:"tell_phone"`
  209. FirstTreatmentDate int64 `gorm:"column:first_treatment_date" json:"first_treatment_date" form:"first_treatment_date"`
  210. ContactName string `gorm:"column:contact_name" json:"contact_name" form:"contact_name"`
  211. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  212. }
  213. func (MSchedualPatientVM) TableName() string {
  214. return "xt_patients"
  215. }
  216. type MDialysisOrderVM struct {
  217. ID int64 `gorm:"column:id" json:"id"`
  218. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
  219. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  220. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  221. // PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id"`
  222. Stage int64 `gorm:"column:stage" json:"stage"`
  223. // Remark string `gorm:"column:remark" json:"remark"`
  224. BedID int64 `gorm:"column:bed_id" json:"bed_id"`
  225. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse"`
  226. FinishNurse int64 `gorm:"column:finish_nurse" json:"finish_nurse"`
  227. Status int64 `gorm:"column:status" json:"status"`
  228. PunctureNurse int64 `gorm:"column:puncture_nurse" json:"puncture_nurse"`
  229. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedID" json:"device_number"`
  230. MonitoringRecords []*models.MonitoringRecord `gorm:"ForeignKey:DialysisOrderId" json:"monitoring_records"`
  231. Creator int64 `gorm:"column:creator" json:"creator"`
  232. Modifier int64 `gorm:"column:modifier" json:"modifier"`
  233. FinishCreator int64 `gorm:"column:finish_creator" json:"finish_creator"`
  234. FinishModifier int64 `gorm:"column:finish_modifier" json:"finish_modifier"`
  235. SchedualType int64 `gorm:"column:schedual_type" json:"schedual_type"`
  236. WashpipeNurse int64 `gorm:"column:washpipe_nurse" json:"washpipe_nurse" form:"washpipe_nurse"`
  237. }
  238. func (MDialysisOrderVM) TableName() string {
  239. return "xt_dialysis_order"
  240. }
  241. type MDialysisOrderVMList struct {
  242. ID int64 `gorm:"column:id" json:"id"`
  243. DialysisDate int64 `gorm:"column:dialysis_date" json:"dialysis_date"`
  244. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  245. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  246. // PrescriptionId int64 `gorm:"column:prescription_id" json:"prescription_id"`
  247. Stage int64 `gorm:"column:stage" json:"stage"`
  248. // Remark string `gorm:"column:remark" json:"remark"`
  249. BedID int64 `gorm:"column:bed_id" json:"bed_id"`
  250. StartNurse int64 `gorm:"column:start_nurse" json:"start_nurse"`
  251. Status int64 `gorm:"column:status" json:"status"`
  252. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedID" json:"device_number"`
  253. Creator int64 `gorm:"column:creator" json:"creator"`
  254. WashpipeNurse int64 `gorm:"column:washpipe_nurse" json:"washpipe_nurse" form:"washpipe_nurse"`
  255. }
  256. func (MDialysisOrderVMList) TableName() string {
  257. return "xt_dialysis_order"
  258. }
  259. type VMDoctorAdvice struct {
  260. ID int64 `gorm:"column:id" json:"id" form:"id"`
  261. GroupNo int64 `gorm:"column:groupno" json:"groupno" form:"groupno"`
  262. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  263. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  264. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
  265. Status int64 `gorm:"column:status" json:"status" form:"status"`
  266. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
  267. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  268. CheckTime int64 `gorm:"column:check_time" json:"check_time" form:"check_time"`
  269. CheckState int64 `gorm:"column:check_state" json:"check_state" form:"check_state"`
  270. }
  271. func (VMDoctorAdvice) TableName() string {
  272. return "xt_doctor_advice"
  273. }
  274. type VMHisDoctorAdviceInfo struct {
  275. ID int64 `gorm:"column:id" json:"id" form:"id"`
  276. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  277. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  278. HisPatientId int64 `gorm:"column:his_patient_id" json:"his_patient_id" form:"his_patient_id"`
  279. ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time" form:"execution_time"`
  280. ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff" form:"execution_staff"`
  281. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
  282. }
  283. func (VMHisDoctorAdviceInfo) TableName() string {
  284. return "his_doctor_advice_info"
  285. }
  286. // 获取透析记录
  287. func MobileGetDialysisRecord(orgID int64, patientID int64, recordDate int64) (*models.DialysisOrder, error) {
  288. var record models.DialysisOrder
  289. err := readDb.Model(&models.DialysisOrder{}).Where("user_org_id = ? AND patient_id = ? AND dialysis_date = ?", orgID, patientID, recordDate).First(&record).Error
  290. if err != nil {
  291. if err == gorm.ErrRecordNotFound {
  292. return nil, nil
  293. } else {
  294. return nil, err
  295. }
  296. }
  297. return &record, nil
  298. }
  299. // 用户基本信息
  300. func MobileGetPatientDetail(orgID int64, patientID int64) (*MPatient, error) {
  301. var patient MPatient
  302. err := readDb.Model(&MPatient{}).Where("status = 1 AND user_org_id = ? AND id = ?", orgID, patientID).First(&patient).Error
  303. if err != nil {
  304. if err == gorm.ErrRecordNotFound {
  305. return nil, nil
  306. } else {
  307. return nil, err
  308. }
  309. }
  310. return &patient, nil
  311. }
  312. // 用户排班信息
  313. func MobileGetSchedualDetail(orgID int64, patientID int64, schedualDate int64) (*MDialysisScheduleVM, error) {
  314. var vm MDialysisScheduleVM
  315. err := readDb.
  316. Table("xt_schedule").
  317. // Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  318. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  319. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND patient_id = ?", orgID, schedualDate, patientID).
  320. First(&vm).Error
  321. if err != nil {
  322. if err == gorm.ErrRecordNotFound {
  323. return nil, nil
  324. } else {
  325. return nil, err
  326. }
  327. }
  328. return &vm, err
  329. }
  330. // 用户排班信息
  331. func MobileGetPatientSchedual(orgID int64, patientID int64, schedualDate int64) (*models.Schedule, error) {
  332. var schedule models.Schedule
  333. err := readDb.
  334. Table("xt_schedule").
  335. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND patient_id = ?", orgID, schedualDate, patientID).
  336. First(&schedule).Error
  337. if err != nil {
  338. if err == gorm.ErrRecordNotFound {
  339. return nil, nil
  340. } else {
  341. return nil, err
  342. }
  343. }
  344. return &schedule, nil
  345. }
  346. type MPatient struct {
  347. ID int64 `gorm:"column:id" json:"id" form:"id"`
  348. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  349. UserId int64 `gorm:"column:user_id" json:"user_id" form:"user_id"`
  350. PatientType int64 `gorm:"column:patient_type" json:"patient_type" form:"patient_type"`
  351. Avatar string `gorm:"column:avatar" json:"avatar" form:"avatar"`
  352. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no" form:"dialysis_no"`
  353. AdmissionNumber string `gorm:"column:admission_number" json:"admission_number" form:"admission_number"`
  354. Source int64 `gorm:"column:source" json:"source" form:"source"`
  355. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  356. PartitionId int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
  357. BedId int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
  358. Name string `gorm:"column:name" json:"name" form:"name"`
  359. Alias string `gorm:"column:alias" json:"alias" form:"alias"`
  360. Gender int64 `gorm:"column:gender" json:"gender" form:"gender"`
  361. Nation string `gorm:"column:nation" json:"nation" form:"nation"`
  362. NativePlace string `gorm:"column:native_place" json:"native_place" form:"native_place"`
  363. MaritalStatus int64 `gorm:"column:marital_status" json:"marital_status" form:"marital_status"`
  364. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  365. Birthday int64 `gorm:"column:birthday" json:"birthday" form:"birthday"`
  366. ReimbursementWayId int64 `gorm:"column:reimbursement_way_id" json:"reimbursement_way_id" form:"reimbursement_way_id"`
  367. HealthCareType int64 `gorm:"column:health_care_type" json:"health_care_type" form:"health_care_type"`
  368. HealthCareNo string `gorm:"column:health_care_no" json:"health_care_no" form:"health_care_no"`
  369. HealthCareDueDate int64 `gorm:"column:health_care_due_date" json:"health_care_due_date" form:"health_care_due_date"`
  370. Height int64 `gorm:"column:height" json:"height" form:"height"`
  371. BloodType int64 `gorm:"column:blood_type" json:"blood_type" form:"blood_type"`
  372. Rh int64 `gorm:"column:rh" json:"rh" form:"rh"`
  373. HealthCareDueAlertDate int64 `gorm:"column:health_care_due_alert_date" json:"health_care_due_alert_date" form:"health_care_due_alert_date"`
  374. EducationLevel int64 `gorm:"column:education_level" json:"education_level" form:"education_level"`
  375. Profession int64 `gorm:"column:profession" json:"profession" form:"profession"`
  376. Phone string `gorm:"column:phone" json:"phone" form:"phone"`
  377. HomeTelephone string `gorm:"column:home_telephone" json:"home_telephone" form:"home_telephone"`
  378. RelativePhone string `gorm:"column:relative_phone" json:"relative_phone" form:"relative_phone"`
  379. RelativeRelations string `gorm:"column:relative_relations" json:"relative_relations" form:"relative_relations"`
  380. HomeAddress string `gorm:"column:home_address" json:"home_address" form:"home_address"`
  381. WorkUnit string `gorm:"column:work_unit" json:"work_unit" form:"work_unit"`
  382. UnitAddress string `gorm:"column:unit_address" json:"unit_address" form:"unit_address"`
  383. Children int64 `gorm:"column:children" json:"children" form:"children"`
  384. ReceivingDate int64 `gorm:"column:receiving_date" json:"receiving_date" form:"receiving_date"`
  385. IsHospitalFirstDialysis int64 `gorm:"column:is_hospital_first_dialysis" json:"is_hospital_first_dialysis" form:"is_hospital_first_dialysis"`
  386. FirstDialysisDate int64 `gorm:"column:first_dialysis_date" json:"first_dialysis_date" form:"first_dialysis_date"`
  387. FirstDialysisHospital string `gorm:"column:first_dialysis_hospital" json:"first_dialysis_hospital" form:"first_dialysis_hospital"`
  388. InductionPeriod int64 `gorm:"column:induction_period" json:"induction_period" form:"induction_period"`
  389. InitialDialysis int64 `gorm:"column:initial_dialysis" json:"initial_dialysis" form:"initial_dialysis"`
  390. TotalDialysis int64 `gorm:"column:total_dialysis" json:"total_dialysis" form:"total_dialysis"`
  391. AttendingDoctorId int64 `gorm:"column:attending_doctor_id" json:"attending_doctor_id" form:"attending_doctor_id"`
  392. HeadNurseId int64 `gorm:"column:head_nurse_id" json:"head_nurse_id" form:"head_nurse_id"`
  393. Evaluate string `gorm:"column:evaluate" json:"evaluate" form:"evaluate"`
  394. Diagnose string `gorm:"column:diagnose" json:"diagnose" form:"diagnose"`
  395. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  396. RegistrarsId int64 `gorm:"column:registrars_id" json:"registrars_id" form:"registrars_id"`
  397. Registrars string `gorm:"column:registrars" json:"registrars" form:"registrars"`
  398. QrCode string `gorm:"column:qr_code" json:"qr_code" form:"qr_code"`
  399. BindingState int64 `gorm:"column:binding_state" json:"binding_state" form:"binding_state"`
  400. PatientComplains string `gorm:"column:patient_complains" json:"patient_complains"` // 主诉
  401. PresentHistory string `gorm:"column:present_history" json:"present_history"` // 现病史
  402. PastHistory string `gorm:"column:past_history" json:"past_history"` // 既往史
  403. Temperature float64 `gorm:"column:temperature" json:"temperature"` // 体格检查-体温
  404. Pulse int64 `gorm:"column:pulse" json:"pulse"` // 体格检查-脉搏
  405. Respiratory int64 `gorm:"column:respiratory" json:"respiratory"` // 体格检查-呼吸频率
  406. SBP int64 `gorm:"column:sbp" json:"sbp"` // 体格检查-收缩压
  407. DBP int64 `gorm:"column:dbp" json:"dbp"` // 体格检查-舒张压
  408. Status int64 `gorm:"column:status" json:"status" form:"status"`
  409. Age int64 `gorm:"column:age" json:"age"`
  410. IsOpenRemind int64 `gorm:"column:is_open_remind" json:"is_open_remind"`
  411. CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
  412. DialysisAge int64 `gorm:"column:dialysis_age" json:"dialysis_age" form:"dialysis_age"`
  413. ExpenseKind int64 `gorm:"column:expense_kind" json:"expense_kind" form:"expense_kind"`
  414. TellPhone string `gorm:"column:tell_phone" json:"tell_phone" form:"tell_phone"`
  415. FirstTreatmentDate int64 `gorm:"column:first_treatment_date" json:"first_treatment_date" form:"first_treatment_date"`
  416. ContactName string `gorm:"column:contact_name" json:"contact_name" form:"contact_name"`
  417. UserSysBeforeCount int64 `gorm:"column:user_sys_before_count" json:"user_sys_before_count" form:"user_sys_before_count"`
  418. }
  419. func (MPatient) TableName() string {
  420. return "xt_patients"
  421. }
  422. // 接诊评估
  423. func MobileGetReceiverTreatmentAccessRecord(orgID int64, patientID int64, recordDate int64) (*models.ReceiveTreatmentAsses, error) {
  424. var record models.ReceiveTreatmentAsses
  425. err = readDb.Model(&models.ReceiveTreatmentAsses{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  426. if err != nil {
  427. if err == gorm.ErrRecordNotFound {
  428. return nil, nil
  429. } else {
  430. return nil, err
  431. }
  432. }
  433. return &record, nil
  434. }
  435. // 透前评估
  436. func MobileGetPredialysisEvaluation(orgID int64, patientID int64, recordDate int64) (*models.PredialysisEvaluation, error) {
  437. fmt.Println("recordDate", recordDate)
  438. var record models.PredialysisEvaluation
  439. err := readDb.Model(&models.PredialysisEvaluation{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  440. if err != nil {
  441. if err == gorm.ErrRecordNotFound {
  442. return nil, nil
  443. } else {
  444. return nil, err
  445. }
  446. }
  447. return &record, nil
  448. }
  449. // 获取 maxDate 之前一次的透前评估记录
  450. func MobileGetLastTimePredialysisEvaluation(orgID int64, patientID int64, maxDate int64) (*models.PredialysisEvaluation, error) {
  451. var record models.PredialysisEvaluation
  452. 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
  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 MobileGetDoctorAdvices(orgID int64, patientID int64, recordDate int64) ([]*models.DoctorAdvice, error) {
  464. var records []*models.DoctorAdvice
  465. // err := readDb.Model(&models.DoctorAdvice{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).Find(&records).Error
  466. err := readDb.
  467. Model(&models.DoctorAdvice{}).
  468. Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ? and (advice_type = 2 or advice_type = 3)", patientID, orgID, recordDate).
  469. 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,way,drug_id,drug_name_id,IF(parent_id>0, parent_id, id) as advice_order,groupno").
  470. Order("start_time asc, groupno desc, advice_order desc, id").
  471. Scan(&records).Error
  472. if err != nil {
  473. return nil, err
  474. }
  475. return records, nil
  476. }
  477. func MobileGetDoctorAdvicesByGroups(orgID int64, patientID int64, recordDate int64) ([]*models.DoctorAdvice, error) {
  478. var records []*models.DoctorAdvice
  479. // err := readDb.Model(&models.DoctorAdvice{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).Find(&records).Error
  480. err := readDb.
  481. Model(&models.DoctorAdvice{}).
  482. Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ? and advice_type = 2", patientID, orgID, recordDate).
  483. 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,way,drug_id,drug_name_id, IF(parent_id > 0, parent_id, id) as advice_order").
  484. Order("start_time asc, groupno desc, advice_order desc, id asc").
  485. Scan(&records).Error
  486. if err != nil {
  487. return nil, err
  488. }
  489. return records, nil
  490. }
  491. // 透析记录
  492. func MobileGetSchedualDialysisRecord(orgID int64, patientID int64, recordDate int64) (*models.DialysisOrder, error) {
  493. var record models.DialysisOrder
  494. 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
  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 MobileGetDoubleCheck(orgID int64, patientID int64, recordDate int64) (*models.DoubleCheck, error) {
  506. var record models.DoubleCheck
  507. err := readDb.Model(&models.DoubleCheck{}).Where("patient_id = ? and user_org_id = ? and status = 1 and check_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. // 透析监测记录
  518. func MobileGetMonitorRecords(orgID int64, patientID int64, recordDate int64) ([]*models.MonitoringRecord, error) {
  519. var records []*models.MonitoringRecord
  520. 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
  521. if err != nil {
  522. return nil, err
  523. }
  524. return records, nil
  525. }
  526. func MobileGetMonitorRecordFirst(orgID int64, patientID int64, recordDate int64) (*models.MonitoringRecord, error) {
  527. var records models.MonitoringRecord
  528. 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
  529. if err != nil {
  530. return nil, err
  531. }
  532. return &records, nil
  533. }
  534. func MobileGetLastMonitorRecord(orgID int64, patientID int64, beforeDate int64) (*models.MonitoringRecord, error) {
  535. var record models.MonitoringRecord
  536. 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
  537. if err != nil {
  538. if err == gorm.ErrRecordNotFound {
  539. return nil, nil
  540. } else {
  541. return nil, err
  542. }
  543. }
  544. return &record, nil
  545. }
  546. // 透后评估
  547. func MobileGetAssessmentAfterDislysis(orgID int64, patientID int64, recordDate int64) (*models.AssessmentAfterDislysis, error) {
  548. var record models.AssessmentAfterDislysis
  549. err := readDb.Model(&models.AssessmentAfterDislysis{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  550. if err != nil {
  551. if err == gorm.ErrRecordNotFound {
  552. return nil, nil
  553. } else {
  554. return nil, err
  555. }
  556. }
  557. return &record, nil
  558. }
  559. // 获取 maxDate 之前一次的透后评估记录
  560. func MobileGetLastTimeAssessmentAfterDislysis(orgID int64, patientID int64, maxDate int64) (*models.AssessmentAfterDislysis, error) {
  561. var record models.AssessmentAfterDislysis
  562. 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
  563. if err != nil {
  564. if err == gorm.ErrRecordNotFound {
  565. return nil, nil
  566. } else {
  567. return nil, err
  568. }
  569. }
  570. return &record, nil
  571. }
  572. func MobileGetLast(orgID int64, patientID int64, maxDate int64) (models.AssessmentAfterDislysis, error) {
  573. dislysis := models.AssessmentAfterDislysis{}
  574. 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
  575. return dislysis, err
  576. }
  577. // 治疗小结
  578. func MobileGetTreatmentSummary(orgID int64, patientID int64, recordDate int64) (*models.TreatmentSummary, error) {
  579. var record models.TreatmentSummary
  580. err := readDb.Model(&models.TreatmentSummary{}).Where("patient_id = ? and user_org_id = ? and status = 1 and assessment_date = ?", patientID, orgID, recordDate).First(&record).Error
  581. if err != nil {
  582. if err == gorm.ErrRecordNotFound {
  583. return nil, nil
  584. } else {
  585. return nil, err
  586. }
  587. }
  588. return &record, nil
  589. }
  590. // 透析处方
  591. func MobileGetDialysisPrescribe(orgID int64, patientID int64, recordDate int64) (*models.DialysisPrescription, error) {
  592. var record models.DialysisPrescription
  593. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  594. if err != nil {
  595. if err == gorm.ErrRecordNotFound {
  596. return nil, nil
  597. } else {
  598. return nil, err
  599. }
  600. }
  601. return &record, nil
  602. }
  603. func MobileGetDialysisSchedual(orgID int64, patientID int64, scheduleDate int64) (*models.XtSchedule, error) {
  604. var schedule models.XtSchedule
  605. err := readDb.Model(&models.XtSchedule{}).Where("patient_id = ? and user_org_id = ? and status = 1 and schedule_date = ?", patientID, orgID, scheduleDate).First(&schedule).Error
  606. if err != nil {
  607. if err == gorm.ErrRecordNotFound {
  608. return nil, nil
  609. } else {
  610. return nil, err
  611. }
  612. }
  613. return &schedule, nil
  614. }
  615. // 透析方案
  616. func MobileGetDialysisSolution(orgID int64, patientID int64) (*models.DialysisSolution, error) {
  617. var record models.DialysisSolution
  618. err := readDb.Model(&models.DialysisSolution{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  619. if err != nil {
  620. if err == gorm.ErrRecordNotFound {
  621. return nil, nil
  622. } else {
  623. return nil, err
  624. }
  625. }
  626. return &record, nil
  627. }
  628. func MobileGetPatientById(orgID int64, patientID int64) (*models.Patients, error) {
  629. var patient models.Patients
  630. err := readDb.Model(&models.Patients{}).Where("id = ? and user_org_id = ? and status = 1", patientID, orgID).First(&patient).Error
  631. if err != nil {
  632. if err == gorm.ErrRecordNotFound {
  633. return nil, nil
  634. } else {
  635. return nil, err
  636. }
  637. }
  638. return &patient, nil
  639. }
  640. func DisableMonitor(orgID int64, patientID int64, recordID int64, admin_user_id int64) error {
  641. fmt.Println()
  642. tx := writeDb.Begin()
  643. updateTime := time.Now().Unix()
  644. 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
  645. if err != nil {
  646. tx.Rollback()
  647. return err
  648. }
  649. tx.Commit()
  650. return nil
  651. }
  652. func GetMonitor(orgID int64, patientID int64, id int64) (*models.MonitoringRecord, error) {
  653. var monitor models.MonitoringRecord
  654. var err error
  655. err = readDb.Model(&models.MonitoringRecord{}).Where("id = ? AND user_org_id = ? AND patient_id = ? AND status = 1 ", id, orgID, patientID).Find(&monitor).Error
  656. if err == gorm.ErrRecordNotFound {
  657. return nil, nil
  658. }
  659. if err != nil {
  660. return nil, err
  661. }
  662. return &monitor, nil
  663. }
  664. type MScheduleDoctorAdviceVM struct {
  665. ID int64 `gorm:"column:id" json:"id"`
  666. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  667. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  668. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  669. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  670. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  671. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  672. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  673. Status int64 `gorm:"column:status" json:"status"`
  674. DialysisOrder *MDialysisOrderVM `gorm:"ForeignKey:DialysisDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"dialysis_order"`
  675. SchedualPatient *MSchedualPatientVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
  676. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  677. DoctorAdvices []*MDoctorAdviceVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  678. Prescription *models.DialysisPrescriptionList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  679. DialysisAssesmentBefor *models.DialysisAssesmentBefor `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"dialysisassesmentbefor"`
  680. }
  681. func (MScheduleDoctorAdviceVM) TableName() string {
  682. return "xt_schedule"
  683. }
  684. type MDoctorAdviceVM struct {
  685. ID int64 `gorm:"column:id" json:"id"`
  686. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  687. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  688. AdviceType int64 `gorm:"column:advice_type" json:"advice_type"`
  689. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date"`
  690. StartTime int64 `gorm:"column:start_time" json:"start_time"`
  691. AdviceName string `gorm:"column:advice_name" json:"advice_name"`
  692. AdviceDesc string `gorm:"column:advice_desc" json:"advice_desc"`
  693. ReminderDate int64 `gorm:"column:reminder_date" json:"reminder_date"`
  694. SingleDose float64 `gorm:"column:single_dose" json:"single_dose"`
  695. SingleDoseUnit string `gorm:"column:single_dose_unit" json:"single_dose_unit"`
  696. PrescribingNumber float64 `gorm:"column:prescribing_number" json:"prescribing_number"`
  697. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit"`
  698. DeliveryWay string `gorm:"column:delivery_way" json:"delivery_way"`
  699. ExecutionFrequency string `gorm:"column:execution_frequency" json:"execution_frequency"`
  700. AdviceDoctor int64 `gorm:"column:advice_doctor" json:"advice_doctor"`
  701. Status int64 `gorm:"column:status" json:"status"`
  702. CreatedTime int64 `gorm:"column:created_time" json:"created_time"`
  703. UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time"`
  704. AdviceAffirm string `gorm:"column:advice_affirm" json:"advice_affirm"`
  705. Remark string `gorm:"column:remark" json:"remark"`
  706. StopTime int64 `gorm:"column:stop_time" json:"stop_time"`
  707. StopReason string `gorm:"column:stop_reason" json:"stop_reason"`
  708. StopDoctor int64 `gorm:"column:stop_doctor" json:"stop_doctor"`
  709. StopState int64 `gorm:"column:stop_state" json:"stop_state"`
  710. ParentId int64 `gorm:"column:parent_id" json:"parent_id"`
  711. ExecutionTime int64 `gorm:"column:execution_time" json:"execution_time"`
  712. ExecutionStaff int64 `gorm:"column:execution_staff" json:"execution_staff"`
  713. ExecutionState int64 `gorm:"column:execution_state" json:"execution_state"`
  714. Checker int64 `gorm:"column:checker" json:"checker"`
  715. RecordDate int64 `gorm:"column:record_date" json:"record_date"`
  716. DialysisOrderId int64 `gorm:"column:dialysis_order_id" json:"dialysis_order_id"`
  717. CheckTime int64 `gorm:"column:check_time" json:"check_time"`
  718. CheckState int64 `gorm:"column:check_state" json:"check_state"`
  719. DrugSpec float64 `gorm:"column:drug_spec" json:"drug_spec"`
  720. DrugSpecUnit string `gorm:"column:drug_spec_unit" json:"drug_spec_unit"`
  721. Groupno int64 `gorm:"column:groupno" json:"groupno"`
  722. RemindType int64 `gorm:"column:remind_type" json:"remind_type"`
  723. FrequencyType int64 `gorm:"column:frequency_type" json:"frequency_type"`
  724. DayCount int64 `gorm:"column:day_count" json:"day_count"`
  725. WeekDay string `gorm:"column:week_day" json:"week_day"`
  726. TemplateId string `gorm:"column:template_id" json:"template_id"`
  727. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  728. }
  729. func (MDoctorAdviceVM) TableName() string {
  730. return "xt_doctor_advice"
  731. }
  732. func MobileGetScheduleDoctorAdvices(orgID int64, scheduleDate int64, adviceType int, patientType int, adminUserId int64, deliverWay string) ([]*MScheduleDoctorAdviceVM, error) {
  733. var vms []*MScheduleDoctorAdviceVM
  734. adviceWhere := ""
  735. adviceCondition := []interface{}{}
  736. if adviceType == 0 {
  737. if patientType == 0 {
  738. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1)"
  739. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  740. } else if patientType == 1 {
  741. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1)"
  742. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  743. } else if patientType == 2 {
  744. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1)"
  745. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  746. }
  747. } else if adviceType == 1 {
  748. if patientType == 0 {
  749. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? "
  750. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  751. } else if patientType == 1 {
  752. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? "
  753. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  754. } else if patientType == 2 {
  755. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0"
  756. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  757. }
  758. } else if adviceType == 3 {
  759. if patientType == 0 {
  760. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? "
  761. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  762. } else if patientType == 1 {
  763. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? "
  764. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  765. } else if patientType == 2 {
  766. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0"
  767. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  768. }
  769. } else if adviceType == 2 && len(deliverWay) > 0 {
  770. if patientType == 0 {
  771. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ?"
  772. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  773. } else if patientType == 1 {
  774. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? "
  775. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay)
  776. } else if patientType == 2 {
  777. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ?"
  778. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  779. }
  780. } else if adviceType == 2 && len(deliverWay) <= 0 {
  781. if patientType == 0 {
  782. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ?"
  783. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  784. } else if patientType == 1 {
  785. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ?"
  786. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  787. } else if patientType == 2 {
  788. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0"
  789. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  790. }
  791. }
  792. db := readDb.
  793. Table("xt_schedule").
  794. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  795. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  796. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  797. }).
  798. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  799. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  800. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  801. Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  802. Preload("DoctorAdvices", adviceCondition...).
  803. Where("status = 1 AND user_org_id = ?", orgID)
  804. if scheduleDate != 0 {
  805. db = db.Where("schedule_date = ?", scheduleDate)
  806. }
  807. err := db.Find(&vms).Error
  808. return vms, err
  809. }
  810. func GetHisDoctorAdvices(orgID int64, scheduleDate int64, deliverWay string) ([]*HisMScheduleDoctorAdviceVM, error) {
  811. var vms []*HisMScheduleDoctorAdviceVM
  812. if len(deliverWay) > 0 {
  813. db := readDb.
  814. Table("xt_schedule").
  815. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  816. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  817. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  818. }).
  819. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  820. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  821. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  822. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ?", orgID, scheduleDate, deliverWay).
  823. Where("status = 1 AND user_org_id = ?", orgID)
  824. if scheduleDate != 0 {
  825. db = db.Where("schedule_date = ?", scheduleDate)
  826. }
  827. err = db.Find(&vms).Error
  828. } else {
  829. db := readDb.
  830. Table("xt_schedule").
  831. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  832. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  833. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  834. }).
  835. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  836. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  837. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  838. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ?", orgID, scheduleDate).
  839. Where("status = 1 AND user_org_id = ?", orgID)
  840. if scheduleDate != 0 {
  841. db = db.Where("schedule_date = ?", scheduleDate)
  842. }
  843. err = db.Find(&vms).Error
  844. }
  845. return vms, err
  846. }
  847. func MobileCreateDialysisOrder(orgID int64, patientID int64, order *models.DialysisOrder) error {
  848. now := time.Now()
  849. tx := writeDb.Begin()
  850. if createOrderErr := tx.Model(&models.DialysisOrder{}).Create(order).Error; createOrderErr != nil {
  851. tx.Rollback()
  852. return createOrderErr
  853. }
  854. // 更新透析记录 ID
  855. // 透析处方
  856. 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 {
  857. tx.Rollback()
  858. return err
  859. }
  860. // 接诊评估
  861. 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, "update_time": now.Unix()}).Error; err != nil {
  862. tx.Rollback()
  863. return err
  864. }
  865. // 透前评估
  866. 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 {
  867. tx.Rollback()
  868. return err
  869. }
  870. // 临时医嘱
  871. 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 {
  872. tx.Rollback()
  873. return err
  874. }
  875. // 双人核对
  876. 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 {
  877. tx.Rollback()
  878. return err
  879. }
  880. // 透后评估
  881. 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 {
  882. tx.Rollback()
  883. return err
  884. }
  885. // 治疗小结
  886. 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 {
  887. tx.Rollback()
  888. return err
  889. }
  890. // 透析监测
  891. 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 {
  892. tx.Rollback()
  893. return err
  894. }
  895. tx.Commit()
  896. return nil
  897. }
  898. type MobileUrgentSchedulePatientVM struct {
  899. ID int64 `gorm:"column:id" json:"id"`
  900. Name string `gorm:"column:name" json:"name"`
  901. DialysisNo string `gorm:"column:dialysis_no" json:"dialysis_no"`
  902. }
  903. func (MobileUrgentSchedulePatientVM) TableName() string {
  904. return "xt_patients"
  905. }
  906. type MobileUrgentScheduleTreatmentModeVM struct {
  907. ID int64 `gorm:"column:id" json:"id"`
  908. Name string `gorm:"column:name" json:"name"`
  909. }
  910. func (MobileUrgentScheduleTreatmentModeVM) TableName() string {
  911. return "xt_treatment_mode"
  912. }
  913. func MobileGetAllPatientsForUrgentSchedule(orgID int64, record_date int64) ([]*MobileUrgentSchedulePatientVM, error) {
  914. var vms []*MobileUrgentSchedulePatientVM = make([]*MobileUrgentSchedulePatientVM, 0)
  915. 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()
  916. defer rows.Close()
  917. if err != nil {
  918. return nil, err
  919. }
  920. for rows.Next() {
  921. var vm MobileUrgentSchedulePatientVM
  922. readDb.ScanRows(rows, &vm)
  923. vms = append(vms, &vm)
  924. }
  925. return vms, nil
  926. }
  927. func MobileGetAllTrearmentModesForUrgentSchedule() ([]*MobileUrgentScheduleTreatmentModeVM, error) {
  928. var modes []*MobileUrgentScheduleTreatmentModeVM
  929. err := readDb.Model(&MobileUrgentScheduleTreatmentModeVM{}).Where("status = 1").Find(&modes).Error
  930. if err != nil {
  931. return nil, err
  932. }
  933. return modes, nil
  934. }
  935. type MobileUrgentScheduleScheduleListVM struct {
  936. ID int64 `gorm:"column:id" json:"id"`
  937. // ZoneID int64 `gorm:"column:partition_id" json:"zone_id"`
  938. DeviceNumberID int64 `gorm:"column:bed_id" json:"bed_id"`
  939. PatientID int64 `gorm:"column:patient_id" json:"patient_id"`
  940. ScheduleType int `gorm:"column:schedule_type" json:"schedule_type"`
  941. DeviceNumber *models.DeviceNumber `gorm:"ForeignKey:DeviceNumberID" json:"device_number"`
  942. // DeviceZone *models.DeviceZone `gorm:"ForeignKey:ZoneID" json:"device_zone"`
  943. }
  944. func (MobileUrgentScheduleScheduleListVM) TableName() string {
  945. return "xt_schedule"
  946. }
  947. func MobileGetSchedulesForUrgentSchedule(orgID int64, scheduleDate int64, schedule_type int) (schedules []*MobileUrgentScheduleScheduleListVM, err error) {
  948. db := readDb.
  949. Model(&MobileUrgentScheduleScheduleListVM{}).
  950. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  951. Where("status = 1 AND user_org_id = ? AND schedule_date = ? AND schedule_type = ? ", orgID, scheduleDate, schedule_type)
  952. err = db.Find(&schedules).Error
  953. if err != nil {
  954. return nil, err
  955. }
  956. return schedules, nil
  957. }
  958. func MobileGetOtherSchedulesForUrgentSchedule(orgID int64, scheduleDate int64, schedule_type int) ([]*MobileUrgentScheduleScheduleListVM, error) {
  959. var vms []*MobileUrgentScheduleScheduleListVM = make([]*MobileUrgentScheduleScheduleListVM, 0)
  960. 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()
  961. defer rows.Close()
  962. if err != nil {
  963. return nil, err
  964. }
  965. for rows.Next() {
  966. var vm MobileUrgentScheduleScheduleListVM
  967. readDb.ScanRows(rows, &vm)
  968. vms = append(vms, &vm)
  969. }
  970. return vms, nil
  971. }
  972. type MobileUrgentScheduleDeviceNumberVM struct {
  973. ID int64 `gorm:"column:id" json:"id"`
  974. Number string `gorm:"column:number" json:"number"`
  975. ZoneID int64 `gorm:"column:zone_id" json:"zone_id"`
  976. Zone *models.DeviceZone `gorm:"ForeignKey:ZoneID" json:"zone"`
  977. }
  978. func (MobileUrgentScheduleDeviceNumberVM) TableName() string {
  979. return "xt_device_number"
  980. }
  981. func MobileGetAllDeviceNumbersForUrgentSchedule(orgID int64, record_date int64, schedule_type int) ([]*DeviceNumberViewModel, error) {
  982. var vms []*DeviceNumberViewModel = make([]*DeviceNumberViewModel, 0)
  983. 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()
  984. defer rows.Close()
  985. if err != nil {
  986. return nil, err
  987. }
  988. for rows.Next() {
  989. var vm DeviceNumberViewModel
  990. readDb.ScanRows(rows, &vm)
  991. vms = append(vms, &vm)
  992. }
  993. return vms, nil
  994. //var deviceNumbers []*MobileUrgentScheduleDeviceNumberVM
  995. //db := readDb.
  996. // Model(&MobileUrgentScheduleDeviceNumberVM{}).
  997. // Preload("Zone", "status = 1 AND org_id = ?", orgID).
  998. // Where("status = 1 AND org_id = ?", orgID)
  999. //err := db.Order("zone_id asc").Find(&deviceNumbers).Error
  1000. //if err != nil {
  1001. // return nil, err
  1002. //}
  1003. //return deviceNumbers, nil
  1004. }
  1005. func GetValidScheduleMonitorRecordCount() (int64, error) {
  1006. var total int64
  1007. err := readDb.Model(&models.MonitoringRecord{}).Where("status = 1 AND operate_time = 0 AND monitoring_date <> 0").Count(&total).Error
  1008. return total, err
  1009. }
  1010. func GetTop1000ValidScheduleMonitorRecord() ([]*models.MonitoringRecord, error) {
  1011. var monitors []*models.MonitoringRecord
  1012. err := readDb.Model(&models.MonitoringRecord{}).Where("status = 1 AND operate_time = 0 AND monitoring_date <> 0").Order("id asc").Limit(100).Find(&monitors).Error
  1013. if err != nil {
  1014. return nil, err
  1015. }
  1016. return monitors, nil
  1017. }
  1018. func BatchUpdateMonitors(monitors []*models.MonitoringRecord) error {
  1019. tx := writeDb.Begin()
  1020. for index := 0; index < len(monitors); index++ {
  1021. tx.Save(monitors[index])
  1022. }
  1023. return tx.Commit().Error
  1024. }
  1025. func ModifyStartDialysisOrder(order *models.DialysisOrder) error {
  1026. tx := writeDb.Begin()
  1027. updateTime := time.Now().Unix()
  1028. 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, "washpipe_nurse": order.WashpipeNurse, "change_nurse": order.ChangeNurse, "difficult_puncture_nurse": order.DifficultPunctureNurse, "new_fistula_nurse": order.NewFistulaNurse}).Error
  1029. if err != nil {
  1030. tx.Rollback()
  1031. return err
  1032. }
  1033. tx.Commit()
  1034. return err
  1035. }
  1036. func ModifyFinishDialysisOrder(order *models.DialysisOrder) error {
  1037. tx := writeDb.Begin()
  1038. updateTime := time.Now().Unix()
  1039. 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
  1040. if err != nil {
  1041. tx.Rollback()
  1042. return err
  1043. }
  1044. tx.Commit()
  1045. return err
  1046. }
  1047. func MobileGetLastDryWeight(orgID int64, patientID int64) (*models.SgjPatientDryweight, error) {
  1048. var record models.SgjPatientDryweight
  1049. err := readDb.Model(&models.SgjPatientDryweight{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  1050. if err != nil {
  1051. if err == gorm.ErrRecordNotFound {
  1052. return nil, nil
  1053. } else {
  1054. return nil, err
  1055. }
  1056. }
  1057. return &record, nil
  1058. }
  1059. // 透析方案
  1060. func MobileGetDialysisSolutionByModeId(orgID int64, patientID int64, mode_id int64) (*models.DialysisSolution, error) {
  1061. var record models.DialysisSolution
  1062. 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
  1063. if err != nil {
  1064. if err == gorm.ErrRecordNotFound {
  1065. return nil, nil
  1066. } else {
  1067. return nil, err
  1068. }
  1069. }
  1070. return &record, nil
  1071. }
  1072. // 透析处方
  1073. func MobileGetDialysisPrescribeByModeId(orgID int64, patientID int64, recordDate int64, mode_id int64) (*models.DialysisPrescription, error) {
  1074. var record models.DialysisPrescription
  1075. 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
  1076. if err != nil {
  1077. if err == gorm.ErrRecordNotFound {
  1078. return nil, nil
  1079. } else {
  1080. return nil, err
  1081. }
  1082. }
  1083. return &record, nil
  1084. }
  1085. func MobileGetDialysisPrescribeByModeIdOne(orgID int64, patientID int64, recordDate int64) (*models.DialysisPrescription, error) {
  1086. var record models.DialysisPrescription
  1087. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  1088. if err != nil {
  1089. if err == gorm.ErrRecordNotFound {
  1090. return nil, nil
  1091. } else {
  1092. return nil, err
  1093. }
  1094. }
  1095. return &record, nil
  1096. }
  1097. func MobileGetLastDialysisPrescribe(orgID int64, patientID int64) (*models.DialysisPrescription, error) {
  1098. var record models.DialysisPrescription
  1099. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 ", patientID, orgID).Last(&record).Error
  1100. if err != nil {
  1101. if err == gorm.ErrRecordNotFound {
  1102. return nil, nil
  1103. } else {
  1104. return nil, err
  1105. }
  1106. }
  1107. return &record, nil
  1108. }
  1109. func MobileGetLastDialysisPrescribeByModeId(orgID int64, patientID int64, mode_id int64) (*models.DialysisPrescription, error) {
  1110. var record models.DialysisPrescription
  1111. 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
  1112. if err != nil {
  1113. if err == gorm.ErrRecordNotFound {
  1114. return nil, nil
  1115. } else {
  1116. return nil, err
  1117. }
  1118. }
  1119. return &record, nil
  1120. }
  1121. func GetAllAvaildDeviceNumbers(orgID int64, record_date int64, schedule_type int) ([]*DeviceNumberViewModel, error) {
  1122. var vms []*DeviceNumberViewModel = make([]*DeviceNumberViewModel, 0)
  1123. 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()
  1124. defer rows.Close()
  1125. if err != nil {
  1126. return nil, err
  1127. }
  1128. for rows.Next() {
  1129. var vm DeviceNumberViewModel
  1130. readDb.ScanRows(rows, &vm)
  1131. vms = append(vms, &vm)
  1132. }
  1133. return vms, nil
  1134. }
  1135. // 获取 maxDate 之前一次的透前评估记录
  1136. func GetLastTimePredialysisEvaluation(orgID int64, patientID int64, maxDate int64) (*models.PredialysisEvaluation, error) {
  1137. var record models.PredialysisEvaluation
  1138. 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
  1139. if err != nil {
  1140. if err == gorm.ErrRecordNotFound {
  1141. return nil, nil
  1142. } else {
  1143. return nil, err
  1144. }
  1145. }
  1146. return &record, nil
  1147. }
  1148. func GetLastTimeOrder(orgID int64, patientID int64, maxDate int64) (*models.DialysisOrder, error) {
  1149. var record models.DialysisOrder
  1150. err := readDb.Model(&models.DialysisOrder{}).Where("patient_id = ? and user_org_id = ? and status = 1 and dialysis_date < ?", patientID, orgID, maxDate).Order("dialysis_date desc").First(&record).Error
  1151. if err != nil {
  1152. if err == gorm.ErrRecordNotFound {
  1153. return nil, nil
  1154. } else {
  1155. return nil, err
  1156. }
  1157. }
  1158. return &record, nil
  1159. }
  1160. func GetLastMonitorRecord(orgID int64, patientID int64, beforeDate int64) (*models.MonitoringRecord, error) {
  1161. var record models.MonitoringRecord
  1162. 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
  1163. if err != nil {
  1164. if err == gorm.ErrRecordNotFound {
  1165. return nil, nil
  1166. } else {
  1167. return nil, err
  1168. }
  1169. }
  1170. return &record, nil
  1171. }
  1172. // 获取 maxDate 之前一次的透后评估记录
  1173. func GetLastTimeAssessmentAfterDislysis(orgID int64, patientID int64, maxDate int64) (*models.AssessmentAfterDislysis, error) {
  1174. var record models.AssessmentAfterDislysis
  1175. 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
  1176. if err != nil {
  1177. if err == gorm.ErrRecordNotFound {
  1178. return nil, nil
  1179. } else {
  1180. return nil, err
  1181. }
  1182. }
  1183. return &record, nil
  1184. }
  1185. // 透析处方
  1186. func GetDialysisPrescribe(orgID int64, patientID int64, recordDate int64) (*models.DialysisPrescription, error) {
  1187. var record models.DialysisPrescription
  1188. err := readDb.Model(&models.DialysisPrescription{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date = ?", patientID, orgID, recordDate).First(&record).Error
  1189. if err != nil {
  1190. if err == gorm.ErrRecordNotFound {
  1191. return nil, nil
  1192. } else {
  1193. return nil, err
  1194. }
  1195. }
  1196. return &record, nil
  1197. }
  1198. // 透析方案
  1199. func GetDialysisSolution(orgID int64, patientID int64, mode_id int64) (*models.DialysisSolution, error) {
  1200. var record models.DialysisSolution
  1201. 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
  1202. if err != nil {
  1203. if err == gorm.ErrRecordNotFound {
  1204. return nil, nil
  1205. } else {
  1206. return nil, err
  1207. }
  1208. }
  1209. return &record, nil
  1210. }
  1211. func GetLastDialysisPrescribeByModeId(orgID int64, patientID int64, mode_id int64) (*models.DialysisPrescription, error) {
  1212. var record models.DialysisPrescription
  1213. 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
  1214. if err != nil {
  1215. if err == gorm.ErrRecordNotFound {
  1216. return nil, nil
  1217. } else {
  1218. return nil, err
  1219. }
  1220. }
  1221. return &record, nil
  1222. }
  1223. func GetLastDryWeight(orgID int64, patientID int64) (*models.SgjPatientDryweight, error) {
  1224. var record models.SgjPatientDryweight
  1225. err := readDb.Model(&models.SgjPatientDryweight{}).Where("patient_id = ? and user_org_id = ? and status = 1", patientID, orgID).Last(&record).Error
  1226. if err != nil {
  1227. if err == gorm.ErrRecordNotFound {
  1228. return nil, nil
  1229. } else {
  1230. return nil, err
  1231. }
  1232. }
  1233. return &record, nil
  1234. }
  1235. func MobileGetSystemDialysisPrescribeByModeId(orgID int64, mode_id int64) (*models.SystemPrescription, error) {
  1236. var record models.SystemPrescription
  1237. err := readDb.Model(&models.SystemPrescription{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).First(&record).Error
  1238. if err != nil {
  1239. if err == gorm.ErrRecordNotFound {
  1240. return nil, nil
  1241. } else {
  1242. return nil, err
  1243. }
  1244. }
  1245. return &record, nil
  1246. }
  1247. func GetSystemDialysisPrescribeByModeId(orgID int64, mode_id int64) (*models.SystemPrescription, error) {
  1248. var record models.SystemPrescription
  1249. err := readDb.Model(&models.SystemPrescription{}).Where("user_org_id = ? and status = 1 AND mode_id = ?", orgID, mode_id).Last(&record).Error
  1250. if err != nil {
  1251. if err == gorm.ErrRecordNotFound {
  1252. return nil, nil
  1253. } else {
  1254. return nil, err
  1255. }
  1256. }
  1257. return &record, nil
  1258. }
  1259. func GetDialysisOrderCount(orgID int64, patient_id int64, recordDate int64) (count int64, err error) {
  1260. 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
  1261. return
  1262. }
  1263. func GetFirstDateOfMonth(d time.Time) time.Time {
  1264. d = d.AddDate(0, 0, -d.Day()+1)
  1265. return GetZeroTime(d)
  1266. }
  1267. func GetZeroTime(d time.Time) time.Time {
  1268. return time.Date(d.Year(), d.Month(), d.Day(), 0, 0, 0, 0, d.Location())
  1269. }
  1270. func GetDialysisCountByPatientId(startime int64, endtime int64, patientid int64, orgid int64) (order []*models.BloodDialysisOrderCount, err error) {
  1271. db := XTReadDB().Table("xt_dialysis_order as o")
  1272. err = db.Raw("select count(o.id) as count,o.patient_id from xt_dialysis_order as o left join xt_schedule AS x ON x.patient_id = o.patient_id where o.status = 1 and o.dialysis_date>=? and o.dialysis_date<=? and o.user_org_id = ? and x.schedule_date = o.dialysis_date and x.status = 1 and o.patient_id = ?", startime, endtime, orgid, patientid).Scan(&order).Group("o.patient_id").Error
  1273. return order, err
  1274. }
  1275. func FindConsumablesByDate(orgID int64, patient_id int64, recordDate int64) (consumables []*models.DialysisBeforePrepare, err error) {
  1276. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1 AND count<>0", orgID, patient_id, recordDate).Find(&consumables).Error
  1277. return
  1278. }
  1279. //func FindLastConsumables(orgID int64, patient_id int64, recordDate int64) (consumables []*models.DialysisBeforePrepare, err error){
  1280. // err = readDb.Model(&models.DialysisBeforePrepare{}).Where("user_org_id = ? AND patient_id = ? AND record_date = ? AND status = 1", orgID, patient_id,recordDate).Find(&consumables).Error
  1281. // return
  1282. //}
  1283. //
  1284. func GetLastTimeConsumables(orgID int64, patientID int64, maxDate int64) (prepare []*models.DialysisBeforePrepare, err error) {
  1285. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? and user_org_id = ? and status = 1 and record_date < ?", patientID, orgID, maxDate).Order("record_date desc").Find(&prepare).Error
  1286. return
  1287. }
  1288. type GoodsType struct {
  1289. ID int64 `gorm:"column:id" json:"id"`
  1290. TypeName string `gorm:"column:type_name" json:"type_name"`
  1291. Remark string `gorm:"column:remark" json:"remark"`
  1292. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  1293. Status int64 `gorm:"column:status" json:"status"`
  1294. Type int64 `gorm:"column:type" json:"type"`
  1295. }
  1296. func (GoodsType) TableName() string {
  1297. return "xt_goods_type"
  1298. }
  1299. type VMGoodInfo struct {
  1300. ID int64 `gorm:"column:id" json:"id"`
  1301. SpecificationName string `gorm:"column:specification_name" json:"specification_name"`
  1302. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
  1303. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  1304. }
  1305. func (VMGoodInfo) TableName() string {
  1306. return "xt_good_information"
  1307. }
  1308. type AutomaticReduceDetail struct {
  1309. ID int64 `gorm:"column:id" json:"id"`
  1310. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  1311. Status int64 `gorm:"column:status" json:"status"`
  1312. RecordTime int64 `gorm:"column:record_time" json:"record_time"`
  1313. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  1314. GoodId int64 `gorm:"column:good_id" json:"good_id"`
  1315. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
  1316. VMGoodInfo VMGoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"info"`
  1317. GoodsType GoodsType `gorm:"ForeignKey:GoodTypeId;AssociationForeignKey:ID" json:"type"`
  1318. Count int64 `gorm:"column:count" json:"count"`
  1319. }
  1320. func (AutomaticReduceDetail) TableName() string {
  1321. return "xt_automatic_reduce_detail"
  1322. }
  1323. type DialysisBeforePrepare struct {
  1324. ID int64 `gorm:"column:id" json:"id" form:"id"`
  1325. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  1326. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  1327. RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
  1328. GoodId int64 `gorm:"column:good_id" json:"good_id" form:"good_id"`
  1329. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id" form:"good_type_id"`
  1330. Count int64 `gorm:"column:count" json:"count" form:"count"`
  1331. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  1332. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  1333. Creater int64 `gorm:"column:creater" json:"creater" form:"creater"`
  1334. Modifier int64 `gorm:"column:modifier" json:"modifier" form:"modifier"`
  1335. VMGoodInfo VMGoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"info"`
  1336. GoodsType GoodsType `gorm:"ForeignKey:GoodTypeId;AssociationForeignKey:ID" json:"type"`
  1337. }
  1338. func (DialysisBeforePrepare) TableName() string {
  1339. return "dialysis_before_prepare"
  1340. }
  1341. type MDialysisGoodsVM struct {
  1342. ID int64 `gorm:"column:id" json:"id"`
  1343. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  1344. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  1345. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  1346. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  1347. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  1348. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  1349. ScheduleWeek int64 `gorm:"column:schedule_week" json:"schedule_week"`
  1350. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  1351. Status int64 `gorm:"column:status" json:"status"`
  1352. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  1353. SchedualPatient *MSchedualPatientVMList `gorm:"ForeignKey:PatientId" json:"patient"`
  1354. AutomaticReduceDetail []*AutomaticReduceDetail `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"good_user"`
  1355. LastAutomaticReduceDetail []*AutomaticReduceDetail `gorm:"-" json:"last_good_user"`
  1356. DialysisBeforePrepare []*DialysisBeforePrepare `gorm:"ForeignKey:PatientId,ScheduleDate;AssociationForeignKey:PatientId,RecordDate" json:"good_user_detail"`
  1357. LastDialysisBeforePrepare []*DialysisBeforePrepare `gorm:"-" json:"last_good_user_detail"`
  1358. }
  1359. func (MDialysisGoodsVM) TableName() string {
  1360. return "xt_schedule"
  1361. }
  1362. type VMWarehouseOutInfo struct {
  1363. ID int64 `gorm:"column:id" json:"id"`
  1364. WarehouseOutId int64 `gorm:"column:warehouse_out_id" json:"warehouse_out_id"`
  1365. GoodId int64 `gorm:"column:good_id" json:"good_id"`
  1366. GoodTypeId int64 `gorm:"column:good_type_id" json:"good_type_id"`
  1367. Count int64 `gorm:"column:count" json:"count"`
  1368. Price float64 `gorm:"column:price" json:"price"`
  1369. TotalPrice float64 `gorm:"column:total_price" json:"total_price"`
  1370. Status int64 `gorm:"column:status" json:"status"`
  1371. OrgId int64 `gorm:"column:org_id" json:"org_id"`
  1372. WarehouseOutOrderNumber string `gorm:"column:warehouse_out_order_number" json:"warehouse_out_order_number"`
  1373. GoodInfo VMGoodInfo `gorm:"ForeignKey:GoodId;AssociationForeignKey:ID" json:"good_info"`
  1374. GoodsType GoodsType `gorm:"ForeignKey:GoodTypeId;AssociationForeignKey:ID" json:"good_type"`
  1375. IsSys int64 `gorm:"column:is_sys" json:"is_sys"`
  1376. SysRecordTime int64 `gorm:"column:sys_record_time" json:"sys_record_time"`
  1377. Mtime int64 `gorm:"column:mtime" json:"mtime"`
  1378. Ctime int64 `gorm:"column:ctime" json:"ctime"`
  1379. }
  1380. func (VMWarehouseOutInfo) TableName() string {
  1381. return "xt_warehouse_out_info"
  1382. }
  1383. type DialysisGoodsDate struct {
  1384. RecordDate int64
  1385. }
  1386. type DialysisGoodsDetailDate struct {
  1387. RecordTime int64
  1388. }
  1389. func MobileGetDialysisGoods(orgID int64, scheduleDate int64, schedule_type int64, partition_id int64, page int, limit int, patient_id int64, keywords string, end_time int64) ([]*MDialysisGoodsVM, error, int64) {
  1390. var vms []*MDialysisGoodsVM
  1391. var total int64
  1392. db := readDb.
  1393. Table("xt_schedule as sch").
  1394. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1395. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1396. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1397. Preload("DialysisBeforePrepare", func(db *gorm.DB) *gorm.DB {
  1398. return db.Preload("VMGoodInfo", "status = 1 AND org_id = ?", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Where("status = 1 AND user_org_id = ? AND record_date = ? AND count > 0 ", orgID, scheduleDate)
  1399. }).
  1400. Preload("AutomaticReduceDetail", func(db *gorm.DB) *gorm.DB {
  1401. return db.Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Where("status = 1 AND org_id = ? AND count > 0 AND record_time >= ? AND record_time <= ? ", orgID, scheduleDate, end_time).Group("patient_id,good_id")
  1402. }).Where("sch.status = 1 AND sch.user_org_id = ?", orgID)
  1403. if scheduleDate != 0 {
  1404. db = db.Where("schedule_date = ?", scheduleDate)
  1405. }
  1406. if schedule_type != 0 {
  1407. db = db.Where("schedule_type = ?", schedule_type)
  1408. }
  1409. if partition_id != 0 {
  1410. db = db.Where("partition_id = ?", partition_id)
  1411. }
  1412. if patient_id != 0 {
  1413. db = db.Where("patient_id = ?", patient_id)
  1414. }
  1415. //db = db.Count(&total)
  1416. //offset := (page - 1) * limit
  1417. //
  1418. //db = db.Offset(offset).Limit(limit)
  1419. err := db.Find(&vms).Error
  1420. return vms, err, total
  1421. }
  1422. func GetLastDialysisGoods(patient_id int64, orgID int64, record_time int64) (goodUser []*AutomaticReduceDetail, err error) {
  1423. var Id []*DialysisGoodsDetailDate
  1424. err = readDb.Model(&AutomaticReduceDetail{}).Where("patient_id = ? AND org_id = ? AND status=1 AND record_time < ? AND count > 0", patient_id, orgID, record_time).Select("record_time").Group("record_time").Order("record_time asc").Scan(&Id).Error
  1425. if len(Id) > 0 {
  1426. err = readDb.Model(&AutomaticReduceDetail{}).Where("patient_id = ? AND org_id = ? AND status=1 AND record_time = ? AND count > 0", patient_id, orgID, Id[len(Id)-1].RecordTime).Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Find(&goodUser).Error
  1427. }
  1428. return
  1429. }
  1430. func GetLastDialysisBeforePrepare(patient_id int64, orgID int64, record_time int64) (goodUser []*DialysisBeforePrepare, err error) {
  1431. var Id []*DialysisGoodsDate
  1432. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date < ? AND count > 0", patient_id, orgID, record_time).Select("record_date").Group("record_date").Order("record_date asc").Scan(&Id).Error
  1433. if len(Id) > 0 {
  1434. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date = ? AND count > 0", patient_id, orgID, Id[len(Id)-1].RecordDate).Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Find(&goodUser).Error
  1435. }
  1436. return
  1437. }
  1438. func MobileGetGoodsStatistics(orgID int64, start_time int64, end_time int64) (list []*models.StockInfo, err error) {
  1439. db := readDb.Model(&models.StockInfo{})
  1440. db = db.Where("xt_good_information.org_id = ? AND xt_good_information.status = 1", orgID)
  1441. db = db.Joins("JOIN xt_warehouse_out_info AS info ON info.good_id=xt_good_information.id AND info.status = 1 AND info.org_id = ?", orgID).Group("xt_good_information.id")
  1442. db = db.Preload("QueryWarehouseOutInfo", func(db *gorm.DB) *gorm.DB {
  1443. return db.Where("xt_warehouse_out_info.org_id = ? AND xt_warehouse_out_info.status = 1 AND xt_warehouse_out_info.sys_record_time >= ? AND xt_warehouse_out_info.sys_record_time <= ?", orgID, start_time, end_time)
  1444. })
  1445. db = db.Preload("GoodsType", "org_id = ? AND status = 1", orgID)
  1446. err = db.Order("ctime desc").Find(&list).Error
  1447. return
  1448. }
  1449. func PCGetDialysisGoods(orgID int64, scheduleDate int64, schedule_type int64, partition_id int64, page int, limit int, patient_id int64, keywords string, end_time int64) ([]*MDialysisGoodsVM, error, int64) {
  1450. var vms []*MDialysisGoodsVM
  1451. var total int64
  1452. db := readDb.
  1453. Model(&models.Schedule{}).
  1454. Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1455. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1456. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1457. Preload("DialysisBeforePrepare", func(db *gorm.DB) *gorm.DB {
  1458. return db.Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Where("status = 1 AND user_org_id = ? AND record_date = ? AND count > 0 ", orgID, scheduleDate)
  1459. }).
  1460. Preload("AutomaticReduceDetail", func(db *gorm.DB) *gorm.DB {
  1461. return db.Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Where("status = 1 AND org_id = ? AND record_time >= ? AND record_time <=? AND count > 0", orgID, scheduleDate, end_time)
  1462. }).Where("xt_schedule.status = 1 AND xt_schedule.user_org_id = ?", orgID)
  1463. if scheduleDate != 0 {
  1464. db = db.Where("schedule_date = ?", scheduleDate)
  1465. }
  1466. if patient_id != 0 {
  1467. db = db.Where("patient_id = ?", patient_id)
  1468. }
  1469. if len(keywords) != 0 {
  1470. keywords = "%" + keywords + "%"
  1471. db = db.Joins("JOIN xt_patients AS patient ON patient.id=xt_schedule.patient_id AND patient.status = 1 AND patient.user_org_id = ? AND patient.name Like ?", orgID, keywords)
  1472. } else {
  1473. if schedule_type != 0 {
  1474. db = db.Where("schedule_type = ?", schedule_type)
  1475. }
  1476. if partition_id != 0 {
  1477. db = db.Where("partition_id = ?", partition_id)
  1478. }
  1479. db = db.Count(&total)
  1480. offset := (page - 1) * limit
  1481. db = db.Offset(offset).Limit(limit)
  1482. }
  1483. err := db.Find(&vms).Error
  1484. return vms, err, total
  1485. }
  1486. func GetLastDialysisGoodsTwo(patient_id int64, orgID int64, record_time int64) (goodUser []*AutomaticReduceDetail, err error) {
  1487. var Id []*DialysisGoodsDetailDate
  1488. err = readDb.Model(&AutomaticReduceDetail{}).Where("patient_id = ? AND org_id = ? AND status=1 AND record_time < ? AND count > 0", patient_id, orgID, record_time).Select("record_time").Group("record_time").Order("record_time asc").Scan(&Id).Error
  1489. if len(Id) > 0 {
  1490. err = readDb.Model(&AutomaticReduceDetail{}).Where("patient_id = ? AND org_id = ? AND status=1 AND record_time = ? AND count > 0", patient_id, orgID, Id[len(Id)-1].RecordTime).Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Find(&goodUser).Error
  1491. }
  1492. return
  1493. }
  1494. func GetLastDialysisBeforePrepareTwo(patient_id int64, orgID int64, record_time int64) (goodUser []*DialysisBeforePrepare, err error) {
  1495. var Id []*DialysisGoodsDate
  1496. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date < ? AND count > 0", patient_id, orgID, record_time).Select("record_date").Group("record_date").Order("record_date asc").Scan(&Id).Error
  1497. if len(Id) > 0 {
  1498. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date = ? AND count > 0", patient_id, orgID, Id[len(Id)-1].RecordDate).Preload("VMGoodInfo", "status = 1 AND org_id = ? ", orgID).Preload("GoodsType", "status = 1 AND (org_id = ? OR org_id = 0) ", orgID).Find(&goodUser).Error
  1499. }
  1500. return
  1501. }
  1502. func GetAssessmentBefor(orgid int64, patientid int64, recorddate int64) (*models.PredialysisEvaluation, error) {
  1503. evaluation := models.PredialysisEvaluation{}
  1504. err := XTReadDB().Model(&evaluation).Where("user_org_id = ? and patient_id = ? and assessment_date = ? and status = 1", orgid, patientid, recorddate).Find(&evaluation).Error
  1505. if err == gorm.ErrRecordNotFound {
  1506. return nil, err
  1507. }
  1508. if err != nil {
  1509. return nil, err
  1510. }
  1511. return &evaluation, nil
  1512. }
  1513. func GetAllHisDoctorAdvice(orgid int64, patientid int64, recorddate int64) (his []*models.HisDoctorAdviceInfo, err error) {
  1514. err = readDb.Model(&models.DialysisBeforePrepare{}).Where("patient_id = ? AND user_org_id = ? AND status=1 AND record_date = ?", patientid, orgid, recorddate).Find(&his).Error
  1515. return
  1516. }
  1517. func GetLastDialysisPrescriptionByPatientId(orgid int64, patientid int64, recorddate int64) (*models.DialysisPrescription, error) {
  1518. prescription := models.DialysisPrescription{}
  1519. err := readDb.Model(&models.DialysisPrescription{}).Where("user_org_id = ? and patient_id = ? and record_date = ? and status = 1", orgid, patientid, recorddate).Find(&prescription).Error
  1520. if err == gorm.ErrRecordNotFound {
  1521. return nil, err
  1522. }
  1523. if err != nil {
  1524. return nil, err
  1525. }
  1526. return &prescription, nil
  1527. }
  1528. type HisMScheduleDoctorAdviceVM struct {
  1529. ID int64 `gorm:"column:id" json:"id"`
  1530. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id"`
  1531. PartitionId int64 `gorm:"column:partition_id" json:"partition_id"`
  1532. BedId int64 `gorm:"column:bed_id" json:"bed_id"`
  1533. PatientId int64 `gorm:"column:patient_id" json:"patient_id"`
  1534. ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date"`
  1535. ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type"`
  1536. ModeId int64 `gorm:"column:mode_id" json:"mode_id"`
  1537. Status int64 `gorm:"column:status" json:"status"`
  1538. DialysisOrder *MDialysisOrderVM `gorm:"ForeignKey:DialysisDate,PatientId;AssociationForeignKey:ScheduleDate,PatientId" json:"dialysis_order"`
  1539. SchedualPatient *MSchedualPatientVM `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
  1540. DeviceNumber *MDeviceNumberVM `gorm:"ForeignKey:BedId" json:"device_number"`
  1541. Prescription *models.DialysisPrescriptionList `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"prescription"`
  1542. HisDoctorAdviceInfo []*models.HisDoctorAdviceInfo `gorm:"ForeignKey:PatientId;AssociationForeignKey:PatientId" json:"doctor_advice"`
  1543. }
  1544. func (HisMScheduleDoctorAdviceVM) TableName() string {
  1545. return "xt_schedule"
  1546. }
  1547. func GetHisDoctorConfig(orgid int64) (models.XtHisConfig, error) {
  1548. config := models.XtHisConfig{}
  1549. err := XTReadDB().Model(&config).Where("user_org_id = ? and status =1", orgid).Find(&config).Error
  1550. return config, err
  1551. }
  1552. func GetHisDoctorPatientById(orgid int64, patientid int64, recordtime int64) (advice []*models.HisDoctorAdviceInfo, err error) {
  1553. db := XTReadDB().Table("his_doctor_advice_info as x").Where("x.status = 1")
  1554. if orgid > 0 {
  1555. db = db.Where("x.user_org_id = ?", orgid)
  1556. }
  1557. if patientid > 0 {
  1558. db = db.Where("x.patient_id =?", patientid)
  1559. }
  1560. if recordtime > 0 {
  1561. db = db.Where("x.advice_date = ?", recordtime)
  1562. }
  1563. err = db.Select("x.id,x.user_org_id,x.patient_id,x.his_patient_id,x.advice_type,x.advice_date,x.start_time,x.advice_name,x.advice_desc,x.reminder_date,x.single_dose,x.single_dose_unit,x.single_dose_unit,x.prescribing_number_unit,x.prescribing_number,x.delivery_way,x.execution_frequency,x.advice_doctor,x.status,x.advice_affirm,x.remark,x.stop_time,x.stop_reason,x.stop_doctor,x.stop_state,x.parent_id,x.execution_time,x.execution_staff,x.checker,x.record_date,x.dialysis_order_id,x.check_time,x.check_state,x.drug_spec,x.drug_spec_unit,x.groupno,x.remind_type,x.frequency_type,x.day_count,x.week_day,x.template_id,x.modifier,x.drug_id,x.price,x.prescription_id,x.med_list_codg,x.feedetl_sn,x.day").Find(&advice).Error
  1564. return advice, err
  1565. }
  1566. func GetDoctorAdviceCount(startime int64, endtime int64, deliveway string, orgid int64) (advice []*models.BloodDoctorAdvice, err error) {
  1567. db := XTReadDB().Table("xt_doctor_advice as x").Where("x.status = 1 and x.advice_type =2")
  1568. if startime > 0 {
  1569. db = db.Where("x.advice_date >= ?", startime)
  1570. }
  1571. if endtime > 0 {
  1572. db = db.Where("x.advice_date<=?", endtime)
  1573. }
  1574. if orgid > 0 {
  1575. db = db.Where("x.user_org_id = ?", orgid)
  1576. }
  1577. if len(deliveway) > 0 {
  1578. db = db.Where("x.delivery_way = ?", deliveway)
  1579. }
  1580. err = db.Select("x.advice_name,x.advice_desc,x.delivery_way,count(x.id) as total").Group("x.advice_name,x.advice_desc").Scan(&advice).Error
  1581. return advice, err
  1582. }
  1583. func GetHisDoctorAdviceCount(startime int64, endtime int64, deliveway string, orgid int64) (advice []*models.BloodDoctorAdvice, err error) {
  1584. db := XTReadDB().Table("his_doctor_advice_info as x").Where("x.status = 1 and x.advice_type =2")
  1585. if startime > 0 {
  1586. db = db.Where("x.advice_date >= ?", startime)
  1587. }
  1588. if endtime > 0 {
  1589. db = db.Where("x.advice_date<=?", endtime)
  1590. }
  1591. if orgid > 0 {
  1592. db = db.Where("x.user_org_id = ?", orgid)
  1593. }
  1594. if len(deliveway) > 0 {
  1595. db = db.Where("x.delivery_way = ?", deliveway)
  1596. }
  1597. err = db.Select("x.advice_name,x.advice_desc,x.delivery_way,count(x.id) as total").Group("x.advice_name,x.advice_desc").Scan(&advice).Error
  1598. return advice, err
  1599. }
  1600. func MobileGetScheduleDoctorAdvicesOne(orgID int64, scheduleDate int64, adviceType int, patientType int, adminUserId int64, deliverWay string, scheduleType int64, partitonType int64) ([]*MScheduleDoctorAdviceVM, error) {
  1601. var vms []*MScheduleDoctorAdviceVM
  1602. adviceWhere := ""
  1603. adviceCondition := []interface{}{}
  1604. if adviceType == 0 {
  1605. if patientType == 0 {
  1606. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND (advice_type = 3 OR advice_type = 1)"
  1607. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1608. } else if patientType == 1 {
  1609. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_doctor = ? AND(advice_type = 3 OR advice_type = 1)"
  1610. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1611. } else if patientType == 2 {
  1612. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND execution_staff = 0 AND(advice_type = 3 OR advice_type = 1)"
  1613. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1614. }
  1615. } else if adviceType == 1 {
  1616. if patientType == 0 {
  1617. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? "
  1618. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1619. } else if patientType == 1 {
  1620. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND advice_doctor = ? "
  1621. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1622. } else if patientType == 2 {
  1623. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 1 AND record_date = ? AND execution_staff = 0"
  1624. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1625. }
  1626. } else if adviceType == 3 {
  1627. if patientType == 0 {
  1628. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 3 AND record_date = ? "
  1629. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1630. } else if patientType == 1 {
  1631. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND advice_doctor = ? "
  1632. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1633. } else if patientType == 2 {
  1634. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 3 AND execution_staff = 0"
  1635. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1636. }
  1637. } else if adviceType == 2 && len(deliverWay) > 0 {
  1638. if patientType == 0 {
  1639. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ? and delivery_way = ?"
  1640. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  1641. } else if patientType == 1 {
  1642. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ? and delivery_way = ? "
  1643. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId, deliverWay)
  1644. } else if patientType == 2 {
  1645. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0 and delivery_way = ?"
  1646. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, deliverWay)
  1647. }
  1648. } else if adviceType == 2 && len(deliverWay) <= 0 {
  1649. if patientType == 0 {
  1650. adviceWhere = "status = 1 AND user_org_id = ? AND advice_type = 2 AND record_date = ?"
  1651. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1652. } else if patientType == 1 {
  1653. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND advice_doctor = ?"
  1654. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate, adminUserId)
  1655. } else if patientType == 2 {
  1656. adviceWhere = "status = 1 AND user_org_id = ? AND record_date = ? AND advice_type = 2 AND execution_staff = 0"
  1657. adviceCondition = append(adviceCondition, adviceWhere, orgID, scheduleDate)
  1658. }
  1659. }
  1660. db := readDb.Table("xt_schedule")
  1661. if scheduleType > 0 {
  1662. db = db.Where("schedule_type = ?", scheduleType)
  1663. }
  1664. if partitonType > 0 {
  1665. db = db.Where("partition_id = ?", partitonType)
  1666. }
  1667. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1668. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1669. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1670. }).
  1671. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1672. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1673. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1674. Preload("DialysisAssesmentBefor", "status =1 AND user_org_id = ? and assessment_date =?", orgID, scheduleDate).
  1675. Preload("DoctorAdvices", adviceCondition...).
  1676. Where("status = 1 AND user_org_id = ?", orgID)
  1677. if scheduleDate != 0 {
  1678. db = db.Where("schedule_date = ?", scheduleDate)
  1679. }
  1680. err := db.Find(&vms).Error
  1681. return vms, err
  1682. }
  1683. func GetHisDoctorAdvicesOne(orgID int64, scheduleDate int64, deliverWay string, scheduleType int64, partitionType int64) ([]*HisMScheduleDoctorAdviceVM, error) {
  1684. var vms []*HisMScheduleDoctorAdviceVM
  1685. if len(deliverWay) > 0 {
  1686. db := readDb.Table("xt_schedule")
  1687. if scheduleType > 0 {
  1688. db = db.Where("schedule_type = ?", scheduleType)
  1689. }
  1690. if partitionType > 0 {
  1691. db = db.Where("partition_id = ?", partitionType)
  1692. }
  1693. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1694. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1695. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1696. }).
  1697. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1698. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1699. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1700. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ? and delivery_way = ?", orgID, scheduleDate, deliverWay).
  1701. Where("status = 1 AND user_org_id = ?", orgID)
  1702. if scheduleDate != 0 {
  1703. db = db.Where("schedule_date = ?", scheduleDate)
  1704. }
  1705. err = db.Find(&vms).Error
  1706. } else {
  1707. db := readDb.Table("xt_schedule")
  1708. if scheduleType > 0 {
  1709. db = db.Where("schedule_type = ?", scheduleType)
  1710. }
  1711. if partitionType > 0 {
  1712. db = db.Where("partition_id = ?", partitionType)
  1713. }
  1714. db = db.Preload("SchedualPatient", "status = 1 AND user_org_id = ?", orgID).
  1715. Preload("DialysisOrder", func(db *gorm.DB) *gorm.DB {
  1716. return db.Where("status = 1 AND user_org_id = ?", orgID).Preload("DeviceNumber", "status = 1 AND org_id= ?", orgID)
  1717. }).
  1718. Preload("DeviceNumber", "status = 1 AND org_id = ?", orgID).
  1719. Preload("DeviceNumber.Zone", "status = 1 AND org_id = ?", orgID).
  1720. Preload("Prescription", "status = 1 AND user_org_id = ? AND record_date = ?", orgID, scheduleDate).
  1721. Preload("HisDoctorAdviceInfo", "status = 1 AND user_org_id = ? AND advice_date = ?", orgID, scheduleDate).
  1722. Where("status = 1 AND user_org_id = ?", orgID)
  1723. if scheduleDate != 0 {
  1724. db = db.Where("schedule_date = ?", scheduleDate)
  1725. }
  1726. err = db.Find(&vms).Error
  1727. }
  1728. return vms, err
  1729. }