Explorar el Código

fix:增用户信息权限显示

zqbao hace 9 meses
padre
commit
1cec5f5730
Se han modificado 2 ficheros con 35 adiciones y 0 borrados
  1. 34 0
      controllers/user.go
  2. 1 0
      models/user.go

+ 34 - 0
controllers/user.go

@@ -430,6 +430,27 @@ func (this *UserAuthController) Info() {
 		br.ErrMsg = "查询失败,系统异常,Err:" + err.Error()
 		return
 	}
+	private, err := services.GetPrivateChartPermissionList()
+	if err != nil {
+		br.Msg = "查询失败"
+		br.ErrMsg = "查询失败,系统异常,Err:" + err.Error()
+		return
+	}
+	if private.Ret != 200 {
+		br.Msg = private.Msg
+		br.ErrMsg = private.ErrMsg
+		return
+	}
+	userPermissionIds, err := models.GetChartPermissionIdByUserId(user.UserId)
+	if err != nil {
+		br.Msg = "查看权限失败"
+		br.ErrMsg = "查看权限失败,系统异常,Err:" + err.Error()
+		return
+	}
+	userPermissionMap := make(map[int]struct{})
+	for _, v := range userPermissionIds {
+		userPermissionMap[v] = struct{}{}
+	}
 	if seller == nil {
 		// 添加默认的销售电话
 		seller = &models.SysUser{
@@ -437,6 +458,18 @@ func (this *UserAuthController) Info() {
 			AreaCode: utils.DefaultAreaCode,
 		}
 	}
+	var hasPermission string
+	for _, v := range private.Data {
+		for _, vv := range v.Child {
+			if _, ok := userPermissionMap[vv.ChartPermissionId]; ok {
+				hasPermission = "私有权限"
+				break
+			}
+		}
+	}
+	if hasPermission == "" {
+		hasPermission = "公有权限"
+	}
 
 	userView := &models.UserView{
 		Headimgurl:     user.Headimgurl,
@@ -446,6 +479,7 @@ func (this *UserAuthController) Info() {
 		SellerName:     seller.SysRealName,
 		SellerPhone:    seller.Phone,
 		SellerAreaCode: seller.AreaCode,
+		HasPermission:  hasPermission,
 		Email:          user.Email,
 		Componey:       user.Company,
 		IsRegistered:   user.IsRegistered,

+ 1 - 0
models/user.go

@@ -71,6 +71,7 @@ type UserView struct {
 	SellerAreaCode string `description:"销售电话区号"`
 	Email          string `description:"邮箱"`
 	Componey       string `description:"所属公司"`
+	HasPermission  string `description:"拥有权限"`
 	ValidEndTime   string `description:"服务截至时间"`
 	IsRegistered   bool   `description:"是否注册:1:已注册,0:未注册"`
 	Status         int    `description:"用户类型: 0表示禁用,1表示潜在客户,2表示正式客户"`