This commit is contained in:
苏尹岚
2021-01-21 17:37:12 +08:00
parent 5eeb60c12d
commit ada312f753
3 changed files with 30 additions and 5 deletions

View File

@@ -2,8 +2,11 @@ package cms
import ( import (
"fmt" "fmt"
"strings"
"time" "time"
"git.rosy.net.cn/baseapi/utils"
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext" "git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
"git.rosy.net.cn/jx-callback/business/model" "git.rosy.net.cn/jx-callback/business/model"
"git.rosy.net.cn/jx-callback/business/model/dao" "git.rosy.net.cn/jx-callback/business/model/dao"
@@ -105,10 +108,18 @@ func AddRole(ctx *jxcontext.Context, name string) (err error) {
return err return err
} }
func UpdateRole(ctx *jxcontext.Context, roleID int, name string, isDelete bool) (num int64, err error) { func UpdateRole(ctx *jxcontext.Context, roleID int, name string, isDelete bool, brandID int, cityCodes, storeIDs []int) (num int64, err error) {
var ( var (
db = dao.GetDB() db = dao.GetDB()
cityCodesStr []string
storeIDsStr []string
) )
for _, v := range cityCodes {
cityCodesStr = append(cityCodesStr, utils.Int2Str(v))
}
for _, v := range storeIDs {
storeIDsStr = append(storeIDsStr, utils.Int2Str(v))
}
if roleID == 1 { if roleID == 1 {
return 0, fmt.Errorf("管理员不允许修改!") return 0, fmt.Errorf("管理员不允许修改!")
} }
@@ -129,7 +140,10 @@ func UpdateRole(ctx *jxcontext.Context, roleID int, name string, isDelete bool)
role.Name = name role.Name = name
role.UpdatedAt = time.Now() role.UpdatedAt = time.Now()
role.LastOperator = ctx.GetUserName() role.LastOperator = ctx.GetUserName()
num, err = dao.UpdateEntity(db, role, "Name", "UpdatedAt", "LastOperator") role.BrandID = brandID
role.CityCodes = strings.Join(cityCodesStr, ",")
role.StoreIDs = strings.Join(storeIDsStr, ",")
num, err = dao.UpdateEntity(db, role, "Name", "UpdatedAt", "LastOperator", "BrandID", "CityCodes", "StoreIDs")
} else { } else {
role.DeletedAt = time.Now() role.DeletedAt = time.Now()
num, err = dao.UpdateEntity(db, role, "DeletedAt") num, err = dao.UpdateEntity(db, role, "DeletedAt")

View File

@@ -227,6 +227,9 @@ type Role struct {
ModelIDCULD ModelIDCULD
Name string `json:"name"` //角色名 Name string `json:"name"` //角色名
BrandID int `orm:"column(brand_id)" json:"brandID"`
CityCodes string `json:"cityCodes"`
StoreIDs string `orm:"column(store_ids)" json:"storeIDs"`
} }
func (*Role) TableUnique() [][]string { func (*Role) TableUnique() [][]string {

View File

@@ -95,12 +95,20 @@ func (c *PowerController) GetRole() {
// @Param name formData string true "角色名" // @Param name formData string true "角色名"
// @Param roleID formData int true "角色ID" // @Param roleID formData int true "角色ID"
// @Param isDelete formData bool true "是否是删除" // @Param isDelete formData bool true "是否是删除"
// @Param brandID formData int false "品牌ID"
// @Param cityCodes formData string false "城市IDs"
// @Param storeIDs formData string false "门店IDs"
// @Success 200 {object} controllers.CallResult // @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult // @Failure 200 {object} controllers.CallResult
// @router /UpdateRole [put] // @router /UpdateRole [put]
func (c *PowerController) UpdateRole() { func (c *PowerController) UpdateRole() {
c.callUpdateRole(func(params *tPowerUpdateRoleParams) (retVal interface{}, errCode string, err error) { c.callUpdateRole(func(params *tPowerUpdateRoleParams) (retVal interface{}, errCode string, err error) {
retVal, err = cms.UpdateRole(params.Ctx, params.RoleID, params.Name, params.IsDelete) var (
cityCodes, storeIDs []int
)
if err = jxutils.Strings2Objs(params.CityCodes, &cityCodes, params.StoreIDs, &storeIDs); err == nil {
retVal, err = cms.UpdateRole(params.Ctx, params.RoleID, params.Name, params.IsDelete, params.BrandID, cityCodes, storeIDs)
}
return retVal, "", err return retVal, "", err
}) })
} }