|
@@ -497,10 +497,36 @@ func GetActivityDetailUserPower(user *models.WxUserItem, activityInfo *models.Ac
|
|
|
var companyDetailStatus string
|
|
|
var userTypeStr string
|
|
|
//如果是弘则的用户或者宏观的权限不做校验
|
|
|
- if user.CompanyId == utils.HZ_COMPANY_ID || activityInfo.ChartPermissionName == utils.HONG_GUAN_NAME {
|
|
|
+ if GetBelongingRai(user.Mobile) || activityInfo.ChartPermissionName == utils.HONG_GUAN_NAME {
|
|
|
havePower = true
|
|
|
return
|
|
|
}
|
|
|
+ //处理决策人可见权限
|
|
|
+ if user.IsMaker == 0 && activityInfo.IsMakerShow == 1 {
|
|
|
+ havePower = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 处理本组可见权限
|
|
|
+ if activityInfo.VisibleRange == 1 {
|
|
|
+ adminIds, e := models.GetSelleridWhichGroup(user.CompanyId, 2)
|
|
|
+ if e != nil {
|
|
|
+ err = errors.New("GetSelleridWhichGroup, Err: " + e.Error())
|
|
|
+ return
|
|
|
+ }
|
|
|
+ haveVisibleRange := false
|
|
|
+ adminIdSlice := strings.Split(adminIds, ",")
|
|
|
+
|
|
|
+ for _, v := range adminIdSlice {
|
|
|
+ if v == strconv.Itoa(activityInfo.AdminId) {
|
|
|
+ haveVisibleRange = true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if !haveVisibleRange {
|
|
|
+ havePower = false
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
userType, permissionStr, permissionStrZhengShi, e := GetUserTypeZhengShi(user.CompanyId)
|
|
|
if e != nil {
|
|
|
err = errors.New("GetCompanyPermissionUpgrade, Err: " + e.Error())
|