diff --git a/openslides/motions/static/js/motions/docx.js b/openslides/motions/static/js/motions/docx.js index c6044cbba..cbf7086f1 100644 --- a/openslides/motions/static/js/motions/docx.js +++ b/openslides/motions/static/js/motions/docx.js @@ -155,7 +155,8 @@ angular.module('OpenSlidesApp.motions.docx', ['OpenSlidesApp.core.docx']) var getMotionComments = function (motion) { var fields = Config.get('motions_comments').value; var canSeeComment = function (index) { - return fields[index].public || operator.hasPerms('motions.can_manage'); + var specialComment = fields[index].forState || fields[index].forRecommendation; + return (fields[index].public || operator.hasPerms('motions.can_manage')) && !specialComment; }; var comments = []; for (var i = 0; i < fields.length; i++) { diff --git a/openslides/motions/static/js/motions/pdf.js b/openslides/motions/static/js/motions/pdf.js index 8c9394455..05a07cc2d 100644 --- a/openslides/motions/static/js/motions/pdf.js +++ b/openslides/motions/static/js/motions/pdf.js @@ -300,7 +300,8 @@ angular.module('OpenSlidesApp.motions.pdf', ['OpenSlidesApp.core.pdf']) if (includeComments) { var fields = Config.get('motions_comments').value; var canSeeComment = function (index) { - return fields[index].public || operator.hasPerms('motions.can_manage'); + var specialComment = fields[index].forState || fields[index].forRecommendation; + return (fields[index].public || operator.hasPerms('motions.can_manage')) && !specialComment; }; var comments = []; for (var i = 0; i < fields.length; i++) { @@ -962,7 +963,8 @@ angular.module('OpenSlidesApp.motions.pdf', ['OpenSlidesApp.core.pdf']) exportComments: function (motion, filename) { var fields = Config.get('motions_comments').value; var canSeeComment = function (index) { - return fields[index].public || operator.hasPerms('motions.can_manage'); + var specialComment = fields[index].forState || fields[index].forRecommendation; + return (fields[index].public || operator.hasPerms('motions.can_manage')) && !specialComment; }; var content = []; for (var i = 0; i < fields.length; i++) {