Browse Source

海通国际15个人数上限

xingzai 2 years ago
parent
commit
118bff43fd
3 changed files with 24 additions and 1 deletions
  1. 4 1
      controllers/home.go
  2. 7 0
      models/wx_user.go
  3. 13 0
      services/htgj.go

+ 4 - 1
controllers/home.go

@@ -211,6 +211,9 @@ func (this *BaseHomeController) ListHomePublic() {
 			br.ErrMsg = "获取数据失败,Err:" + errHt.Error()
 			return
 		}
+		if errMsg != "机构下账号个数已达上限" {
+			goto Loop
+		}
 		if errMsg != "" {
 			br.Msg = errMsg
 			return
@@ -229,7 +232,7 @@ func (this *BaseHomeController) ListHomePublic() {
 			return
 		}
 	}
-
+Loop:
 	pageSize, _ := this.GetInt("PageSize")
 	currentIndex, _ := this.GetInt("CurrentIndex")
 	chartPermissionId, _ := this.GetInt("ChartPermissionId")

+ 7 - 0
models/wx_user.go

@@ -297,6 +297,13 @@ func GetUserCountByThirdName(companyId int, name string) (count int, err error)
 	return
 }
 
+//获取公司下一共有多少用户
+func GetUserCountByCompanyId(companyId int) (count int, err error) {
+	sql := `SELECT  COUNT(1) AS count FROM wx_user WHERE company_id = ? `
+	err = orm.NewOrm().Raw(sql, companyId).QueryRow(&count)
+	return
+}
+
 func UpdateUserMobile(uid int, mobile string) (err error) {
 	sql := ` UPDATE wx_user SET mobile=?
 			WHERE user_id=? `

+ 13 - 0
services/htgj.go

@@ -12,6 +12,9 @@ import (
 func CheckHtgj(companyCodeHt, companyNameHt, email, sign string) (errMsg string, errHt error, user *models.WxUser, companyName string) {
 	errMsg = CheckSign(companyCodeHt+companyNameHt+email, sign)
 	if errMsg != "" {
+		if errMsg == "机构下账号个数已达上限" {
+			return
+		}
 		errMsg = "签名方式错误!"
 		return
 	}
@@ -202,6 +205,16 @@ func CheckHtgj(companyCodeHt, companyNameHt, email, sign string) (errMsg string,
 	}
 	countUser, err := models.GetUserCountByThirdName(int(companyId), wxuUserName)
 	if countUser == 0 {
+
+		countCompanyUser, err := models.GetUserCountByThirdName(int(companyId), wxuUserName)
+		if err != nil {
+			errHt = err
+			return
+		}
+		if countCompanyUser >= 15 {
+			errMsg = "机构下账号个数已达上限"
+			return
+		}
 		wxUser.CompanyId = int(companyId)
 		wxUser.RealName = wxuUserName
 		wxUser.Email = wxuUserName