user_service.go 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. package service
  2. import (
  3. "XT_New/models"
  4. "fmt"
  5. "github.com/jinzhu/gorm"
  6. "time"
  7. )
  8. func GetAdminUserByUserID(userID int64) (*models.AdminUser, error) {
  9. var user models.AdminUser
  10. err := readUserDb.Model(&models.AdminUser{}).Where("id = ?", userID).First(&user).Error
  11. if err != nil {
  12. if err == gorm.ErrRecordNotFound {
  13. return nil, nil
  14. } else {
  15. return nil, err
  16. }
  17. }
  18. return &user, nil
  19. }
  20. type AdminUserList struct {
  21. Id int64 `json:"id"`
  22. Name string `json:"name"`
  23. UserType int64 `json:"user_type"`
  24. Status int64 `json:"status"`
  25. }
  26. func GetAllDoctorAndNurse(orgId, appid int64) (doctors []AdminUserList, nurses []AdminUserList, err error) {
  27. var users []AdminUserList
  28. err = readUserDb.Table("sgj_user_admin_role as uar").Joins("JOIN sgj_user_admin as ua ON ua.id = uar.admin_user_id").Where("uar.status=1 and org_id=? and app_id =? and uar.user_type IN (2,3) and ua.status=1", orgId, appid).Select("ua.id, uar.user_name as name, uar.user_type,uar.status").Scan(&users).Error
  29. if err != nil {
  30. return
  31. }
  32. if len(users) == 0 {
  33. return
  34. }
  35. for _, item := range users {
  36. if item.UserType == 2 {
  37. doctors = append(doctors, item)
  38. } else {
  39. nurses = append(nurses, item)
  40. }
  41. }
  42. return
  43. }
  44. func GetAllDoctorAndNurseSix(orgId, appid int64) (doctors []AdminUserList, nurses []AdminUserList, err error) {
  45. var users []AdminUserList
  46. err = readUserDb.Table("sgj_user_admin_role as uar").Joins("JOIN sgj_user_admin as ua ON ua.id = uar.admin_user_id").Where("org_id=? and app_id =? and uar.user_type IN (2,3)", orgId, appid).Select("ua.id, uar.user_name as name, uar.user_type,uar.status").Scan(&users).Error
  47. if err != nil {
  48. return
  49. }
  50. if len(users) == 0 {
  51. return
  52. }
  53. for _, item := range users {
  54. if item.UserType == 2 {
  55. doctors = append(doctors, item)
  56. } else {
  57. nurses = append(nurses, item)
  58. }
  59. }
  60. return
  61. }
  62. func GetAllAdminUsers(orgId, appid int64) (list []*AdminUserList, err error) {
  63. err = readUserDb.Table("sgj_user_admin_role as uar").Joins("JOIN sgj_user_admin as ua ON ua.id = uar.admin_user_id").Where("uar.org_id=? and uar.app_id =? and ua.status=1", orgId, appid).Select("ua.id, uar.user_name as name, uar.user_type,uar.status").Scan(&list).Error
  64. //err = readUserDb.Table("sgj_user_admin_role as uar").Joins("JOIN sgj_user_admin as ua ON ua.id = uar.admin_user_id").Where("uar.status=1 and ua.status=1").Select("ua.id, uar.user_name as name, uar.user_type").Scan(&list).Error
  65. return
  66. }
  67. func GetAllAdminUsersTwo(orgId int64) (list []*AdminUserList, err error) {
  68. err = readUserDb.Table("sgj_user_admin_role as uar").Joins("JOIN sgj_user_admin as ua ON ua.id = uar.admin_user_id").Where("uar.status=1 and uar.org_id=? and ua.status=1", orgId).Select("ua.id, uar.user_name as name, uar.user_type,uar.status").Scan(&list).Error
  69. //err = readUserDb.Table("sgj_user_admin_role as uar").Joins("JOIN sgj_user_admin as ua ON ua.id = uar.admin_user_id").Where("uar.status=1 and ua.status=1").Select("ua.id, uar.user_name as name, uar.user_type").Scan(&list).Error
  70. return
  71. }
  72. func GetAdminUser(orgId, appid, id int64) (*AdminUserList, error) {
  73. var err error
  74. var user AdminUserList
  75. err = readUserDb.Table("sgj_user_admin_role as uar").Joins("JOIN sgj_user_admin as ua ON ua.id = uar.admin_user_id").Where("uar.status=1 and uar.org_id=? and uar.app_id =? and uar.admin_user_id = ? and ua.status=1", orgId, appid, id).Select("ua.id, uar.user_name as name, uar.user_type,uar.status").Order("uar.id ASC").Take(&user).Error
  76. if err == gorm.ErrRecordNotFound {
  77. return nil, nil
  78. }
  79. if err != nil {
  80. return nil, err
  81. }
  82. return &user, nil
  83. }
  84. func GetSgjUserByMobild(mobile string) (user models.SgjUser, err error) {
  85. err = readUserDb.Model(&models.SgjUser{}).Where("mobile=?", mobile).First(&user).Error
  86. return
  87. }
  88. func GetSgjCoustomerByMobile(orgId int64, mobile string) (*models.SgjCustomer, error) {
  89. var c models.SgjCustomer
  90. var err error
  91. err = readUserDb.Model(&models.SgjCustomer{}).Where("user_org_id=? and mobile=?", orgId, mobile).First(&c).Error
  92. return &c, err
  93. }
  94. func GetAllGeneralAdminUsers(orgId, appid int64) (users []AdminUserList, err error) {
  95. err = readUserDb.Table("sgj_user_admin_role as uar").Joins("JOIN sgj_user_admin as ua ON ua.id = uar.admin_user_id").Where("uar.status=1 and org_id=? and app_id =? and uar.user_type <> 1 and ua.status=1", orgId, appid).Select("ua.id, uar.user_name as name, uar.user_type").Scan(&users).Error
  96. return
  97. }
  98. func GetDryWeightByPatientId(patientid int64, orgid int64) (pre []*models.SgjPatientDryweight, err error) {
  99. err = XTReadDB().Where("patient_id = ? AND user_org_id = ?", patientid, orgid).Last(&pre).Error
  100. return pre, err
  101. }
  102. func GetAllDoctor(orgid int64, appid int64) (appRole []*models.App_Role, err error) {
  103. err = UserReadDB().Where("org_id = ? AND app_id = ? AND status = ? AND (user_type = ? OR user_type = ?) ", orgid, appid, 1, 2, 1).Find(&appRole).Error
  104. return appRole, err
  105. }
  106. func GetAllDoctorThree(orgid int64) (appRole []*models.App_Role, err error) {
  107. err = UserReadDB().Where("org_id = ? AND status = ? AND (user_type = ? OR user_type = ?) ", orgid, 1, 2, 1).Find(&appRole).Error
  108. return appRole, err
  109. }
  110. func QueryDryWeight(orgid int64, patientid int64) (*models.SgjPatientDryweight, error) {
  111. var dryweight models.SgjPatientDryweight
  112. var err error
  113. err = XTReadDB().Where("user_org_id = ? AND patient_id = ?", orgid, patientid).Find(&dryweight).Error
  114. if err == gorm.ErrRecordNotFound {
  115. return nil, err
  116. }
  117. if err != nil {
  118. return nil, err
  119. }
  120. return &dryweight, nil
  121. }
  122. func CreatePatientWeight(dryweight *models.SgjPatientDryweight) error {
  123. err := XTWriteDB().Create(&dryweight).Error
  124. return err
  125. }
  126. func GetLastData(orgid int64) (models.SgjPatientDryweight, error) {
  127. dryweight := models.SgjPatientDryweight{}
  128. err := XTReadDB().Where("user_org_id = ? AND status = ?", orgid, 1).Last(&dryweight).Error
  129. return dryweight, err
  130. }
  131. func UpdateDialysisPrescription(patientid int64, orgid int64, dryweight float64, prescription models.PredialysisEvaluation) error {
  132. err := XTWriteDB().Model(&prescription).Where("patient_id = ? AND user_org_id = ? and assessment_date = ?", patientid, orgid, prescription.AssessmentDate).Update(map[string]interface{}{"dry_weight": prescription.DryWeight, "mtime": time.Now().Unix()}).Error
  133. fmt.Println("错误是设么", err)
  134. return err
  135. }
  136. func GetAllData(orgid int64, id int64, page int64, limit int64) (dry []*models.XtPatientDryweight, total int64, err error) {
  137. offset := (page - 1) * limit
  138. table := XTReadDB().Table("sgj_users.sgj_user_admin_role AS a")
  139. fmt.Println("table", table)
  140. err = XTReadDB().Table("xt_patient_dryweight as x").Select("x.id,x.dry_weight,x.creator,x.remakes,x.patient_id,x.ctime,x.status,x.user_org_id,x.adjusted_value,a.user_name").Where("x.user_org_id = ? AND x.patient_id = ? AND x.status = ? ", orgid, id, 1).Count(&total).Joins("LEFT JOIN sgj_users.sgj_user_admin_role AS a ON a.admin_user_id = x.creator").Order("x.ctime desc").Offset(offset).Limit(limit).Group("id").Scan(&dry).Error
  141. if err != nil {
  142. return
  143. }
  144. return
  145. }
  146. func GetDryWeightDetailById(id int64) (models.SgjPatientDryweight, error) {
  147. dryweight := models.SgjPatientDryweight{}
  148. err := XTReadDB().Model(&dryweight).Where("id=? and status = 1", id).Find(&dryweight).Error
  149. return dryweight, err
  150. }
  151. func ModifyDryWeightData(adjust *models.SgjPatientDryweight, id int64) error {
  152. err := XTWriteDB().Model(&adjust).Where("id=?", id).Updates(map[string]interface{}{"dry_weight": adjust.DryWeight, "creator": adjust.Creator, "remakes": adjust.Remakes, "adjusted_value": adjust.AdjustedValue}).Error
  153. return err
  154. }
  155. func GetAllHisDoctor(orgid int64) (appRole []*models.App_Role, err error) {
  156. err = UserReadDB().Where("org_id = ? AND status = 1 AND (user_type = ? OR user_type = ?) ", orgid, 2, 1).Find(&appRole).Error
  157. return appRole, err
  158. }