B2016-274 - allow user with Admin rights who also is included in the reviewer group edit existing annotations made by other users
This commit is contained in:
parent
bfc321abbf
commit
bef0744972
@ -355,7 +355,9 @@ namespace Volian.Controls.Library
|
|||||||
rtxbComment.Visible = true;
|
rtxbComment.Visible = true;
|
||||||
if (!_LoadingGrid)
|
if (!_LoadingGrid)
|
||||||
rtxbComment.Focus(); // Set the focus to the comment text
|
rtxbComment.Focus(); // Set the focus to the comment text
|
||||||
if (CurrentAnnotation != null && MyUserInfo.IsReviewer(CurrentAnnotation.MyItem.MyDocVersion ) && CurrentAnnotation.UserID != MyUserInfo.UserID)
|
|
||||||
|
// Bug Fix: B2016-274 if admin user also has reviewer set, allow admin user to modify existing annotations
|
||||||
|
if (CurrentAnnotation != null && (!(MyUserInfo.IsAdministrator() || MyUserInfo.IsSetAdministrator(CurrentAnnotation.MyItem.MyDocVersion)) && (MyUserInfo.IsReviewer(CurrentAnnotation.MyItem.MyDocVersion ) && CurrentAnnotation.UserID != MyUserInfo.UserID)))
|
||||||
{
|
{
|
||||||
btnRemoveAnnotation.Enabled = false;
|
btnRemoveAnnotation.Enabled = false;
|
||||||
cbGridAnnoType.Enabled = false;
|
cbGridAnnoType.Enabled = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user