Browse Source

开启状态

zhengchengwu 5 years ago
parent
commit
f5f995047c
2 changed files with 5 additions and 4 deletions
  1. 4 4
      controllers/verify_login_controller.go
  2. 1 0
      models/org_models.go

+ 4 - 4
controllers/verify_login_controller.go View File

152
 			didRegistedForCDM := false
152
 			didRegistedForCDM := false
153
 			didRegistedForXT := false
153
 			didRegistedForXT := false
154
 			for _, app := range orgApps {
154
 			for _, app := range orgApps {
155
-				if app.AppType == 1 {
155
+				if app.AppType == 1 && app.OpenStatus == 1 {
156
 					didRegistedForSCRM = true
156
 					didRegistedForSCRM = true
157
 				}
157
 				}
158
-				if app.AppType == 4 {
158
+				if app.AppType == 4 && app.OpenStatus == 1 {
159
 					didRegistedForCDM = true
159
 					didRegistedForCDM = true
160
 				}
160
 				}
161
-				if app.AppType == 5 {
161
+				if app.AppType == 5 && app.OpenStatus == 1 {
162
 					didRegistedForMall = true
162
 					didRegistedForMall = true
163
 				}
163
 				}
164
-				if app.AppType == 3 {
164
+				if app.AppType == 3 && app.OpenStatus == 1 {
165
 					didRegistedForXT = true
165
 					didRegistedForXT = true
166
 				}
166
 				}
167
 			}
167
 			}

+ 1 - 0
models/org_models.go View File

53
 	AppType    int   `gorm:"column:app_type" json:"app_type"`      // 应用类型 1.病友经营;2.科普号;3.血透经营;4.慢病管理
53
 	AppType    int   `gorm:"column:app_type" json:"app_type"`      // 应用类型 1.病友经营;2.科普号;3.血透经营;4.慢病管理
54
 	Creator    int   `json:"creator"`                              // 创建者,即管理员用户的 id
54
 	Creator    int   `json:"creator"`                              // 创建者,即管理员用户的 id
55
 	OrgId      int   `gorm:"column:org_id" json:"org_id"`
55
 	OrgId      int   `gorm:"column:org_id" json:"org_id"`
56
+	OpenStatus int   `gorm:"column:open_status" json:"open_status"`
56
 	Status     int8  `json:"status"`                    // 状态 0.无效 1.有效 2.禁用
57
 	Status     int8  `json:"status"`                    // 状态 0.无效 1.有效 2.禁用
57
 	CreateTime int64 `gorm:"column:ctime" json:"ctime"` // 创建时间
58
 	CreateTime int64 `gorm:"column:ctime" json:"ctime"` // 创建时间
58
 	ModifyTime int64 `gorm:"column:mtime" json:"mtime"` // 修改时间
59
 	ModifyTime int64 `gorm:"column:mtime" json:"mtime"` // 修改时间