XMLWAN vor 3 Jahren
Ursprung
Commit
c7d6b538c1
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3 3
      service/xcx_mobile_api_service.go

+ 3 - 3
service/xcx_mobile_api_service.go Datei anzeigen

@@ -130,8 +130,8 @@ func GetWeekDayOfWeek() (weekMonday string) {
130 130
 func GetMobilePatient(mobile string, idcard string) (*models.XcxPatients, error) {
131 131
 
132 132
 	patient := models.XcxPatients{}
133
-	err := XTReadDB().Model(&patient).Where("(phone = ? or relative_phone =?) and id_card_no =?", mobile, mobile, idcard).Find(&patient).Error
134
-	//err := XTReadDB().Model(&patient).Where("id_card_no = ? and status = 1", mobile).Find(&patient).Error
133
+	err := XTReadDB().Model(&patient).Where("(phone = ? or relative_phone =?) and id_card_no = ?", mobile, mobile, idcard).Find(&patient).Error
134
+
135 135
 	if err == gorm.ErrRecordNotFound {
136 136
 		return nil, err
137 137
 	}
@@ -153,7 +153,7 @@ func GetTemplateMode(orgid int64) (models.XcxGobalTemplate, error) {
153 153
 func GetMobilePatientOne(mobile string) (*models.XcxAdminUserRole, error) {
154 154
 
155 155
 	patient := models.XcxAdminUserRole{}
156
-	err := XTReadDB().Model(&patient).Where("mobile = ? and status = 1", mobile).Find(&patient).Error
156
+	err := UserReadDB().Model(&patient).Where("mobile = ? and status = 1", mobile).Find(&patient).Error
157 157
 	if err == gorm.ErrRecordNotFound {
158 158
 		return nil, err
159 159
 	}