|
@@ -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
|
}
|