|
@@ -389,7 +389,8 @@ func (s *Short) Article(stype, id string) error {
|
|
|
if obj != nil && len(obj) > 0 {
|
|
|
var node bool
|
|
|
if ((isVip && isOldVip) || isMember || isEntniche) || //老版本vip、大会员、商机管理
|
|
|
- ((isVip && !isOldVip) && (!(util.ObjToString(obj["subtype"]) == "拟建" || util.ObjToString(obj["subtype"]) == "采购意向"))) { //新超级订阅非采购意向”和“拟建项目”
|
|
|
+ ((isVip && !isOldVip) && (!(util.ObjToString(obj["subtype"]) == "拟建" || util.ObjToString(obj["subtype"]) == "采购意向"))) || //新超级订阅非采购意向”和“拟建项目”
|
|
|
+ stype == "mailprivate" || stype == "indexcontent" { //邮箱推送
|
|
|
node = true
|
|
|
} else {
|
|
|
_, _, _, objc := pcVRT(sid, indust, stype, isVip || isMember || isEntniche)
|