|
@@ -342,13 +342,19 @@ func (this *UserController) Detail() {
|
|
|
}
|
|
|
|
|
|
companyProduct, err := models.GetCompanyProductDetail(user.CompanyId, 2)
|
|
|
- if err != nil {
|
|
|
+ if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
br.Msg = "获取信息失败"
|
|
|
br.ErrMsg = "获取客户信息失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
+ var isSuspend int
|
|
|
+ if companyProduct == nil {
|
|
|
+ isSuspend = 1
|
|
|
+ } else {
|
|
|
+ isSuspend = companyProduct.IsSuspend
|
|
|
+ }
|
|
|
|
|
|
- if len(companyReportPermissionList) == 0 || companyProduct.IsSuspend == 1 {
|
|
|
+ if len(companyReportPermissionList) == 0 || isSuspend == 1 {
|
|
|
hasPermission = 1
|
|
|
} else {
|
|
|
//有研选订阅或研选扣点包任意一项试用权限,即为试用客户,期限显示两项合并之后的最长时间
|