|
@@ -34,7 +34,7 @@ func GetLoginInfor(mobile string) (models.XcxAdminUserRole, error) {
|
34
|
34
|
func GetMobilePatientInfo(mobile string) (*models.XcxPatients, error) {
|
35
|
35
|
|
36
|
36
|
patients := models.XcxPatients{}
|
37
|
|
- err := XTReadDB().Model(&patients).Where("(phone = ? or home_telephone ) and status = 1", mobile).Find(&patients).Error
|
|
37
|
+ err := XTReadDB().Model(&patients).Where("(phone = ? or home_telephone = ? ) and status = 1", mobile, mobile).Find(&patients).Error
|
38
|
38
|
if err == gorm.ErrRecordNotFound {
|
39
|
39
|
return nil, err
|
40
|
40
|
}
|