patientmanage_service.go 68KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435
  1. package service
  2. import (
  3. "XT_New/models"
  4. "fmt"
  5. "github.com/jinzhu/gorm"
  6. "strconv"
  7. "strings"
  8. "time"
  9. )
  10. func GetIllnessListTwo() (ills []*models.Illness, err error) {
  11. err = readUserDb.Where("status=1").Find(&ills).Error
  12. return
  13. }
  14. func GetBloodDialysisPatient(orgid int64, page int64, limit int64) (patients []*models.Patients, total int64, err error) {
  15. db := XTReadDB().Table("xt_patients_new as x").Where("x.status = 1")
  16. if orgid > 0 {
  17. db = db.Where("x.user_org_id = ?", orgid)
  18. }
  19. offset := (page - 1) * limit
  20. err = db.Count(&total).Order("x.created_time desc").Offset(offset).Limit(limit).
  21. Select("x.id,x.user_org_id,x.user_id,x.avatar,x.patient_type,x.dialysis_no,x.admission_number,x.source,x.lapseto,x.partition_id,x.bed_id,x.name,x.alias,x.gender,x.marital_status,x.id_card_no,x.birthday,x.reimbursement_way_id,x.health_care_type,x.health_care_no,x.health_care_due_date,x.height,x.blood_type,x.rh,x.health_care_due_alert_date,x.education_level,x.profession,x.phone,x.home_telephone,x.relative_phone,x.relative_relations,x.home_address,x.work_unit,x.unit_address,x.children,x.receiving_date,x.is_hospital_first_dialysis,x.first_dialysis_date,x.first_dialysis_hospital,x.predialysis_condition,x.pre_hospital_dialysis_frequency,x.pre_hospital_dialysis_times,x.hospital_first_dialysis_date,x.induction_period,x.initial_dialysis,x.total_dialysis,x.attending_doctor_id,x.head_nurse_id,x.evaluate,x.diagnose,x.remark,x.registrars_id,x.registrars,x.qr_code,x.binding_state,x.patient_complains,x.present_history,x.past_history,x.temperature,x.pulse,x.respiratory,x.sbp,x.dbp,x.status,x.created_time,x.updated_time,x.nation,x.native_place,x.age,x.blood_patients,x.slow_patients,x.member_patients,x.ecommer_patients,x.blood_id,x.slow_id,x.member_id").Find(&patients).Error
  22. fmt.Println("err是什么", err)
  23. return
  24. }
  25. func GetAllBloodDialysisPatient(orgid int64, page int64, limit int64, lapseto int64, source int64) (patients []*models.XtPatientsNew, total int64, err error) {
  26. db := XTReadDB().Table("xt_patients_new as x").Where("x.status = 1")
  27. if orgid > 0 {
  28. db = db.Where("x.user_org_id = ? and x.blood_patients = 1", orgid)
  29. }
  30. if lapseto > 0 {
  31. db = db.Where("x.lapseto = ?", lapseto)
  32. }
  33. if source > 0 {
  34. db = db.Where("x.source = ?", source)
  35. }
  36. offset := (page - 1) * limit
  37. err = db.Count(&total).Order("x.created_time desc").Offset(offset).Limit(limit).
  38. Select("x.id,x.user_org_id,x.user_id,x.avatar,x.patient_type,x.dialysis_no,x.admission_number,x.source,x.lapseto,x.partition_id,x.bed_id,x.name,x.alias,x.gender,x.marital_status,x.id_card_no,x.birthday,x.reimbursement_way_id,x.health_care_type,x.health_care_no,x.health_care_due_date,x.height,x.blood_type,x.rh,x.health_care_due_alert_date,x.education_level,x.profession,x.phone,x.home_telephone,x.relative_phone,x.relative_relations,x.home_address,x.work_unit,x.unit_address,x.children,x.receiving_date,x.is_hospital_first_dialysis,x.first_dialysis_date,x.first_dialysis_hospital,x.predialysis_condition,x.pre_hospital_dialysis_frequency,x.pre_hospital_dialysis_times,x.hospital_first_dialysis_date,x.induction_period,x.initial_dialysis,x.total_dialysis,x.attending_doctor_id,x.head_nurse_id,x.evaluate,x.diagnose,x.remark,x.registrars_id,x.registrars,x.qr_code,x.binding_state,x.patient_complains,x.present_history,x.past_history,x.temperature,x.pulse,x.respiratory,x.sbp,x.dbp,x.status,x.created_time,x.updated_time,x.nation,x.native_place,x.age,x.blood_patients,x.slow_patients,x.member_patients,x.ecommer_patients,x.blood_id,x.slow_id,x.member_id").Find(&patients).Error
  39. fmt.Println("err是什么", err)
  40. return
  41. }
  42. func GetAllSlowPatient(orgid int64, page int64, limit int64) (patients []*models.XtPatientsNew, total int64, err error) {
  43. db := XTReadDB().Table("xt_patients_new as x").Where("x.status = 1")
  44. if orgid > 0 {
  45. db = db.Where("x.user_org_id = ? and x.slow_patients = 1", orgid)
  46. }
  47. offset := (page - 1) * limit
  48. err = db.Count(&total).Order("x.created_time desc").Offset(offset).Limit(limit).
  49. Select("x.id,x.user_org_id,x.user_id,x.avatar,x.patient_type,x.dialysis_no,x.admission_number,x.source,x.lapseto,x.partition_id,x.bed_id,x.name,x.alias,x.gender,x.marital_status,x.id_card_no,x.birthday,x.reimbursement_way_id,x.health_care_type,x.health_care_no,x.health_care_due_date,x.height,x.blood_type,x.rh,x.health_care_due_alert_date,x.education_level,x.profession,x.phone,x.home_telephone,x.relative_phone,x.relative_relations,x.home_address,x.work_unit,x.unit_address,x.children,x.receiving_date,x.is_hospital_first_dialysis,x.first_dialysis_date,x.first_dialysis_hospital,x.predialysis_condition,x.pre_hospital_dialysis_frequency,x.pre_hospital_dialysis_times,x.hospital_first_dialysis_date,x.induction_period,x.initial_dialysis,x.total_dialysis,x.attending_doctor_id,x.head_nurse_id,x.evaluate,x.diagnose,x.remark,x.registrars_id,x.registrars,x.qr_code,x.binding_state,x.patient_complains,x.present_history,x.past_history,x.temperature,x.pulse,x.respiratory,x.sbp,x.dbp,x.status,x.created_time,x.updated_time,x.nation,x.native_place,x.age,x.blood_patients,x.slow_patients,x.member_patients,x.ecommer_patients,x.blood_id,x.slow_id,x.member_id").Find(&patients).Error
  50. fmt.Println("err是什么", err)
  51. return
  52. }
  53. func GetAllMemberPatient(orgid int64, page int64, limit int64) (patients []*models.XtPatientsNew, total int64, err error) {
  54. db := XTReadDB().Table("xt_patients_new as x").Where("x.status = 1")
  55. if orgid > 0 {
  56. db = db.Where("x.user_org_id = ? and x.member_patients = 1", orgid)
  57. }
  58. offset := (page - 1) * limit
  59. err = db.Count(&total).Order("x.created_time desc").Offset(offset).Limit(limit).
  60. Select("x.id,x.user_org_id,x.user_id,x.avatar,x.patient_type,x.dialysis_no,x.admission_number,x.source,x.lapseto,x.partition_id,x.bed_id,x.name,x.alias,x.gender,x.marital_status,x.id_card_no,x.birthday,x.reimbursement_way_id,x.health_care_type,x.health_care_no,x.health_care_due_date,x.height,x.blood_type,x.rh,x.health_care_due_alert_date,x.education_level,x.profession,x.phone,x.home_telephone,x.relative_phone,x.relative_relations,x.home_address,x.work_unit,x.unit_address,x.children,x.receiving_date,x.is_hospital_first_dialysis,x.first_dialysis_date,x.first_dialysis_hospital,x.predialysis_condition,x.pre_hospital_dialysis_frequency,x.pre_hospital_dialysis_times,x.hospital_first_dialysis_date,x.induction_period,x.initial_dialysis,x.total_dialysis,x.attending_doctor_id,x.head_nurse_id,x.evaluate,x.diagnose,x.remark,x.registrars_id,x.registrars,x.qr_code,x.binding_state,x.patient_complains,x.present_history,x.past_history,x.temperature,x.pulse,x.respiratory,x.sbp,x.dbp,x.status,x.created_time,x.updated_time,x.nation,x.native_place,x.age,x.blood_patients,x.slow_patients,x.member_patients,x.ecommer_patients,x.blood_id,x.slow_id,x.member_id").Find(&patients).Error
  61. fmt.Println("err是什么", err)
  62. return
  63. }
  64. func GetAllPatient(orgid int64) (patients []*models.PatientsNew, err error) {
  65. db := XTReadDB().Table("xt_patients_new as x")
  66. err = db.Raw("select id,name from xt_patients_new where user_org_id = ? and status =1", orgid).Scan(&patients).Error
  67. return
  68. }
  69. func ChechLastDialysisNoTwo(orgID int64) (dialysisNo int64) {
  70. var patient models.Patients
  71. err := readDb.Model(&models.Patients{}).Where("user_org_id=? and status = 1", orgID).Order("dialysis_no desc").First(&patient).Error
  72. if err != nil {
  73. return
  74. }
  75. if patient.ID == 0 {
  76. return
  77. }
  78. dialysisNo, _ = strconv.ParseInt(patient.DialysisNo, 10, 64)
  79. return
  80. }
  81. func GetBloodPatientInfo(orgid int64, phone string) (*models.Patients, error) {
  82. patients := models.Patients{}
  83. var err error
  84. err = XTReadDB().Model(&patients).Where("user_org_id = ? and phone = ? and status = 1", orgid, phone).Find(&patients).Error
  85. if err == gorm.ErrRecordNotFound {
  86. return nil, err
  87. }
  88. if err != nil {
  89. return nil, err
  90. }
  91. return &patients, nil
  92. }
  93. func GetSlowPatientInfo(orgid int64, phone string) (*models.CdmPatients, error) {
  94. patients := models.CdmPatients{}
  95. var err error
  96. err = PatientReadDB().Model(&patients).Where("user_org_id = ? and phone = ? and status = 1", orgid, phone).Find(&patients).Error
  97. if err == gorm.ErrRecordNotFound {
  98. return nil, err
  99. }
  100. if err != nil {
  101. return nil, err
  102. }
  103. return &patients, nil
  104. }
  105. func GetMemberPatientInfo(orgid int64, phone string) (*models.SgjUserCustomer, error) {
  106. customer := models.SgjUserCustomer{}
  107. err := UserReadDB().Model(&customer).Where("user_org_id = ? and mobile = ? and status =1", orgid, phone).Find(&customer).Error
  108. if err == gorm.ErrRecordNotFound {
  109. return nil, err
  110. }
  111. if err != nil {
  112. return nil, err
  113. }
  114. return &customer, nil
  115. }
  116. func CreateOldPatient(patients *models.Patients) error {
  117. err := XTWriteDB().Create(&patients).Error
  118. return err
  119. }
  120. func GetLastOldPatient(orgid int64) (models.Patients, error) {
  121. patients := models.Patients{}
  122. err := XTReadDB().Model(&patients).Where("user_org_id = ? and status =1", orgid).Last(&patients).Error
  123. return patients, err
  124. }
  125. func AddContagions(patienid int64, createdtime int64, updatedtime int64, contagions []int64) (err error) {
  126. utx := writeDb.Begin()
  127. if len(contagions) > 0 {
  128. thisSQL := "INSERT INTO xt_patients_infectious_diseases (patient_id, disease_id, status, created_time, updated_time) VALUES "
  129. insertParams := make([]string, 0)
  130. insertData := make([]interface{}, 0)
  131. for _, contagion := range contagions {
  132. insertParams = append(insertParams, "(?, ?, ?, ?, ?)")
  133. insertData = append(insertData, patienid)
  134. insertData = append(insertData, contagion)
  135. insertData = append(insertData, 1)
  136. insertData = append(insertData, createdtime)
  137. insertData = append(insertData, updatedtime)
  138. }
  139. thisSQL += strings.Join(insertParams, ",")
  140. err = utx.Exec(thisSQL, insertData...).Error
  141. fmt.Println("这个错误err", err)
  142. }
  143. utx.Commit()
  144. return
  145. }
  146. func AddSlowContagions(patienid int64, createdtime int64, updatedtime int64, contagions []int64, orgid int64) (err error) {
  147. utx := PatientWriteDB().Begin()
  148. if len(contagions) > 0 {
  149. thisSQL := "INSERT INTO xt_patients_infectious_diseases (patient_id, disease_id, status, created_time, updated_time,user_org_id) VALUES "
  150. insertParams := make([]string, 0)
  151. insertData := make([]interface{}, 0)
  152. for _, contagion := range contagions {
  153. insertParams = append(insertParams, "(?, ?, ?, ?, ?,?)")
  154. insertData = append(insertData, patienid)
  155. insertData = append(insertData, contagion)
  156. insertData = append(insertData, 1)
  157. insertData = append(insertData, createdtime)
  158. insertData = append(insertData, updatedtime)
  159. insertData = append(insertData, orgid)
  160. }
  161. thisSQL += strings.Join(insertParams, ", ")
  162. err = utx.Exec(thisSQL, insertData...).Error
  163. if err != nil {
  164. utx.Rollback()
  165. utx.Rollback()
  166. return
  167. }
  168. }
  169. utx.Commit()
  170. return
  171. }
  172. func AddSlowDiseases(patienid int64, createdtime int64, updatedtime int64, diseases []int64, orgid int64) (err error) {
  173. utx := PatientWriteDB().Begin()
  174. if len(diseases) > 0 {
  175. thisSQL := "INSERT INTO xt_patients_chronic_diseases (patient_id, disease_id, status, created_time, updated_time,user_org_id) VALUES "
  176. insertParams := make([]string, 0)
  177. insertData := make([]interface{}, 0)
  178. for _, disease := range diseases {
  179. insertParams = append(insertParams, "(?, ?, ?, ?, ?,?)")
  180. insertData = append(insertData, patienid)
  181. insertData = append(insertData, disease)
  182. insertData = append(insertData, 1)
  183. insertData = append(insertData, createdtime)
  184. insertData = append(insertData, updatedtime)
  185. insertData = append(insertData, orgid)
  186. }
  187. thisSQL += strings.Join(insertParams, ", ")
  188. err = utx.Exec(thisSQL, insertData...).Error
  189. if err != nil {
  190. utx.Rollback()
  191. return
  192. }
  193. }
  194. utx.Commit()
  195. return
  196. }
  197. func CreateNewPatient(patientsNew *models.XtPatientsNew) error {
  198. err := XTWriteDB().Create(&patientsNew).Error
  199. return err
  200. }
  201. func CreateCdmPatient(cdmpatient *models.CdmPatients) error {
  202. err := PatientWriteDB().Create(&cdmpatient).Error
  203. return err
  204. }
  205. func CreateMemberPatient(customer *models.SgjUserCustomer) error {
  206. err := UserWriteDB().Create(&customer).Error
  207. return err
  208. }
  209. func GetOldCdmPatient(orgid int64) (models.CdmPatients, error) {
  210. patients := models.CdmPatients{}
  211. err := PatientReadDB().Model(&patients).Where("user_org_id = ? and status =1", orgid).Last(&patients).Error
  212. return patients, err
  213. }
  214. func GetPatientDetailTwo(id int64) (models.XtPatientsNew, error) {
  215. patients := models.XtPatientsNew{}
  216. err := XTReadDB().Where("id=? and status = 1", id).Find(&patients).Error
  217. return patients, err
  218. }
  219. func GetPatientDiseasesTwo(id int64) []int64 {
  220. var dis []models.XtPatientsInfectiousDiseases
  221. ids := make([]int64, 0)
  222. err := XTReadDB().Model(&models.XtPatientsInfectiousDiseases{}).Where("patient_id = ? and status = 1", id).Find(&dis).Error
  223. if err != nil || len(dis) == 0 {
  224. return ids
  225. }
  226. for _, item := range dis {
  227. ids = append(ids, item.DiseaseId)
  228. }
  229. return ids
  230. }
  231. func GetSlowPatientDiseases(id int64) (infeciousdisease []*models.CdmPatientsInfectiousDiseases, err error) {
  232. //var dis []models.CdmPatientsInfectiousDiseases
  233. //diseases := models.CdmPatientsChronicDiseases{}
  234. //ids := make([]int64, 0)
  235. //err := PatientReadDB().Model(&diseases).Where("patient_id = ? and status =1", id).Find(&ids).Error
  236. //if err != nil || len(dis) == 0 {
  237. // return ids
  238. //}
  239. //for _, item := range dis {
  240. // ids = append(ids, item.DiseaseId)
  241. //}
  242. //return ids
  243. err = PatientReadDB().Model(&infeciousdisease).Where("patient_id = ? and status =1", id).Find(&infeciousdisease).Error
  244. return infeciousdisease, err
  245. }
  246. func GetCronicDiseases(id int64) (chronic []*models.CdmPatientsChronicDiseases, err error) {
  247. //var dis []models.CdmPatientsChronicDiseases
  248. //ids := make([]int64, 0)
  249. //err := PatientReadDB().Model(&models.CdmPatientsChronicDiseases{}).Where("patient_id = ? and status =1", id).Find(&ids).Error
  250. //if err != nil || len(dis) == 0 {
  251. // return ids
  252. //}
  253. //for _, item := range dis {
  254. // ids = append(ids, item.DiseaseId)
  255. //}
  256. //return ids
  257. err = PatientReadDB().Model(&chronic).Where("patient_id = ? and status =1", id).Find(&chronic).Error
  258. return chronic, err
  259. }
  260. func CreatePatientTwo(patient *models.Patients, contagions []int64, diseases []int64) (err error) {
  261. user, _ := GetSgjUserByMobild(patient.Phone)
  262. customer, _ := GetSgjCoustomerByMobile(patient.UserOrgId, patient.Phone)
  263. utx := writeDb.Begin()
  264. btx := writeUserDb.Begin()
  265. if user.ID == 0 {
  266. user.Mobile = patient.Phone
  267. user.Avatar = patient.Avatar
  268. user.AvatarThumb = patient.Avatar
  269. user.Birthday = patient.Birthday
  270. user.Username = patient.Name
  271. user.Gender = patient.Gender
  272. user.Sources = 11
  273. user.Introduce = patient.Remark
  274. user.Status = 1
  275. user.UpdatedTime = patient.UpdatedTime
  276. user.CreatedTime = patient.CreatedTime
  277. err = btx.Create(&user).Error
  278. if err != nil {
  279. utx.Rollback()
  280. btx.Rollback()
  281. return
  282. }
  283. }
  284. patient.UserId = user.ID
  285. if customer == nil {
  286. err = btx.Create(&models.SgjCustomer{
  287. UserOrgId: patient.UserOrgId,
  288. UserId: user.ID,
  289. Mobile: patient.Phone,
  290. Name: patient.Name,
  291. Gender: patient.Gender,
  292. Birthday: patient.Birthday,
  293. Sources: 11,
  294. Status: 1,
  295. CreatedTime: patient.CreatedTime,
  296. UpdatedTime: patient.UpdatedTime,
  297. Avatar: patient.Avatar,
  298. Remark: patient.Remark,
  299. }).Error
  300. if err != nil {
  301. utx.Rollback()
  302. btx.Rollback()
  303. return
  304. }
  305. }
  306. err = utx.Create(patient).Error
  307. if err != nil {
  308. utx.Rollback()
  309. btx.Rollback()
  310. return
  311. }
  312. var lapseto models.PatientLapseto
  313. lapseto.PatientId = patient.ID
  314. lapseto.LapsetoType = patient.Lapseto
  315. lapseto.CreatedTime = patient.CreatedTime
  316. lapseto.UpdatedTime = patient.CreatedTime
  317. lapseto.Status = 1
  318. lapseto.LapsetoTime = patient.CreatedTime
  319. err = utx.Create(&lapseto).Error
  320. if err != nil {
  321. utx.Rollback()
  322. btx.Rollback()
  323. return
  324. }
  325. if len(contagions) > 0 {
  326. thisSQL := "INSERT INTO xt_patients_infectious_diseases (patient_id, disease_id, status, created_time, updated_time) VALUES "
  327. insertParams := make([]string, 0)
  328. insertData := make([]interface{}, 0)
  329. for _, contagion := range contagions {
  330. insertParams = append(insertParams, "(?, ?, ?, ?, ?)")
  331. insertData = append(insertData, patient.ID)
  332. insertData = append(insertData, contagion)
  333. insertData = append(insertData, 1)
  334. insertData = append(insertData, patient.CreatedTime)
  335. insertData = append(insertData, patient.UpdatedTime)
  336. }
  337. thisSQL += strings.Join(insertParams, ", ")
  338. err = utx.Exec(thisSQL, insertData...).Error
  339. if err != nil {
  340. utx.Rollback()
  341. btx.Rollback()
  342. return
  343. }
  344. }
  345. if len(diseases) > 0 {
  346. thisSQL := "INSERT INTO xt_patients_chronic_diseases (patient_id, disease_id, status, created_time, updated_time) VALUES "
  347. insertParams := make([]string, 0)
  348. insertData := make([]interface{}, 0)
  349. for _, disease := range diseases {
  350. insertParams = append(insertParams, "(?, ?, ?, ?, ?)")
  351. insertData = append(insertData, patient.ID)
  352. insertData = append(insertData, disease)
  353. insertData = append(insertData, 1)
  354. insertData = append(insertData, patient.CreatedTime)
  355. insertData = append(insertData, patient.UpdatedTime)
  356. }
  357. thisSQL += strings.Join(insertParams, ", ")
  358. err = utx.Exec(thisSQL, insertData...).Error
  359. if err != nil {
  360. utx.Rollback()
  361. btx.Rollback()
  362. return
  363. }
  364. }
  365. utx.Commit()
  366. btx.Commit()
  367. return
  368. }
  369. func FindPatientByMobileFive(mobile string, orgID int64) (patient models.XtPatientsNew, err error) {
  370. err = readDb.Model(&models.Patients{}).Where("phone=? and user_org_id=? and status=1", mobile, orgID).First(&patient).Error
  371. return
  372. }
  373. func FindPatientByDialysisNoFive(orgID int64, dialysisNo string) (patient models.Patients, err error) {
  374. err = readDb.Model(&models.Patients{}).Where("status=1 and user_org_id=? and dialysis_no=?", orgID, dialysisNo).First(&patient).Error
  375. return
  376. }
  377. func FindPatientByIdCardNoFive(orgID int64, idCardNo string) (patient models.XtPatientsNew, err error) {
  378. err = readDb.Model(&models.Patients{}).Where("status=1 and user_org_id=? and id_card_no=?", orgID, idCardNo).First(&patient).Error
  379. return
  380. }
  381. func FindPatientByIdCardNoOne(orgID int64, idCardNo string, id int64) (patient models.XtPatientsNew, err error) {
  382. err = readDb.Model(&models.Patients{}).Where("status=1 and user_org_id=? and id_card_no=? and id<>?", orgID, idCardNo, id).First(&patient).Error
  383. return
  384. }
  385. func FindPatientByDialysisNoOne(orgID int64, dialysisNo string, id int64) (patient models.Patients, err error) {
  386. err = readDb.Model(&models.Patients{}).Where("status=1 and user_org_id=? and dialysis_no=? and id<>?", orgID, dialysisNo, id).First(&patient).Error
  387. return
  388. }
  389. func FindPatientByMobileOne(mobile string, orgID int64, id int64) (patient models.XtPatientsNew, err error) {
  390. //err = readDb.Model(&models.Patients{}).Where(" status=1 and user_org_id=? and phone=? and id<>?", orgID, mobile, id).First(&patient).Error
  391. //return
  392. db := readDb.Table("xt_patients_new as x")
  393. err = db.Not("phone = ?", mobile).Where("user_org_id = ? and id = ? and status =1", orgID, id).Find(&patient).Error
  394. return
  395. }
  396. func GetPatientData(phone string, orgid int64) (*models.XtPatientsNew, error) {
  397. var patientnew models.XtPatientsNew
  398. var err error
  399. err = XTReadDB().Model(&patientnew).Where("user_org_id = ? and phone = ? and status =? and blood_patients = ?", orgid, phone, 1, 1).Find(&patientnew).Error
  400. if err == gorm.ErrRecordNotFound {
  401. return nil, err
  402. }
  403. if err != nil {
  404. return nil, err
  405. }
  406. return &patientnew, nil
  407. }
  408. func GetSlowPatientData(phone string, orgid int64) (*models.CdmPatients, error) {
  409. var patientnew models.CdmPatients
  410. err = PatientReadDB().Model(&patientnew).Where("user_org_id = ? and phone = ? and status = ?", orgid, phone, 1).Find(&patientnew).Error
  411. if err == gorm.ErrRecordNotFound {
  412. return nil, err
  413. }
  414. if err != nil {
  415. return nil, err
  416. }
  417. return &patientnew, nil
  418. }
  419. func GetMemberNewPatient(phone string, orgid int64) (*models.XtPatientsNew, error) {
  420. var patientnew models.XtPatientsNew
  421. err = XTReadDB().Model(&patientnew).Where("user_org_id = ? and phone = ? and status = ? and member_patients = ?", orgid, phone, 1, 1).Find(&patientnew).Error
  422. if err == gorm.ErrRecordNotFound {
  423. return nil, err
  424. }
  425. if err != nil {
  426. return nil, err
  427. }
  428. return &patientnew, nil
  429. }
  430. func GetLastMemberPatient(orgid int64) (models.SgjUserCustomer, error) {
  431. customer := models.SgjUserCustomer{}
  432. err := UserReadDB().Model(&customer).Where("user_org_id = ? and status = 1", orgid).Last(&customer).Error
  433. return customer, err
  434. }
  435. func GetLastNewSlowPatient(phone string, orgid int64) (*models.XtPatientsNew, error) {
  436. var patientnew models.XtPatientsNew
  437. err = XTReadDB().Model(&patientnew).Where("user_org_id = ? and phone = ? and status = ? and slow_patients = ?", orgid, phone, 1, 1).Find(&patientnew).Error
  438. if err == gorm.ErrRecordNotFound {
  439. return nil, err
  440. }
  441. if err != nil {
  442. return nil, err
  443. }
  444. return &patientnew, nil
  445. }
  446. func GetNewDoctorAdvice(patientID int64, advice_type int64, start int64, end int64, limit int64, page int64, orgID int64) (doctoradvice []*models.DoctorAdvices, total int64, err error) {
  447. db := readDb.Table("xt_doctor_advice as x").Where("x.status = 1")
  448. table := UserReadDB().Table("sgj_user_admin_role as r")
  449. fmt.Print("table", table)
  450. if orgID > 0 {
  451. db = db.Where("x.user_org_id=?", orgID)
  452. }
  453. if patientID > 0 {
  454. db = db.Where("x.patient_id = ?", patientID)
  455. }
  456. if advice_type == 1 {
  457. db = db.Where("x.advice_type = ?", advice_type)
  458. }
  459. if advice_type == 3 {
  460. db = db.Where("x.advice_type <> 1")
  461. }
  462. if start > 0 {
  463. db = db.Where("x.start_time>=?", start)
  464. }
  465. if end > 0 {
  466. db = db.Where("x.start_time<=?", end)
  467. }
  468. //offset := (page - 1) * limit
  469. err = db.Group("x.id").Count(&total).Select("x.id, x.user_org_id, x.patient_id, x.advice_type, x.advice_date, x.record_date, x.start_time, x.advice_name,x.advice_desc, x.reminder_date, x.drug_spec, x.drug_spec_unit, x.single_dose, x.single_dose_unit, x.prescribing_number, x.prescribing_number_unit, x.delivery_way, x.execution_frequency, x.advice_doctor, x.status, x.created_time,x.updated_time, 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.execution_state, x.checker, x.check_state, x.check_time, x.groupno,x.remind_type,x.frequency_type,x.day_count,x.week_day,x.parent_id,r.user_name, IF(x.parent_id > 0, x.parent_id, x.id) as advice_order").Joins("Left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.advice_doctor").Order("start_time desc, groupno desc, advice_order desc, id asc").Scan(&doctoradvice).Error
  470. fmt.Print("err", err)
  471. return
  472. }
  473. func GetNewDoctorAdviceOne(patientID int64, advice_type int64, start int64, end int64, limit int64, page int64, orgID int64) (doctoradvice []*models.DoctorAdvice, total int64, err error) {
  474. db := readDb.Table("xt_doctor_advice as x").Where("x.status = 1")
  475. table := UserReadDB().Table("sgj_user_admin_role as r")
  476. fmt.Println("table", table)
  477. if orgID > 0 {
  478. db = db.Where("x.user_org_id=?", orgID)
  479. }
  480. if patientID > 0 {
  481. db = db.Where("x.patient_id = ?", patientID)
  482. }
  483. if advice_type == 1 {
  484. db = db.Where("x.advice_type = ?", advice_type)
  485. }
  486. if advice_type == 3 {
  487. db = db.Where("x.advice_type <> 1")
  488. }
  489. if start > 0 {
  490. db = db.Where("x.start_time>=?", start)
  491. }
  492. if end > 0 {
  493. db = db.Where("x.start_time<=?", end)
  494. }
  495. offset := (page - 1) * limit
  496. err = db.Order("x.start_time desc").Group("x.start_time").Count(&total).Offset(offset).Limit(limit).Select("x.id, x.user_org_id, x.patient_id, x.advice_type, x.advice_date, x.record_date, x.start_time, x.advice_name,x.advice_desc, x.reminder_date, x.drug_spec, x.drug_spec_unit, x.single_dose, x.single_dose_unit, x.prescribing_number, x.prescribing_number_unit, x.delivery_way, x.execution_frequency, x.advice_doctor, x.status, x.created_time,x.updated_time, 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.execution_state, x.checker, x.check_state, x.check_time, x.groupno,x.remind_type,x.frequency_type,x.day_count,x.week_day,x.parent_id,r.user_name, IF(x.parent_id > 0, x.parent_id, x.id) as advice_order").Joins("Left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.advice_doctor").Scan(&doctoradvice).Error
  497. fmt.Print("错误是什么", err)
  498. return
  499. }
  500. func GetDryWeight(patientid int64, startime int64, endtime int64, limit int64, page int64, orgId int64) (dryWeight []*models.XtPatientDryweight, total int64, err error) {
  501. db := XTReadDB().Table("xt_patient_dryweight as x").Where("x.status = 1")
  502. if orgId > 0 {
  503. db = db.Where("x.user_org_id = ?", orgId)
  504. }
  505. if patientid > 0 {
  506. db = db.Where("x.patient_id = ?", patientid)
  507. }
  508. if startime > 0 {
  509. db = db.Where("x.ctime >= ?", startime)
  510. }
  511. if endtime > 0 {
  512. db = db.Where("x.ctime <=?", endtime)
  513. }
  514. offset := (page - 1) * limit
  515. err = db.Count(&total).Order("x.ctime desc").Offset(offset).Limit(limit).Group("x.id").
  516. Select("x.id,x.dry_weight,x.creator,x.remakes,x.patient_id,x.ctime,x.adjusted_value,x.user_id,x.user_org_id,r.user_name").Joins("left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.creator").Scan(&dryWeight).Error
  517. return dryWeight, total, err
  518. }
  519. func ToSearch(orgId int64, name string) (patient []*models.XtPatientsNew, err error) {
  520. likeKey := "%" + name + "%"
  521. err = XTReadDB().Where("name like ? and user_org_id = ?", likeKey, orgId).Find(&patient).Error
  522. return patient, err
  523. }
  524. func GetCourseManagement(patientid int64, startime int64, endtime int64, limit int64, page int64, orgid int64) (patientCourse []*models.PatientCourseOfDiseases, total int64, err error) {
  525. db := XTReadDB().Table("xt_patient_course_of_disease as x").Where("x.status = 1")
  526. if patientid > 0 {
  527. db = db.Where("x.patient_id = ?", patientid)
  528. }
  529. if orgid > 0 {
  530. db = db.Where("x.org_id = ?", orgid)
  531. }
  532. if startime > 0 {
  533. db = db.Where("x.record_time >=?", startime)
  534. }
  535. if endtime > 0 {
  536. db = db.Where("x.record_time <= ?", endtime)
  537. }
  538. offset := (page - 1) * limit
  539. err = db.Count(&total).Order("x.ctime desc").Offset(offset).Limit(limit).Group("x.id").
  540. Select("x.id,x.org_id,x.patient_id,x.recorder,x.record_time,x.content,x.title,r.user_name").Joins("left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.recorder").Scan(&patientCourse).Error
  541. return patientCourse, total, err
  542. }
  543. func DeleteCouseManagement(patientid int64) error {
  544. err := XTWriteDB().Model(models.PatientCourseOfDisease{}).Where("id = ?", patientid).Update(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  545. return err
  546. }
  547. func GetCouseManagentDetail(id int64) (models.PatientCourseOfDiseasess, error) {
  548. disease := models.PatientCourseOfDiseasess{}
  549. db := XTReadDB().Table("xt_patient_course_of_disease as x")
  550. err := db.Select("x.id,x.org_id,x.patient_id,x.recorder,x.record_time,x.content,x.title,s.name,r.user_name").Joins("left join xt_patients as s on s.id = x.patient_id ").Joins("left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.recorder").Where("x.id = ?", id).Scan(&disease).Error
  551. return disease, err
  552. }
  553. func DeleteDryWeight(id int64) error {
  554. err := XTWriteDB().Model(models.SgjPatientDryweight{}).Where("id=?", id).Update(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  555. return err
  556. }
  557. func GetDryWeightDetail(id int64) (models.SgjPatientDryweights, error) {
  558. dryweight := models.SgjPatientDryweights{}
  559. db := XTReadDB().Table("xt_patient_dryweight as x")
  560. err := db.Select("x.id,x.dry_weight,x.creator,x.remakes,x.patient_id,x.adjusted_value,x.user_org_id,x.user_id,x.ctime,s.name,r.user_name").Joins("left join xt_patients as s on s.id = x.patient_id").Joins("left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.user_id").Where("x.id = ?", id).Scan(&dryweight).Error
  561. return dryweight, err
  562. }
  563. func GetlongDialysisrecord(patientid int64, startime int64, endtime int64, limit int64, page int64, orgid int64) (prescription []*models.XtDialysisSolution, total int64, err error) {
  564. db := XTReadDB().Table("xt_dialysis_solution as x").Where("x.status = 1")
  565. if patientid > 0 {
  566. db = db.Where("x.patient_id = ?", patientid)
  567. }
  568. if orgid > 0 {
  569. db = db.Where("x.user_org_id = ?", orgid)
  570. }
  571. if startime > 0 {
  572. db = db.Where("x.created_time >=?", startime)
  573. }
  574. if endtime > 0 {
  575. db = db.Where("x.created_time <= ?", endtime)
  576. }
  577. offset := (page - 1) * limit
  578. err = db.Count(&total).Order("x.created_time desc").Offset(offset).Limit(limit).Group("x.id").
  579. Select("x.id,x.name,x.sub_name,x.user_org_id,x.patient_id,x.parent_id,x.type,x.period,x.times,x.anticoagulant,x.anticoagulant_shouji,x.anticoagulant_weichi,x.anticoagulant_zongliang,x.anticoagulant_gaimingcheng,x.anticoagulant_gaijiliang,x.mode_name,x.mode_id,x.dialysis_duration,x.replacement_way,x.hemodialysis_machine,x.blood_filter,x.perfusion_apparatus,x.blood_flow_volume,x.dewater,x.displace_liqui,x.glucose,x.dry_weight,x.dialysate_flow,x.kalium,x.sodium,x.calcium,x.bicarbonate,x.doctor,x.first_dialysis,x.remark,x.initiate_mode,x.affirm_state,x.use_state,x.status,x.registrars_id,x.created_time,x.updated_time,x.solution_type,x.dialysate_temperature,x.conductivity,x.dialysis_duration_hour,x.dialysis_duration_minute,x.target_ultrafiltration,x.dialysate_formulation,x.dialyzer,x.replacement_total,x.dialyzer_perfusion_apparatus,x.body_fluid,x.special_medicine,x.special_medicine_other,x.displace_liqui_part,x.displace_liqui_value,x.blood_access,x.ultrafiltration,x.body_fluid_other,x.target_ktv").Find(&prescription).Error
  580. return
  581. }
  582. func GetRescuerecord(patientid int64, startime int64, endtime int64, limit int64, page int64, orgid int64) (rescuerecord []*models.XtPatientRescueRecords, total int64, err error) {
  583. db := XTReadDB().Table("xt_patient_rescue_record as x").Where("x.status = 1")
  584. if patientid > 0 {
  585. db = db.Where("x.patient_id = ?", patientid)
  586. }
  587. if orgid > 0 {
  588. db = db.Where("x.org_id = ?", orgid)
  589. }
  590. if startime > 0 {
  591. db = db.Where("x.record_time >=?", startime)
  592. }
  593. if endtime > 0 {
  594. db = db.Where("x.record_time <= ?", endtime)
  595. }
  596. offset := (page - 1) * limit
  597. err = db.Count(&total).Order("x.record_time desc").Offset(offset).Limit(limit).Group("x.id").
  598. Select("x.id,x.org_id,x.patient_id,x.recorder,x.record_time,x.content,x.status,r.user_name").Joins("left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.recorder").Scan(&rescuerecord).Error
  599. return
  600. }
  601. func GetScheduling(patientid int64, startime int64, endtime int64, limit int64, page int64, orgid int64, modeType int64) (schedules []*models.XtSchedules, total int64, err error) {
  602. db := XTReadDB().Table("xt_schedule as x").Where("x.status = 1")
  603. if patientid > 0 {
  604. db = db.Where("x.patient_id = ?", patientid)
  605. }
  606. if orgid > 0 {
  607. db = db.Where("x.user_org_id = ?", orgid)
  608. }
  609. if startime > 0 {
  610. db = db.Where("x.schedule_date >=?", startime)
  611. }
  612. if endtime > 0 {
  613. db = db.Where("x.schedule_date <= ?", endtime)
  614. }
  615. if modeType > 0 {
  616. db = db.Where("x.mode_id = ?", modeType)
  617. }
  618. offset := (page - 1) * limit
  619. err = db.Count(&total).Order("x.schedule_date desc").Offset(offset).Limit(limit).Group("x.id").
  620. Select("x.id,x.user_org_id,x.partition_id,x.bed_id,x.patient_id,x.schedule_date,x.schedule_type,x.schedule_week,x.mode_id,x.status,x.created_time,x.updated_time,s.number,z.name").Joins("left join xt_device_number as s on s.id = x.bed_id").Joins("left join xt_device_zone as z on z.id = x.partition_id").Scan(&schedules).Error
  621. return
  622. }
  623. func GetEducation(patientid int64, startime int64, endtime int64, limit int64, page int64, orgid int64) (treatment []*models.XtTreatmentSummary, total int64, err error) {
  624. db := XTReadDB().Table("xt_treatment_summary as x").Where("x.status = 1")
  625. if patientid > 0 {
  626. db = db.Where("x.patient_id = ?", patientid)
  627. }
  628. if orgid > 0 {
  629. db = db.Where("x.user_org_id = ?", orgid)
  630. }
  631. if startime > 0 {
  632. db = db.Where("x.assessment_date >=?", startime)
  633. }
  634. if endtime > 0 {
  635. db = db.Where("x.assessment_date <= ?", endtime)
  636. }
  637. offset := (page - 1) * limit
  638. err = db.Count(&total).Order("x.assessment_date desc").Offset(offset).Limit(limit).Group("x.id").
  639. Select("x.id,x.user_org_id,x.patient_id,x.assessment_date,x.dialysis_order_id,x.mission,x.dialysis_summary,x.change,x.sj_nurse,x.zl_nurse,x.hd_nurse,x.xj_nurse,x.zl_doctor,x.channel_image,x.puncture,x.puncture_needle,x.puncture_direction,x.status,x.created_time,x.updated_time,x.creater,x.modifier").Scan(&treatment).Error
  640. return
  641. }
  642. func GetSchedulingDetail(id int64) (models.XtScheduless, error) {
  643. schedules := models.XtScheduless{}
  644. db := XTReadDB().Table("xt_schedule as x")
  645. err := db.Select("x.id,x.user_org_id,x.partition_id,x.bed_id,x.patient_id,x.schedule_date,x.schedule_type,x.schedule_week,x.mode_id,n.number,z.name").Joins("left join xt_device_number as n on n.id = x.bed_id").Joins("left join xt_device_zone as z on z.id = x.partition_id").Where("x.id =?", id).Scan(&schedules).Error
  646. return schedules, err
  647. }
  648. func GetSchedulingTwo(id int64) (models.XtScheduless, error) {
  649. schedules := models.XtScheduless{}
  650. db := XTReadDB().Table("xt_schedule as x")
  651. err := db.Select("x.id,x.user_org_id,x.partition_id,x.bed_id,x.patient_id,x.schedule_date,x.schedule_type,x.schedule_week,x.mode_id,z.name").Joins("left join xt_patients as z on z.id = x.patient_id").Where("x.id =?", id).Scan(&schedules).Error
  652. return schedules, err
  653. }
  654. func DeleteScheduling(id int64) error {
  655. err := XTWriteDB().Model(models.XtSchedules{}).Where("id=?", id).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  656. return err
  657. }
  658. func GetEducationDetailOne(id int64) (models.XtTreatmentSummarys, error) {
  659. summarys := models.XtTreatmentSummarys{}
  660. db := XTReadDB().Table("xt_treatment_summary as x")
  661. err := db.Select("x.id,x.user_org_id,x.patient_id,x.assessment_date,x.dialysis_order_id,x.mission,x.dialysis_summary,x.change,x.sj_nurse,x.zl_nurse,x.hd_nurse,x.xj_nurse,x.zl_doctor,x.channel_image,x.puncture,x.puncture_needle,x.puncture_direction,x.status,x.created_time,x.creater,x.modifier,s.name").Joins("left join xt_patients as s on s.id = x.patient_id").Where("x.id = ?", id).Scan(&summarys).Error
  662. return summarys, err
  663. }
  664. func DeleteEducation(id int64) error {
  665. err := XTWriteDB().Model(models.XtTreatmentSummary{}).Where("id=?", id).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  666. return err
  667. }
  668. func GetRescueRecordDetail(id int64) (models.XtPatientRescueRecords, error) {
  669. records := models.XtPatientRescueRecords{}
  670. db := XTReadDB().Table("xt_patient_rescue_record as x")
  671. err := db.Select("x.id,x.org_id,x.patient_id,x.recorder,x.record_time,x.content,x.status,r.user_name,s.name").Joins("left join sgj_users.sgj_user_admin_role as r on r.admin_user_id = x.recorder").Joins("left join xt_patients as s on s.id = x.patient_id").Where("x.id=?", id).Scan(&records).Error
  672. return records, err
  673. }
  674. func DeleteRescueRecord(id int64) error {
  675. err := XTWriteDB().Model(models.XtPatientRescueRecord{}).Where("id=?", id).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  676. return err
  677. }
  678. func ToSearchePatient(keyword string, orgId int64) (paitents []*models.XtPatientsNew, err error) {
  679. likeKey := "%" + keyword + "%"
  680. err = XTReadDB().Where("user_org_id = ? and name like ? or dialysis_no like ?", orgId, likeKey, likeKey).Find(&paitents).Error
  681. return paitents, err
  682. }
  683. func SearchallPatient(keyword string, orgid int64) (patients []*models.XtPatientsNew, err error) {
  684. db := XTReadDB().Table("xt_patients_new as x").Where("x.status = 1")
  685. if len(keyword) > 0 {
  686. likeKey := "%" + keyword + "%"
  687. db = db.Where("x.name LIKE ? OR x.dialysis_no LIKE ?", likeKey, likeKey)
  688. }
  689. if orgid > 0 {
  690. db = db.Where("x.user_org_id = ?", orgid)
  691. }
  692. err = db.Select("x.id,x.user_org_id,x.user_id,x.avatar,x.patient_type,x.dialysis_no,x.admission_number,x.source,x.lapseto,x.partition_id,x.bed_id,x.name,x.alias,x.gender,x.marital_status,x.id_card_no,x.birthday,x.reimbursement_way_id,x.health_care_type,x.health_care_no,x.health_care_due_date,x.height,x.blood_type,x.rh,x.health_care_due_alert_date,x.education_level,x.profession,x.phone,x.home_telephone,x.relative_phone,x.relative_relations,x.home_address,x.work_unit,x.unit_address,x.children,x.receiving_date,x.is_hospital_first_dialysis,x.first_dialysis_date,x.first_dialysis_hospital,x.predialysis_condition,x.pre_hospital_dialysis_frequency,x.pre_hospital_dialysis_times,x.hospital_first_dialysis_date,x.induction_period,x.initial_dialysis,x.total_dialysis,x.attending_doctor_id,x.head_nurse_id,x.evaluate,x.diagnose,x.remark,x.registrars_id,x.registrars,x.qr_code,x.binding_state,x.patient_complains,x.present_history,x.past_history,x.temperature,x.pulse,x.respiratory,x.sbp,x.dbp,x.status,x.created_time,x.updated_time,x.nation,x.native_place,x.age,x.infectious_next_record_time,x.is_infectious,x.remind_cycle,x.response_result,x.is_open_remind,x.first_treatment_date,x.dialysis_age,x.expense_kind,x.tell_phone,x.contact_name,x.blood_patients,x.slow_patients,x.member_patients,x.ecommer_patients,x.blood_id,x.slow_id,x.member_id,x.member_fistdate,x.member_patienttype,x.member_treatement,x.equitment_id").Find(&patients).Error
  693. return patients, err
  694. }
  695. func GetSearchallBlood(keyword string, orgid int64) (patients []*models.XtPatientsNew, err error) {
  696. db := XTReadDB().Table("xt_patients_new as x").Where("x.status = 1 and x.blood_patients = 1")
  697. if len(keyword) > 0 {
  698. likeKey := "%" + keyword + "%"
  699. db = db.Where("x.name LIKE ? OR x.dialysis_no LIKE ?", likeKey, likeKey)
  700. }
  701. if orgid > 0 {
  702. db = db.Where("x.user_org_id = ?", orgid)
  703. }
  704. err = db.Select("x.id,x.user_org_id,x.user_id,x.avatar,x.patient_type,x.dialysis_no,x.admission_number,x.source,x.lapseto,x.partition_id,x.bed_id,x.name,x.alias,x.gender,x.marital_status,x.id_card_no,x.birthday,x.reimbursement_way_id,x.health_care_type,x.health_care_no,x.health_care_due_date,x.height,x.blood_type,x.rh,x.health_care_due_alert_date,x.education_level,x.profession,x.phone,x.home_telephone,x.relative_phone,x.relative_relations,x.home_address,x.work_unit,x.unit_address,x.children,x.receiving_date,x.is_hospital_first_dialysis,x.first_dialysis_date,x.first_dialysis_hospital,x.predialysis_condition,x.pre_hospital_dialysis_frequency,x.pre_hospital_dialysis_times,x.hospital_first_dialysis_date,x.induction_period,x.initial_dialysis,x.total_dialysis,x.attending_doctor_id,x.head_nurse_id,x.evaluate,x.diagnose,x.remark,x.registrars_id,x.registrars,x.qr_code,x.binding_state,x.patient_complains,x.present_history,x.past_history,x.temperature,x.pulse,x.respiratory,x.sbp,x.dbp,x.status,x.created_time,x.updated_time,x.nation,x.native_place,x.age,x.infectious_next_record_time,x.is_infectious,x.remind_cycle,x.response_result,x.is_open_remind,x.first_treatment_date,x.dialysis_age,x.expense_kind,x.tell_phone,x.contact_name,x.blood_patients,x.slow_patients,x.member_patients,x.ecommer_patients,x.blood_id,x.slow_id,x.member_id,x.member_fistdate,x.member_patienttype,x.member_treatement,x.equitment_id").Find(&patients).Error
  705. return patients, err
  706. }
  707. func GetSlowSearchePatient(keyword string, orgid int64) (patients []*models.XtPatientsNew, err error) {
  708. db := XTReadDB().Table("xt_patients_new as x").Where("x.status = 1 and x.slow_patients = 1")
  709. if len(keyword) > 0 {
  710. likeKey := "%" + keyword + "%"
  711. db = db.Where("x.name LIKE ? OR x.dialysis_no LIKE ?", likeKey, likeKey)
  712. }
  713. if orgid > 0 {
  714. db = db.Where("x.user_org_id = ?", orgid)
  715. }
  716. err = db.Select("x.id,x.user_org_id,x.user_id,x.avatar,x.patient_type,x.dialysis_no,x.admission_number,x.source,x.lapseto,x.partition_id,x.bed_id,x.name,x.alias,x.gender,x.marital_status,x.id_card_no,x.birthday,x.reimbursement_way_id,x.health_care_type,x.health_care_no,x.health_care_due_date,x.height,x.blood_type,x.rh,x.health_care_due_alert_date,x.education_level,x.profession,x.phone,x.home_telephone,x.relative_phone,x.relative_relations,x.home_address,x.work_unit,x.unit_address,x.children,x.receiving_date,x.is_hospital_first_dialysis,x.first_dialysis_date,x.first_dialysis_hospital,x.predialysis_condition,x.pre_hospital_dialysis_frequency,x.pre_hospital_dialysis_times,x.hospital_first_dialysis_date,x.induction_period,x.initial_dialysis,x.total_dialysis,x.attending_doctor_id,x.head_nurse_id,x.evaluate,x.diagnose,x.remark,x.registrars_id,x.registrars,x.qr_code,x.binding_state,x.patient_complains,x.present_history,x.past_history,x.temperature,x.pulse,x.respiratory,x.sbp,x.dbp,x.status,x.created_time,x.updated_time,x.nation,x.native_place,x.age,x.infectious_next_record_time,x.is_infectious,x.remind_cycle,x.response_result,x.is_open_remind,x.first_treatment_date,x.dialysis_age,x.expense_kind,x.tell_phone,x.contact_name,x.blood_patients,x.slow_patients,x.member_patients,x.ecommer_patients,x.blood_id,x.slow_id,x.member_id,x.member_fistdate,x.member_patienttype,x.member_treatement,x.equitment_id").Find(&patients).Error
  717. return patients, err
  718. }
  719. func GetMemberSearchPatient(keyword string, orgid int64) (patients []*models.XtPatientsNew, err error) {
  720. db := XTReadDB().Table("xt_patients_new as x").Where("x.status = 1 and x.member_patients = 1")
  721. if len(keyword) > 0 {
  722. likeKey := "%" + keyword + "%"
  723. db = db.Where("x.name LIKE ? OR x.dialysis_no LIKE ?", likeKey, likeKey)
  724. }
  725. if orgid > 0 {
  726. db = db.Where("x.user_org_id = ?", orgid)
  727. }
  728. err = db.Select("x.id,x.user_org_id,x.user_id,x.avatar,x.patient_type,x.dialysis_no,x.admission_number,x.source,x.lapseto,x.partition_id,x.bed_id,x.name,x.alias,x.gender,x.marital_status,x.id_card_no,x.birthday,x.reimbursement_way_id,x.health_care_type,x.health_care_no,x.health_care_due_date,x.height,x.blood_type,x.rh,x.health_care_due_alert_date,x.education_level,x.profession,x.phone,x.home_telephone,x.relative_phone,x.relative_relations,x.home_address,x.work_unit,x.unit_address,x.children,x.receiving_date,x.is_hospital_first_dialysis,x.first_dialysis_date,x.first_dialysis_hospital,x.predialysis_condition,x.pre_hospital_dialysis_frequency,x.pre_hospital_dialysis_times,x.hospital_first_dialysis_date,x.induction_period,x.initial_dialysis,x.total_dialysis,x.attending_doctor_id,x.head_nurse_id,x.evaluate,x.diagnose,x.remark,x.registrars_id,x.registrars,x.qr_code,x.binding_state,x.patient_complains,x.present_history,x.past_history,x.temperature,x.pulse,x.respiratory,x.sbp,x.dbp,x.status,x.created_time,x.updated_time,x.nation,x.native_place,x.age,x.infectious_next_record_time,x.is_infectious,x.remind_cycle,x.response_result,x.is_open_remind,x.first_treatment_date,x.dialysis_age,x.expense_kind,x.tell_phone,x.contact_name,x.blood_patients,x.slow_patients,x.member_patients,x.ecommer_patients,x.blood_id,x.slow_id,x.member_id,x.member_fistdate,x.member_patienttype,x.member_treatement,x.equitment_id").Find(&patients).Error
  729. return patients, err
  730. }
  731. func GetLongDialysisDetail(id int64) (models.XtDialysisSolution, error) {
  732. solution := models.XtDialysisSolution{}
  733. err := XTReadDB().Model(&solution).Where("id=? and status =1", id).Find(&solution).Error
  734. return solution, err
  735. }
  736. func GetPatientName(id int64) (models.Patients, error) {
  737. patientsNew := models.Patients{}
  738. err := XTReadDB().Model(&patientsNew).Where("id=? and status = 1", id).Find(&patientsNew).Error
  739. return patientsNew, err
  740. }
  741. func DeleteLongDialysis(id int64) error {
  742. err := XTWriteDB().Model(models.XtDialysisSolution{}).Where("id=?", id).Update(map[string]interface{}{"status": 0, "mtime": time.Now().Unix()}).Error
  743. return err
  744. }
  745. func GetDialysisrecord(patientID int64, start int64, end int64, limit int64, page int64, orgID int64, mode_id int64) ([]*models.PatientDialysisRecord, int64, error) {
  746. offset := (page - 1) * limit
  747. var total int64
  748. var err error
  749. var orders []*models.PatientDialysisRecord
  750. db := readDb.Table("xt_dialysis_order as do").
  751. Preload("DialysisPrescription", "patient_id=? and user_org_id=? and status=1", patientID, orgID).
  752. Preload("PredialysisEvaluation", "patient_id=? and user_org_id=? and status=1", patientID, orgID).
  753. Preload("DialysisPrescription", func(db *gorm.DB) *gorm.DB {
  754. return readDb.Where("patient_id=? and user_org_id=? and status=1", patientID, orgID).Preload("UserAdminRole", func(db *gorm.DB) *gorm.DB {
  755. return readUserDb.Where("status = 1")
  756. })
  757. }).
  758. Preload("AssessmentAfterDislysis", "patient_id=? and user_org_id=? and status=1", patientID, orgID).
  759. Preload("TreatmentSummary", "patient_id=? and user_org_id=? and status=1", patientID, orgID).
  760. Preload("Device", "org_id=? and status=1", orgID).
  761. Preload("UserAdminRole", func(db *gorm.DB) *gorm.DB {
  762. return readUserDb.Where("org_id=? and status = 1", orgID)
  763. }).
  764. Joins("JOIN xt_schedule as s ON s.patient_id=? and FROM_UNIXTIME(s.schedule_date, '%Y-%m-%d')=FROM_UNIXTIME(do.dialysis_date, '%Y-%m-%d')", patientID).
  765. Joins("JOIN xt_device_zone as dz ON dz.org_id = ? and dz.id=s.partition_id", orgID).
  766. Where("do.patient_id=? and do.user_org_id=? and do.stage = 2 and do.status=1", patientID, orgID).Group("s.schedule_date")
  767. if start > 0 {
  768. db = db.Where("do.dialysis_date>=?", start)
  769. }
  770. if end > 0 {
  771. db = db.Where("do.dialysis_date<=?", end)
  772. }
  773. if mode_id > 0 {
  774. db = db.Joins("JOIN xt_dialysis_prescription as dp ON dp.record_id=do.id")
  775. db = db.Where("dp.mode_id=?", mode_id)
  776. }
  777. err = db.Count(&total).Offset(offset).Limit(limit).Order("do.dialysis_date desc").Select("do.bed_id, do.id, do.dialysis_date, do.user_org_id, do.patient_id, do.prescription_id, do.stage, do.remark, do.status, do.created_time, do.updated_time,do.start_nurse,do.finish_nurse ,s.schedule_type, s.partition_id, dz.name as partition_name").Find(&orders).Error
  778. if len(orders) > 0 {
  779. ids := make([]int64, 0)
  780. for _, order := range orders {
  781. dialyzer := order.DialysisPrescription.Dialyzer
  782. ids = append(ids, dialyzer)
  783. }
  784. if len(ids) > 0 {
  785. var dialyzers []*models.DeviceNumber
  786. err = readDb.Model(&models.DeviceNumber{}).Where("id IN (?) and org_id=? and status=1", ids, orgID).Find(&dialyzers).Error
  787. if err != nil {
  788. return nil, 0, err
  789. }
  790. dialyzerMap := make(map[int64]models.DeviceNumber, 0)
  791. for _, item := range dialyzers {
  792. dialyzerMap[item.ID] = *item
  793. }
  794. for orderIndex, order := range orders {
  795. if _, exist := dialyzerMap[order.DialysisPrescription.Dialyzer]; exist {
  796. orders[orderIndex].DeviceNumber = dialyzerMap[order.DialysisPrescription.Dialyzer].Number
  797. }
  798. }
  799. }
  800. }
  801. return orders, total, err
  802. }
  803. func GetAllDoctorTwo(orgid int64, appid int64) (appRole []*models.SgjUserAdminRole, err error) {
  804. err = UserReadDB().Where("org_id = ? and app_id = ? and status = ? ", orgid, appid, 1).Find(&appRole).Error
  805. return appRole, err
  806. }
  807. func GetDoctorAdviceDetail(state int64, id int64, orgid int64) (advices []*models.DoctorAdvices, err error) {
  808. db := XTReadDB().Table("xt_doctor_advice as x")
  809. err = db.Order("x.id desc").Select("x.id,x.user_org_id,x.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.prescribing_number,x.prescribing_number_unit,x.delivery_way,x.execution_frequency,x.advice_doctor,x.status,x.created_time,x.updated_time,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.execution_state,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,s.name").Joins("left join xt_patients as s on s.id=x.patient_id").Where("x.start_time = ? and x.patient_id = ? and x.user_org_id = ? and x.status = 1", state, id, orgid).Scan(&advices).Error
  810. return advices, err
  811. }
  812. func DeleteManagement(groupid int64, orgid int64) error {
  813. err := XTWriteDB().Model(models.DoctorAdvice{}).Where("start_time =? and user_org_id = ?", groupid, orgid).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  814. return err
  815. }
  816. func DeleteChild(id int64) error {
  817. err := XTWriteDB().Model(models.DoctorAdvice{}).Where("id=?", id).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  818. return err
  819. }
  820. func DeletePatient(id int64) error {
  821. err = XTWriteDB().Model(models.DoctorAdvice{}).Where("id=? or parent_id = ?", id, id).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  822. return err
  823. }
  824. func GetNewPatient(id int64) (models.XtPatientsNew, error) {
  825. patientsNew := models.XtPatientsNew{}
  826. err := XTReadDB().Model(&patientsNew).Where("id=?", id).Find(&patientsNew).Error
  827. return patientsNew, err
  828. }
  829. func UpdatedPatient(patients models.Patients, id int64) error {
  830. err := XTWriteDB().Model(&patients).Where("id=?", id).Update(map[string]interface{}{"name": patients.Name, "gender": patients.Gender, "birthday": patients.Birthday, "age": patients.Age, "phone": patients.Phone, "lapseto": patients.Lapseto, "admission_number": patients.AdmissionNumber, "first_dialysis_date": patients.FirstDialysisDate, "diagnose": patients.Diagnose, "source": patients.Source, "dialysis_no": patients.DialysisNo, "avatar": patients.Avatar, "id_card_no": patients.IdCardNo, "is_infectious": patients.IsInfectious}).Error
  831. return err
  832. }
  833. func UpdateXtPatientNew(patients models.XtPatientsNew, id int64) error {
  834. err := XTWriteDB().Model(&patients).Where("id=?", id).Update(map[string]interface{}{"name": patients.Name, "gender": patients.Gender, "birthday": patients.Birthday, "age": patients.Age, "phone": patients.Phone, "lapseto": patients.Lapseto, "admission_number": patients.AdmissionNumber, "first_dialysis_date": patients.FirstDialysisDate, "diagnose": patients.Diagnose, "source": patients.Source, "dialysis_no": patients.DialysisNo, "avatar": patients.Avatar, "id_card_no": patients.IdCardNo, "is_infectious": patients.IsInfectious}).Error
  835. return err
  836. }
  837. func UpdateXtPatientNewOne(patients models.XtPatientsNew, id int64) error {
  838. err := XTWriteDB().Model(&patients).Where("id=?", id).Update(map[string]interface{}{"name": patients.Name, "gender": patients.Gender, "birthday": patients.Birthday, "age": patients.Age, "phone": patients.Phone, "lapseto": patients.Lapseto, "adminssion_number": patients.AdmissionNumber, "first_dialysis_date": patients.FirstDialysisDate, "diagnose": patients.Diagnose, "source": patients.Source, "dialysis_no": patients.DialysisNo, "avatar": patients.Avatar, "id_card_no": patients.IdCardNo, "is_infectious": patients.IsInfectious, "member_patienttype": patients.MemberPatienttype, "member_treatement": patients.MemberTreatement}).Error
  839. return err
  840. }
  841. func UpdateContagions(patientid int64) (models.XtPatientsInfectiousDiseases, error) {
  842. diseases := models.XtPatientsInfectiousDiseases{}
  843. err := XTWriteDB().Model(&diseases).Where("patient_id = ?", patientid).Update(map[string]interface{}{"status": 2, "updated_time": time.Now().Unix()}).Error
  844. return diseases, err
  845. }
  846. func UpdateCustomer(cdmpatient models.CdmPatients, id int64) error {
  847. err := PatientWriteDB().Model(&cdmpatient).Where("id=?", id).Update(map[string]interface{}{"name": cdmpatient.Name, "phone": cdmpatient.Phone, "gender": cdmpatient.Gender, "birthday": cdmpatient.Birthday, "diagnose": cdmpatient.Diagnose, "source": cdmpatient.Source, "avatar": cdmpatient.Avatar, "id_card_no": cdmpatient.IdCardNo, "updated_time": cdmpatient.UpdatedTime}).Error
  848. return err
  849. }
  850. func UpdatedCustomer(customer models.SgjUserCustomer, id int64) error {
  851. err := UserWriteDB().Model(&customer).Where("id = ?", id).Update(map[string]interface{}{"name": customer.Name, "mobile": customer.Mobile, "gender": customer.Gender, "birthday": customer.Birthday, "ill_date": customer.IllDate, "avatar": customer.Avatar, "illness_id": customer.IllnessId, "treat_type": customer.TreatType}).Error
  852. return err
  853. }
  854. func GetInspectionByOrgId(orgid int64) (*models.XtInspectionReference, error) {
  855. diseases := models.XtInspectionReference{}
  856. err := XTReadDB().Model(&diseases).Where("org_id = ? and status = 1", orgid).Find(&diseases).Error
  857. if err == gorm.ErrRecordNotFound {
  858. return nil, err
  859. }
  860. if err != nil {
  861. return nil, err
  862. }
  863. return &diseases, nil
  864. }
  865. func GetAllProjectName(date int64, orgid int64, patientid int64) (inspection []*models.XtInspection, err error) {
  866. err = XTReadDB().Model(&inspection).Where("inspect_date = ? and org_id = ? and patient_id = ? and status = 1", date, orgid, patientid).Order("inspect_date desc").Group("project_name").Find(&inspection).Error
  867. return inspection, err
  868. }
  869. func GetAllInspection(orgid int64) (inspection []*models.XtInspectionReference, err error) {
  870. err = XTReadDB().Model(&inspection).Where("org_id = ? and status = 1", orgid).Group("project_name").Find(&inspection).Error
  871. return inspection, err
  872. }
  873. func GetInspection(patientid int64, startime int64, endtime int64, limit int64, page int64, orgid int64, projectid int64) (inspection []*models.Inspection, total int64, err error) {
  874. db := XTReadDB().Table("xt_inspection as x").Where("x.status = 1")
  875. if patientid > 0 {
  876. db = db.Where("x.patient_id = ?", patientid)
  877. }
  878. if startime > 0 {
  879. db = db.Where("x.inspect_date >= ?", startime)
  880. }
  881. if endtime > 0 {
  882. db = db.Where("x.inspect_date<=?", endtime)
  883. }
  884. if orgid > 0 {
  885. db = db.Where("x.org_id = ?", orgid)
  886. }
  887. if projectid > 0 {
  888. db = db.Where("x.project_id = ?", projectid)
  889. }
  890. err = db.Count(&total).Order("x.inspect_date desc").Group("x.id").
  891. Select("x.id,x.patient_id,x.org_id,x.project_id,x.item_id,x.item_name,x.project_name,x.inspect_type,x.inspect_value,x.inspect_date,x.created_time").Find(&inspection).Error
  892. return inspection, total, err
  893. }
  894. func GetInspectionDetail(patientid int64, date int64, orgid int64, projectid int64) (inspection []*models.Inspections, err error) {
  895. db := XTReadDB().Table("xt_inspection as x").Where("x.status =1")
  896. table := XTReadDB().Table("xt_inspection_reference as r")
  897. fmt.Print("table", table)
  898. if patientid > 0 {
  899. db = db.Where("x.patient_id = ?", patientid)
  900. }
  901. if date > 0 {
  902. db = db.Where("x.inspect_date = ?", date)
  903. }
  904. if orgid > 0 {
  905. db = db.Where("x.org_id = ?", orgid)
  906. }
  907. if projectid > 0 {
  908. db = db.Where("x.project_id = ?", projectid)
  909. }
  910. err = db.Group("x.id").Select("x.id,x.patient_id,x.org_id,x.project_id,x.item_id,x.item_name,x.project_name,x.inspect_type,x.inspect_value,x.inspect_date,x.status,x.created_time,x.updated_time,r.range_type,r.range_min,r.range_max,r.range_value,r.range_options,r.unit").Joins("left join xt_inspection_reference as r on r.item_id = x.item_id ").Scan(&inspection).Error
  911. return inspection, err
  912. }
  913. func CreateFeedBack(feedback *models.XtPatientFeedback) error {
  914. err := XTWriteDB().Model(&feedback).Create(&feedback).Error
  915. return err
  916. }
  917. func DeleteInspection(date int64, orgid int64) error {
  918. err := XTWriteDB().Model(models.Inspection{}).Where("inspect_date = ? and org_id = ?", date, orgid).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  919. return err
  920. }
  921. func DeleteChildInspection(name string, date int64, orgid int64) error {
  922. err := XTWriteDB().Model(models.Inspection{}).Where("project_name = ? and inspect_date = ? and org_id = ?", name, date, orgid).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  923. return err
  924. }
  925. func SaveMessage(id int64, orgid int64, role *models.SgjUserAdminRole) error {
  926. err := UserWriteDB().Model(models.SgjUserAdminRole{}).Where("admin_user_id = ? and org_id = ?", id, orgid).Update(map[string]interface{}{"message": role.Message, "mtime": time.Now().Unix()}).Error
  927. return err
  928. }
  929. func SaveSex(id int64, role *models.SgjUserAdminRole) error {
  930. err := UserWriteDB().Model(models.SgjUserAdminRole{}).Where("admin_user_id = ?", id).Update(map[string]interface{}{"sex": role.Sex, "mtime": time.Now().Unix()}).Error
  931. return err
  932. }
  933. func SaveBirthday(id int64, role *models.SgjUserAdminRole) error {
  934. err := UserWriteDB().Model(models.SgjUserAdminRole{}).Where("admin_user_id = ?", id).Update(map[string]interface{}{"birthday": role.Birthday, "mtime": time.Now().Unix()}).Error
  935. return err
  936. }
  937. func GetPartitionByName(name string, orgid int64) (*models.DeviceZone, error) {
  938. zone := models.DeviceZone{}
  939. err := XTReadDB().Model(&zone).Where("name = ? and org_id = ? and status = 1", name, orgid).Find(&zone).Error
  940. if err == gorm.ErrRecordNotFound {
  941. return nil, err
  942. }
  943. if err != nil {
  944. return nil, err
  945. }
  946. return &zone, nil
  947. }
  948. func GetPartitionByNameOne(name string, orgid int64) (zone models.DeviceZone, err error) {
  949. err = XTReadDB().Model(&zone).Where("name = ? and org_id = ? and status = 1", name, orgid).First(&zone).Error
  950. return zone, err
  951. }
  952. func CreatedZone(zone *models.DeviceZone) error {
  953. err := XTWriteDB().Model(&zone).Create(&zone).Error
  954. return err
  955. }
  956. func GetAllZone(orgid int64, page int64, limit int64) (zone []*models.DeviceZones, total int64, err error) {
  957. db := XTReadDB().Table("xt_device_zone as x").Where("x.status =1")
  958. table := XTReadDB().Table("xt_device_number as n")
  959. fmt.Println("table", table)
  960. if orgid > 0 {
  961. db = db.Where("x.org_id = ?", orgid)
  962. }
  963. offset := (page - 1) * limit
  964. err = db.Group("x.id").Count(&total).Offset(offset).Limit(limit).Order("x.ctime desc").Select("x.id,x.org_id,x.name,x.type,n.number").Joins("left join xt_device_number as n on n.zone_id = x.id AND n.status = 1").Scan(&zone).Error
  965. return zone, total, err
  966. }
  967. func DeleteZoneById(id int64) error {
  968. err := XTWriteDB().Model(models.DeviceZone{}).Where("id=?", id).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  969. return err
  970. }
  971. func GetGroupByName(name string, orgid int64) (*models.DeviceGroup, error) {
  972. group := models.DeviceGroup{}
  973. err := XTReadDB().Model(&group).Where("name = ? and org_id = ? and status = 1", name, orgid).Find(&group).Error
  974. if err == gorm.ErrRecordNotFound {
  975. return nil, err
  976. }
  977. if err != nil {
  978. return nil, err
  979. }
  980. return &group, nil
  981. }
  982. func GetGroupByNameOne(name string, orgid int64) (group models.DeviceGroup, err error) {
  983. err = XTReadDB().Model(&group).Where("name = ? and org_id = ? and status =1", name, orgid).First(&group).Error
  984. return group, err
  985. }
  986. func SaveGroup(group *models.DeviceGroup) error {
  987. err := XTWriteDB().Model(&group).Create(&group).Error
  988. return err
  989. }
  990. func GetAllGroup(orgid int64, page int64, limit int64) (group []*models.DeviceGroups, total int64, err error) {
  991. db := XTReadDB().Table("xt_device_group as x").Where("x.status = 1")
  992. table := XTReadDB().Table("xt_device_number as n")
  993. fmt.Println("table", table)
  994. if orgid > 0 {
  995. db = db.Where("x.org_id = ?", orgid)
  996. }
  997. offset := (page - 1) * limit
  998. err = db.Group("x.id").Count(&total).Offset(offset).Limit(limit).Order("x.ctime desc").Select("x.id,x.org_id,x.name,x.status,x.ctime,x.mtime,n.number").Joins("left join xt_device_number as n on n.group_id = x.id And n.status = 1").Scan(&group).Error
  999. return group, total, err
  1000. }
  1001. func DeleteGroup(id int64) error {
  1002. err := XTWriteDB().Model(models.DeviceGroup{}).Where("id=?", id).Update(map[string]interface{}{"status": 0, "updated_time": time.Now().Unix()}).Error
  1003. return err
  1004. }
  1005. func GetAllZoneOne(orgid int64) (zone []*models.DeviceZone, err error) {
  1006. err = XTReadDB().Model(&zone).Where("org_id = ?", orgid).Find(&zone).Error
  1007. return zone, err
  1008. }
  1009. func GetAllGroupOne(orgid int64) (group []*models.DeviceGroup, err error) {
  1010. err = XTReadDB().Model(&group).Where("org_id =?", orgid).Find(&group).Error
  1011. return group, err
  1012. }
  1013. func GetBedByName(name string, orgid int64) (*models.DeviceNumber, error) {
  1014. number := models.DeviceNumber{}
  1015. err := XTReadDB().Model(&number).Where("number=? and org_id = ? and status =1", name, orgid).Find(&number).Error
  1016. if err == gorm.ErrRecordNotFound {
  1017. return nil, err
  1018. }
  1019. if err != nil {
  1020. return nil, err
  1021. }
  1022. return &number, nil
  1023. }
  1024. func GetBedByNameOne(name string, orgid int64) (number models.DeviceNumber, err error) {
  1025. err = XTReadDB().Model(&number).Where("number=? and org_id = ? and status = 1", name, orgid).First(&number).Error
  1026. return number, err
  1027. }
  1028. func CreateNumber(number *models.DeviceNumber) error {
  1029. err := XTWriteDB().Model(&number).Create(&number).Error
  1030. return err
  1031. }
  1032. func GetAllNumber(page int64, limit int64, orgid int64) (number []*models.DeviceNumber, total int64, err error) {
  1033. db := XTReadDB().Table("xt_device_number as x").Where("x.status = 1")
  1034. if orgid > 0 {
  1035. db = db.Where("x.org_id = ?", orgid)
  1036. }
  1037. offset := (page - 1) * limit
  1038. err = db.Count(&total).Offset(offset).Limit(limit).Order("x.ctime asc").Select("x.id,x.org_id,x.number,x.group_id,x.zone_id,x.status").Find(&number).Error
  1039. return number, total, err
  1040. }
  1041. func GetSchedu(bedid int64, thetime int64, orgid int64) (*models.XtSchedule, error) {
  1042. schedule := models.XtSchedule{}
  1043. err := XTReadDB().Model(&schedule).Where("bed_id = ? and schedule_date = ? and user_org_id = ? and status = 1", bedid, thetime, orgid).Find(&schedule).Error
  1044. if err == gorm.ErrRecordNotFound {
  1045. return nil, err
  1046. }
  1047. if err != nil {
  1048. return nil, err
  1049. }
  1050. return &schedule, nil
  1051. }
  1052. func DeleteBed(id int64) error {
  1053. err := XTWriteDB().Model(models.DeviceNumber{}).Where("id=?", id).Update(map[string]interface{}{"status": 0, "ctime": time.Now().Unix()}).Error
  1054. return err
  1055. }
  1056. func GetMemberPatient(orgid int64) (patients []*models.XtPatientsNew, err error) {
  1057. err = XTReadDB().Model(&patients).Where("user_org_id = ? AND member_patients = ? AND status = 1", orgid, 1).Find(&patients).Error
  1058. return patients, err
  1059. }
  1060. func GetSlowPatient(orgid int64) (patients []*models.XtPatientsNew, err error) {
  1061. err = XTReadDB().Model(&patients).Where("user_org_id = ? AND slow_patients = ? AND status = 1", orgid, 1).Find(&patients).Error
  1062. return patients, err
  1063. }
  1064. func GetBloodPatient(orgid int64) (patients []*models.XtPatientsNew, err error) {
  1065. err = XTReadDB().Model(&patients).Where("user_org_id = ? AND blood_patients = ? AND status = 1", orgid, 1).Find(&patients).Error
  1066. return patients, err
  1067. }
  1068. func SaveName(id int64, admin *models.SgjUserAdmin) error {
  1069. err = UserWriteDB().Model(models.SgjUserAdmin{}).Where("id=?", id).Update(map[string]interface{}{"name": admin.Name, "mtime": time.Now().Unix()}).Error
  1070. return err
  1071. }
  1072. func GetAdminUserId(id int64) (models.SgjUserAdminRole, error) {
  1073. role := models.SgjUserAdminRole{}
  1074. err := UserReadDB().Where("id=? and status =1", id).Find(&role).Error
  1075. return role, err
  1076. }
  1077. func GetMyOrganaziton(id int64) (org []*models.SgjUserOrg, err error) {
  1078. db := UserReadDB().Table("sgj_user_org as x").Where("x.status = 1")
  1079. table := UserReadDB().Table("sgj_user_admin as a")
  1080. fmt.Println("table", table)
  1081. err = db.Select("x.id,x.creator,x.org_name,x.org_short_name,x.org_logo,x.org_introduction,x.illness,x.province,x.city,x.district,x.address,x.longitude,x.latitude,x.org_type,x.comments,x.evaluate,x.gallery,x.business_week,x.business_time,x.contact_name,x.telephone,x.claim,x.operating_state,x.source,x.ttype,x.ttid,x.tuid,x.reason,x.level,x.website,x.import,x.sortno,a.is_super_admin").Joins("left join sgj_user_admin as a on a.id = x.creator").Where("x.creator = ?", id).Scan(&org).Error
  1082. return org, err
  1083. }
  1084. func GetOrgInformation(id int64) (models.SgjUserOrg, error) {
  1085. org := models.SgjUserOrg{}
  1086. err := UserReadDB().Where("id=? and status = 1", id).Find(&org).Error
  1087. return org, err
  1088. }
  1089. func GetShortName(orgtype int64) (models.SgjUserOrgType, error) {
  1090. orgType := models.SgjUserOrgType{}
  1091. err := UserReadDB().Model(&orgType).Where("id=? and status = 1", orgtype).Find(&orgType).Error
  1092. return orgType, err
  1093. }
  1094. func GetTypeName(id int64) (models.SgjUserOrgType, error) {
  1095. orgType := models.SgjUserOrgType{}
  1096. err := UserReadDB().Model(&orgType).Where("id=? and status = 1", id).Find(&orgType).Error
  1097. return orgType, err
  1098. }
  1099. func GetOrgProvince(id int64) (models.SgjUserDistrict, error) {
  1100. district := models.SgjUserDistrict{}
  1101. err := UserReadDB().Model(&district).Where("id=?", id).Find(&district).Error
  1102. return district, err
  1103. }
  1104. func GetAllOrgType() (orgType []*models.SgjUserOrgType, err error) {
  1105. err = UserReadDB().Model(&models.SgjUserOrgType{}).Where("status= ? AND id = ? OR id = ? OR id = ? OR id = ? OR id = ? OR id = ?", 1, 1, 7, 12, 16, 21, 26).Find(&orgType).Error
  1106. return
  1107. }
  1108. func UpdateOrg(id int64, org models.SgjUserOrg) error {
  1109. err := UserWriteDB().Model(&org).Where("id = ?", id).Update(map[string]interface{}{"org_name": org.OrgName, "org_short_name": org.OrgShortName, "province": org.Province, "city": org.City, "district": org.District, "address": org.Address, "org_type": org.OrgType, "telephone": org.Telephone, "contact_name": org.ContactName, "mtime": time.Now().Unix()}).Error
  1110. return err
  1111. }
  1112. func GetMyInfoName(id int64) (models.SgjUserAdminRole, error) {
  1113. role := models.SgjUserAdminRole{}
  1114. err := UserReadDB().Model(&role).Where("id=? and status = 1", id).Find(&role).Error
  1115. return role, err
  1116. }
  1117. func GetAdminName(id int64, orgid int64) (models.AdminUsers, error) {
  1118. user := models.AdminUsers{}
  1119. //err := UserReadDB().Model(&user).Where("id=? and status =1", id).Find(&user).Error
  1120. //return user, err
  1121. db := UserReadDB().Table("sgj_user_admin as x").Where("x.status = 1")
  1122. table := UserReadDB().Table("sgj_user_admin_role as r")
  1123. fmt.Println("table", table)
  1124. err := db.Group("x.id").Select("x.id,x.mobile,x.password,x.is_super_admin,x.source,x.name,r.admin_user_id,r.org_id,r.app_id,r.role_id,r.user_name,r.avatar,r.message,r.sex,r.birthday").Where("x.id = ?", id).Joins("left join sgj_user_admin_role as r on r.admin_user_id = x.id and r.org_id = ?", orgid).Scan(&user).Error
  1125. return user, err
  1126. }
  1127. func GetCreatByOrgId(orgid int64) (models.SgjUserOrg, error) {
  1128. org := models.SgjUserOrg{}
  1129. err := UserReadDB().Model(&org).Where("id=? and status = 1", orgid).Find(&org).Error
  1130. return org, err
  1131. }
  1132. func GetMyOrgInformationFour(creator int64, orgid int64) (models.SgjUserAdminRole, error) {
  1133. role := models.SgjUserAdminRole{}
  1134. err := UserReadDB().Model(&role).Where("admin_user_id = ? and org_id = ? and status = 1", creator, orgid).Find(&role).Error
  1135. return role, err
  1136. }
  1137. func GetPartionDetail(id int64) (models.DeviceZone, error) {
  1138. zone := models.DeviceZone{}
  1139. err := XTReadDB().Model(&zone).Where("id=? and status = 1", id).Find(&zone).Error
  1140. return zone, err
  1141. }
  1142. func UpdatePartition(id int64, zone *models.DeviceZone) error {
  1143. err := XTWriteDB().Model(&zone).Where("id=?", id).Update(map[string]interface{}{"name": zone.Name, "type": zone.Type, "mtime": time.Now().Unix()}).Error
  1144. return err
  1145. }
  1146. func GetGroupDetail(id int64) (models.DeviceGroup, error) {
  1147. group := models.DeviceGroup{}
  1148. err := XTReadDB().Model(&group).Where("id=? and status = 1", id).Find(&group).Error
  1149. return group, err
  1150. }
  1151. func UpdateGroup(id int64, group *models.DeviceGroup) error {
  1152. err := XTWriteDB().Model(&group).Where("id=?", id).Update(map[string]interface{}{"name": group.Name, "mtime": time.Now().Unix()}).Error
  1153. return err
  1154. }
  1155. func GetBedDetail(id int64) (models.DeviceNumber, error) {
  1156. number := models.DeviceNumber{}
  1157. err := XTReadDB().Model(&number).Where("id=? and status =1", id).Find(&number).Error
  1158. return number, err
  1159. }
  1160. func UpdatedBed(id int64, number *models.DeviceNumber) error {
  1161. err = XTWriteDB().Model(&number).Where("id=?", id).Update(map[string]interface{}{"number": number.Number, "zone_id": number.ZoneID, "group_id": number.GroupID, "mtime": time.Now().Unix()}).Error
  1162. return err
  1163. }
  1164. func CreateLoginLod(log *models.SgjUserAdminLoginLog) error {
  1165. err := UserWriteDB().Model(&log).Create(&log).Error
  1166. return err
  1167. }
  1168. func GetAppId(orgid int64) (models.OrgApp, error) {
  1169. app := models.OrgApp{}
  1170. err := UserReadDB().Model(&app).Where("org_id = ? and status = 1 and app_type = 3", orgid).Find(&app).Error
  1171. return app, err
  1172. }
  1173. func GetRoleName(adminid int64, orgid int64, appid int64) (models.Roles, error) {
  1174. role := models.Roles{}
  1175. err := UserReadDB().Model(&role).Where("creator = ? and org_id = ? and app_id = ? and status =1", adminid, orgid, appid).Find(&role).Error
  1176. return role, err
  1177. }
  1178. func GetRole(id int64) (models.Role, error) {
  1179. role := models.Role{}
  1180. err := UserReadDB().Model(&role).Where("id = ? and status =1", id).Find(&role).Error
  1181. return role, err
  1182. }
  1183. func GetPositionName(adminid int64, orgid int64, appid int64) (models.App_Role, error) {
  1184. role := models.App_Role{}
  1185. err := UserReadDB().Model(&role).Where("admin_user_id = ? and org_id = ? and app_id = ?", adminid, orgid, appid).Find(&role).Error
  1186. return role, err
  1187. }
  1188. func GetAdmin(id int64) (models.SgjUserAdmin, error) {
  1189. admin := models.SgjUserAdmin{}
  1190. err := UserReadDB().Model(&admin).Where("id=? and status =1", id).Find(&admin).Error
  1191. return admin, err
  1192. }
  1193. func GetPosition(id int64) (models.SgjUserAdminRole, error) {
  1194. roles := models.SgjUserAdminRole{}
  1195. err = UserReadDB().Model(&roles).Where("id=? and status = 1", id).Find(&roles).Error
  1196. return roles, err
  1197. }
  1198. func GetPositionOne(id int64) (models.SgjUserAdmin, error) {
  1199. admin := models.SgjUserAdmin{}
  1200. err = UserReadDB().Model(&admin).Where("id=? and status = 1", id).Find(&admin).Error
  1201. return admin, err
  1202. }
  1203. func GetMyOrgInformation(id int64, appid int64) (models.SgjUserAdminRole, error) {
  1204. admin := models.SgjUserAdminRole{}
  1205. err := UserReadDB().Model(&admin).Where("admin_user_id=? and app_id = ? and status = 1", id, appid).First(&admin).Error
  1206. return admin, err
  1207. }
  1208. func SaveNameTwo(id int64, orgid int64, role *models.SgjUserAdminRole) error {
  1209. err := UserWriteDB().Model(models.SgjUserAdminRole{}).Where("admin_user_id =? and org_id = ?", id, orgid).Update(map[string]interface{}{"user_name": role.UserName, "mtime": time.Now().Unix()}).Error
  1210. return err
  1211. }