use documentListRow(), set bg color of each row depending of status

This commit is contained in:
Uwe Steinmann 2018-07-13 08:49:10 +02:00
parent 206c266181
commit d4392c8e59
2 changed files with 53 additions and 98 deletions

View File

@ -49,8 +49,10 @@ class SeedDMS_View_ApprovalSummary extends SeedDMS_Bootstrap_Style {
$this->globalNavigation(); $this->globalNavigation();
$this->contentStart(); $this->contentStart();
$this->pageNavigation(getMLText("my_documents"), "my_documents"); $this->pageNavigation(getMLText("my_documents"), "my_documents");
echo "<div class=\"row-fluid\">\n";
echo "<div class=\"span6\">\n";
$this->contentHeading(getMLText("approval_summary")); $this->contentHeading(getMLText("approval_summary"));
$this->contentContainerStart(); // $this->contentContainerStart();
// Get document list for the current user. // Get document list for the current user.
$approvalStatus = $user->getApprovalStatus(); $approvalStatus = $user->getApprovalStatus();
@ -58,47 +60,32 @@ class SeedDMS_View_ApprovalSummary extends SeedDMS_Bootstrap_Style {
// reverse order // reverse order
$approvalStatus["indstatus"]=array_reverse($approvalStatus["indstatus"],true); $approvalStatus["indstatus"]=array_reverse($approvalStatus["indstatus"],true);
$approvalStatus["grpstatus"]=array_reverse($approvalStatus["grpstatus"],true); $approvalStatus["grpstatus"]=array_reverse($approvalStatus["grpstatus"],true);
$iRev = array(); $iRev = array();
$printheader = true; $printheader = true;
foreach ($approvalStatus["indstatus"] as $st) { foreach ($approvalStatus["indstatus"] as $st) {
$document = $dms->getDocument($st['documentID']); $document = $dms->getDocument($st['documentID']);
$version = $document->getContentByVersion($st['version']); $version = $document->getContentByVersion($st['version']);
$previewer->createPreview($version);
$owner = $document->getOwner();
$moduser = $dms->getUser($st['required']); $moduser = $dms->getUser($st['required']);
if ($document && $version) { if ($document && $version) {
if ($printheader){ if ($printheader){
print "<table class=\"table-condensed\">"; print "<table class=\"table table-condensed\">";
print "<thead>\n<tr>\n"; print "<thead>\n<tr>\n";
print "<th></th>\n"; print "<th></th>\n";
print "<th>".getMLText("name")."</th>\n"; print "<th>".getMLText("name")."</th>\n";
print "<th>".getMLText("owner")."</th>\n";
print "<th>".getMLText("status")."</th>\n"; print "<th>".getMLText("status")."</th>\n";
print "<th>".getMLText("version")."</th>\n"; print "<th>".getMLText("action")."</th>\n";
print "<th>".getMLText("last_update")."</th>\n"; print "<th>".getMLText("last_update")."</th>\n";
print "<th>".getMLText("expires")."</th>\n";
print "</tr>\n</thead>\n<tbody>\n"; print "</tr>\n</thead>\n<tbody>\n";
$printheader = false; $printheader = false;
} }
print "<tr>\n"; $class = $st['status'] == 1 ? ' success' : ($st['status'] == -1 ? ' error' : ( $st['status'] == -2 ? ' info' : ''));
$previewer->createPreview($version); print "<tr id=\"table-row-document-".$st['documentID']."\" class=\"table-row-document".$class."\" rel=\"document_".$st['documentID']."\" formtoken=\"".createFormKey('movedocument')."\" draggable=\"true\">";
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">"; echo $this->documentListRow($document, $previewer, true, $st['version']);
if($previewer->hasPreview($version)) { print "<td><small>".getApprovalStatusText($st['status'])."<br />".$st["date"]."<br />". htmlspecialchars($moduser->getFullName()) ."</small></td>";
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
} else {
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
}
print "</a></td>";
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>";
print "<td>".htmlspecialchars($owner->getFullName())."</td>";
print "<td>".getApprovalStatusText($st["status"])."</td>";
print "<td>".$st["version"]."</td>";
print "<td>".$st["date"]." ". htmlspecialchars($moduser->getFullName()) ."</td>";
print "<td>".(!$document->expires() ? "-":getReadableDate($document->getExpires()))."</td>";
print "</tr>\n"; print "</tr>\n";
} }
if ($st["status"]!=-2) { if ($st["status"]!=-2) {
@ -111,48 +98,36 @@ class SeedDMS_View_ApprovalSummary extends SeedDMS_Bootstrap_Style {
printMLText("no_approval_needed"); printMLText("no_approval_needed");
} }
$this->contentContainerEnd(); // $this->contentContainerEnd();
echo "</div>\n";
echo "<div class=\"span6\">\n";
$this->contentHeading(getMLText("group_approval_summary")); $this->contentHeading(getMLText("group_approval_summary"));
$this->contentContainerStart(); // $this->contentContainerStart();
$printheader = true; $printheader = true;
foreach ($approvalStatus["grpstatus"] as $st) { foreach ($approvalStatus["grpstatus"] as $st) {
$document = $dms->getDocument($st['documentID']); $document = $dms->getDocument($st['documentID']);
$version = $document->getContentByVersion($st['version']); $version = $document->getContentByVersion($st['version']);
$owner = $document->getOwner();
$modgroup = $dms->getGroup($st['required']); $modgroup = $dms->getGroup($st['required']);
if (!in_array($st["documentID"], $iRev) && $document && $version) { if (!in_array($st["documentID"], $iRev) && $document && $version) {
if ($printheader){ if ($printheader){
print "<table class=\"table-condensed\">"; print "<table class=\"table table-condensed\">";
print "<thead>\n<tr>\n"; print "<thead>\n<tr>\n";
print "<th></th>\n"; print "<th></th>\n";
print "<th>".getMLText("name")."</th>\n"; print "<th>".getMLText("name")."</th>\n";
print "<th>".getMLText("owner")."</th>\n";
print "<th>".getMLText("status")."</th>\n"; print "<th>".getMLText("status")."</th>\n";
print "<th>".getMLText("version")."</th>\n"; print "<th>".getMLText("action")."</th>\n";
print "<th>".getMLText("last_update")."</th>\n"; print "<th>".getMLText("last_update")."</th>\n";
print "<th>".getMLText("expires")."</th>\n";
print "</tr>\n</thead>\n<tbody>\n"; print "</tr>\n</thead>\n<tbody>\n";
$printheader = false; $printheader = false;
} }
print "<tr>\n"; $class = $st['status'] == 1 ? ' success' : ($st['status'] == -1 ? ' error' : ( $st['status'] == -2 ? ' info' : ''));
$previewer->createPreview($version); print "<tr id=\"table-row-document-".$st['documentID']."\" class=\"table-row-document".$class."\" rel=\"document_".$st['documentID']."\" formtoken=\"".createFormKey('movedocument')."\" draggable=\"true\">";
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">"; echo $this->documentListRow($document, $previewer, true, $st['version']);
if($previewer->hasPreview($version)) { print "<td><small>".getApprovalStatusText($st["status"])."<br />".$st["date"]."<br />". htmlspecialchars($moduser->getFullName()) ."</small></td>";
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
} else {
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
}
print "</a></td>";
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>";
print "<td>".htmlspecialchars($owner->getFullName())."</td>";
print "<td>".getApprovalStatusText($st["status"])."</td>";
print "<td>".$st["version"]."</td>";
print "<td>".$st["date"]." ". htmlspecialchars($modgroup->getName()) ."</td>";
print "<td>".(!$document->expires() ? "-":getReadableDate($document->getExpires()))."</td>";
print "</tr>\n"; print "</tr>\n";
} }
} }
@ -162,7 +137,9 @@ class SeedDMS_View_ApprovalSummary extends SeedDMS_Bootstrap_Style {
printMLText("no_approval_needed"); printMLText("no_approval_needed");
} }
$this->contentContainerEnd(); // $this->contentContainerEnd();
echo "</div>\n";
echo "</div>\n";
$this->contentEnd(); $this->contentEnd();
$this->htmlEndPage(); $this->htmlEndPage();
} /* }}} */ } /* }}} */

View File

@ -50,8 +50,10 @@ class SeedDMS_View_ReviewSummary extends SeedDMS_Bootstrap_Style {
$this->contentStart(); $this->contentStart();
$this->pageNavigation(getMLText("my_documents"), "my_documents"); $this->pageNavigation(getMLText("my_documents"), "my_documents");
echo "<div class=\"row-fluid\">\n";
echo "<div class=\"span6\">\n";
$this->contentHeading(getMLText("review_summary")); $this->contentHeading(getMLText("review_summary"));
$this->contentContainerStart(); // $this->contentContainerStart();
// TODO: verificare scadenza // TODO: verificare scadenza
@ -67,40 +69,26 @@ class SeedDMS_View_ReviewSummary extends SeedDMS_Bootstrap_Style {
foreach ($reviewStatus["indstatus"] as $st) { foreach ($reviewStatus["indstatus"] as $st) {
$document = $dms->getDocument($st['documentID']); $document = $dms->getDocument($st['documentID']);
$version = $document->getContentByVersion($st['version']); $version = $document->getContentByVersion($st['version']);
$owner = $document->getOwner();
$moduser = $dms->getUser($st['required']); $moduser = $dms->getUser($st['required']);
if ($document && $version) { if ($document && $version) {
if ($printheader){ if ($printheader){
print "<table class=\"table-condensed\">"; print "<table class=\"table table-condensed\">";
print "<thead>\n<tr>\n"; print "<thead>\n<tr>\n";
print "<th></th>\n"; print "<th></th>\n";
print "<th>".getMLText("name")."</th>\n"; print "<th>".getMLText("name")."</th>\n";
print "<th>".getMLText("owner")."</th>\n";
print "<th>".getMLText("status")."</th>\n"; print "<th>".getMLText("status")."</th>\n";
print "<th>".getMLText("version")."</th>\n"; print "<th>".getMLText("action")."</th>\n";
print "<th>".getMLText("last_update")."</th>\n"; print "<th>".getMLText("last_update")."</th>\n";
print "<th>".getMLText("expires")."</th>\n";
print "</tr>\n</thead>\n<tbody>\n"; print "</tr>\n</thead>\n<tbody>\n";
$printheader=false; $printheader=false;
} }
print "<tr>\n"; $class = $st['status'] == 1 ? ' success' : ($st['status'] == -1 ? ' error' : ( $st['status'] == -2 ? ' info' : ''));
$previewer->createPreview($version); print "<tr id=\"table-row-document-".$st['documentID']."\" class=\"table-row-document".$class."\" rel=\"document_".$st['documentID']."\" formtoken=\"".createFormKey('movedocument')."\" draggable=\"true\">";
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">"; echo $this->documentListRow($document, $previewer, true, $st['version']);
if($previewer->hasPreview($version)) { print "<td><small>".getReviewStatusText($st['status'])."<br />".$st["date"]."<br />". htmlspecialchars($moduser->getFullName()) ."</small></td>";
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
} else {
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
}
print "</a></td>";
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>";
print "<td>".htmlspecialchars($owner->getFullName())."</td>";
print "<td>".getReviewStatusText($st["status"])."</td>";
print "<td>".$st["version"]."</td>";
print "<td>".$st["date"]." ". htmlspecialchars($moduser->getFullName()) ."</td>";
print "<td>".(!$document->expires() ? "-":getReadableDate($document->getExpires()))."</td>";
print "</tr>\n"; print "</tr>\n";
} }
if ($st["status"]!=-2) { if ($st["status"]!=-2) {
@ -113,9 +101,11 @@ class SeedDMS_View_ReviewSummary extends SeedDMS_Bootstrap_Style {
printMLText("no_docs_to_review"); printMLText("no_docs_to_review");
} }
$this->contentContainerEnd(); // $this->contentContainerEnd();
echo "</div>\n";
echo "<div class=\"span6\">\n";
$this->contentHeading(getMLText("group_review_summary")); $this->contentHeading(getMLText("group_review_summary"));
$this->contentContainerStart(); // $this->contentContainerStart();
$printheader=true; $printheader=true;
foreach ($reviewStatus["grpstatus"] as $st) { foreach ($reviewStatus["grpstatus"] as $st) {
@ -125,36 +115,23 @@ class SeedDMS_View_ReviewSummary extends SeedDMS_Bootstrap_Style {
$modgroup = $dms->getGroup($st['required']); $modgroup = $dms->getGroup($st['required']);
if (!in_array($st["documentID"], $iRev) && $document && $version) { if (!in_array($st["documentID"], $iRev) && $document && $version) {
if ($printheader){ if ($printheader){
print "<table class=\"folderView\">"; print "<table class=\"table table-condensed\">";
print "<thead>\n<tr>\n"; print "<thead>\n<tr>\n";
print "<th></th>\n"; print "<th></th>\n";
print "<th>".getMLText("name")."</th>\n"; print "<th>".getMLText("name")."</th>\n";
print "<th>".getMLText("owner")."</th>\n";
print "<th>".getMLText("status")."</th>\n"; print "<th>".getMLText("status")."</th>\n";
print "<th>".getMLText("version")."</th>\n"; print "<th>".getMLText("action")."</th>\n";
print "<th>".getMLText("last_update")."</th>\n"; print "<th>".getMLText("last_update")."</th>\n";
print "<th>".getMLText("expires")."</th>\n";
print "</tr>\n</thead>\n<tbody>\n"; print "</tr>\n</thead>\n<tbody>\n";
$printheader=false; $printheader=false;
}
print "<tr>\n";
$previewer->createPreview($version);
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">";
if($previewer->hasPreview($version)) {
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
} else {
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
} }
print "</a></td>";
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>"; $class = $st['status'] == 1 ? ' success' : ($st['status'] == -1 ? ' error' : ( $st['status'] == -2 ? ' info' : ''));
print "<td>".htmlspecialchars($owner->getFullName())."</td>"; print "<tr id=\"table-row-document-".$st['documentID']."\" class=\"table-row-document".$class."\" rel=\"document_".$st['documentID']."\" formtoken=\"".createFormKey('movedocument')."\" draggable=\"true\">";
print "<td>".getReviewStatusText($st["status"])."</td>"; echo $this->documentListRow($document, $previewer, true, $st['version']);
print "<td>".$st["version"]."</td>"; print "<td><small>".getReviewStatusText($st['status'])."<br />".$st["date"]."<br />". htmlspecialchars($moduser->getFullName()) ."</small></td>";
print "<td>".$st["date"]." ". htmlspecialchars($modgroup->getName()) ."</td>";
print "<td>".(!$document->expires() ? "-":getReadableDate($document->getExpires()))."</td>";
print "</tr>\n"; print "</tr>\n";
} }
} }
@ -164,8 +141,9 @@ class SeedDMS_View_ReviewSummary extends SeedDMS_Bootstrap_Style {
printMLText("no_docs_to_review"); printMLText("no_docs_to_review");
} }
// $this->contentContainerEnd();
$this->contentContainerEnd(); echo "</div>\n";
echo "</div>\n";
$this->contentEnd(); $this->contentEnd();
$this->htmlEndPage(); $this->htmlEndPage();
} /* }}} */ } /* }}} */