作者 唐旭辉

分类编码code校验条件修改

... ... @@ -49,7 +49,7 @@ var errmessge ErrorMap = map[string]string{
"10062": "该分类已被使用无法删除",
"10063": "该分类已被使用无法禁用",
"10064": "编码已存在",
"10065": "编码长度6个字符",
"10065": "编码长度最多6个字符",
}
//错误码转换 ,兼容需要
... ...
... ... @@ -4,7 +4,6 @@ import (
"database/sql"
"encoding/json"
"fmt"
orm2 "github.com/astaxie/beego/orm"
"oppmg/common/log"
"oppmg/models"
"oppmg/protocol"
... ... @@ -12,6 +11,8 @@ import (
"oppmg/utils"
"strings"
"time"
orm2 "github.com/astaxie/beego/orm"
)
//添加模板
... ... @@ -433,7 +434,7 @@ func TemplateOperateCategory(uid, companyId int64, request *protocol.TemplateOpe
}
return
}
if len([]rune(request.Code)) != 6 {
if len([]rune(request.Code)) > 6 {
err = protocol.NewErrWithMessage("10065")
return
}
... ...