- do not list documents for review/approval if the reviewer/approver is

the owner
This commit is contained in:
steinm 2012-10-09 10:02:52 +00:00
parent c550831705
commit 2a63e2132f

View File

@ -165,7 +165,7 @@ if ($showInProcess){
} }
foreach ($reviewStatus["grpstatus"] as $st) { foreach ($reviewStatus["grpstatus"] as $st) {
if (!in_array($st["documentID"], $iRev) && $st["status"]==0 && isset($docIdx[$st["documentID"]][$st["version"]]) && !in_array($st["documentID"], $dList) ) { if (!in_array($st["documentID"], $iRev) && $st["status"]==0 && isset($docIdx[$st["documentID"]][$st["version"]]) && !in_array($st["documentID"], $dList) && $docIdx[$st["documentID"]][$st["version"]]['owner'] != $user->getId()) {
$dList[] = $st["documentID"]; $dList[] = $st["documentID"];
if ($printheader){ if ($printheader){
@ -227,7 +227,7 @@ if ($showInProcess){
} }
foreach ($approvalStatus["grpstatus"] as $st) { foreach ($approvalStatus["grpstatus"] as $st) {
if (!in_array($st["documentID"], $iRev) && $st["status"]==0 && isset($docIdx[$st["documentID"]][$st["version"]])) { if (!in_array($st["documentID"], $iRev) && $st["status"]==0 && isset($docIdx[$st["documentID"]][$st["version"]]) && $docIdx[$st["documentID"]][$st["version"]]['owner'] != $user->getId()) {
if ($printheader){ if ($printheader){
print "<table class=\"folderView\">"; print "<table class=\"folderView\">";
print "<thead>\n<tr>\n"; print "<thead>\n<tr>\n";