|
@@ -2419,21 +2419,20 @@ func GetShareCompanyPermissionButton(roleTypeCode, statuses string, productId in
|
|
|
if roleTypeCode == utils.ROLE_TYPE_CODE_ADMIN {
|
|
|
button.BtnModifySeller = false
|
|
|
}
|
|
|
- status, _ := statusMap[1]
|
|
|
- //if !ok {
|
|
|
- // return
|
|
|
- //}
|
|
|
+ status, ok := statusMap[1]
|
|
|
+ if !ok {
|
|
|
+ return
|
|
|
+ }
|
|
|
// 客户非关闭状态可见沟通记录按钮
|
|
|
if status != utils.COMPANY_STATUS_CLOSE {
|
|
|
button.BtnServiceRecord = true
|
|
|
}
|
|
|
|
|
|
- // 销售
|
|
|
- sellerArr := []string{
|
|
|
+ // ficc销售
|
|
|
+ ficcArr := []string{
|
|
|
utils.ROLE_TYPE_CODE_FICC_GROUP, utils.ROLE_TYPE_CODE_FICC_TEAM, utils.ROLE_TYPE_CODE_FICC_SELLER,
|
|
|
- utils.ROLE_TYPE_CODE_RAI_GROUP,utils.ROLE_TYPE_CODE_RAI_SELLER,utils.ROLE_TYPE_CODE_RAI_ADMIN,
|
|
|
}
|
|
|
- if !utils.InArrayByStr(sellerArr, roleTypeCode) {
|
|
|
+ if !utils.InArrayByStr(ficcArr, roleTypeCode) {
|
|
|
return
|
|
|
}
|
|
|
if status == utils.COMPANY_STATUS_TRY_OUT {
|