|
@@ -699,6 +699,13 @@ func ActivityButtonShow(item *models.ActivityDetail, user *models.WxUserItem, pe
|
|
|
activityDetail.IsShowMeetingReminder = true
|
|
|
activityDetail.IsShowOutboundCall = true
|
|
|
}
|
|
|
+ if activityDetail.IsZoom == 1 {
|
|
|
+ activityDetail.IsShowMeetingReminder = true
|
|
|
+ if activityDetail.LimitPeopleNum == 0 {
|
|
|
+ activityDetail.IsShowOutboundCall = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
//公司线下调研 4
|
|
@@ -822,6 +829,8 @@ func ActivityButtonShow(item *models.ActivityDetail, user *models.WxUserItem, pe
|
|
|
IsExternalLabel: v.IsExternalLabel,
|
|
|
SiginupDeadline: v.SiginupDeadline,
|
|
|
CancelDeadline: v.CancelDeadline,
|
|
|
+ IsZoom: v.IsZoom,
|
|
|
+ MeetingId: v.MeetingId,
|
|
|
}
|
|
|
au := new(models.UserPermissionAuthInfo)
|
|
|
au.SellerName = authInfo.SellerName
|
|
@@ -979,6 +988,13 @@ func ActivityArrButtonShow(items []*models.ActivityDetail, user *models.WxUserIt
|
|
|
activityDetail.IsShowMeetingReminder = true
|
|
|
activityDetail.IsShowOutboundCall = true
|
|
|
}
|
|
|
+
|
|
|
+ if activityDetail.IsZoom == 1 {
|
|
|
+ activityDetail.IsShowMeetingReminder = true
|
|
|
+ if activityDetail.LimitPeopleNum == 0 {
|
|
|
+ activityDetail.IsShowOutboundCall = false
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
//公司线下调研 4
|
|
@@ -1089,7 +1105,10 @@ func ActivityArrButtonShow(items []*models.ActivityDetail, user *models.WxUserIt
|
|
|
CancelDeadline: v.CancelDeadline,
|
|
|
IsYidongActivity: v.IsYidongActivity,
|
|
|
TopTime: v.TopTime,
|
|
|
+ IsZoom: v.IsZoom,
|
|
|
+ MeetingId: v.MeetingId,
|
|
|
}
|
|
|
+
|
|
|
au := new(models.UserPermissionAuthInfo)
|
|
|
au.SellerName = authInfo.SellerName
|
|
|
au.SellerMobile = authInfo.SellerMobile
|