add ref to audit lists

This commit is contained in:
Dennis Eichhorn 2020-07-31 00:29:02 +02:00
parent e29fa51baa
commit 5014bcbc63
2 changed files with 6 additions and 2 deletions

View File

@ -24,6 +24,7 @@ return ['Auditor' => [
'Name' => 'Name', 'Name' => 'Name',
'New' => 'New', 'New' => 'New',
'Old' => 'Old', 'Old' => 'Old',
'Ref' => 'Ref',
'Subtype' => 'Subtype', 'Subtype' => 'Subtype',
'Type' => 'Type', 'Type' => 'Type',
]]; ]];

View File

@ -31,7 +31,7 @@ echo $this->getData('nav')->render(); ?>
<div class="portlet-head"><?= $this->getHtml('Audits') ?><i class="fa fa-download floatRight download btn"></i></div> <div class="portlet-head"><?= $this->getHtml('Audits') ?><i class="fa fa-download floatRight download btn"></i></div>
<table class="default fixed"> <table class="default fixed">
<colgroup> <colgroup>
<col style="width: 100px"> <col style="width: 75px">
<col style="width: 150px"> <col style="width: 150px">
<col style="width: 100px"> <col style="width: 100px">
<col style="width: 75px"> <col style="width: 75px">
@ -39,6 +39,7 @@ echo $this->getData('nav')->render(); ?>
<col> <col>
<col> <col>
<col style="width: 125px"> <col style="width: 125px">
<col style="width: 75px">
<col style="width: 150px"> <col style="width: 150px">
</colgroup> </colgroup>
<thead> <thead>
@ -51,10 +52,11 @@ echo $this->getData('nav')->render(); ?>
<td ><?= $this->getHtml('New') ?> <td ><?= $this->getHtml('New') ?>
<td ><?= $this->getHtml('Content') ?> <td ><?= $this->getHtml('Content') ?>
<td ><?= $this->getHtml('By') ?> <td ><?= $this->getHtml('By') ?>
<td ><?= $this->getHtml('Ref') ?>
<td ><?= $this->getHtml('Date') ?> <td ><?= $this->getHtml('Date') ?>
<tbody> <tbody>
<?php $count = 0; foreach ($audits as $key => $audit) : ++$count; <?php $count = 0; foreach ($audits as $key => $audit) : ++$count;
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/audit/single?{?}&id=' . $audit->getId()); ?> $url = UriFactory::build('{/prefix}admin/audit/single?{?}&id=' . $audit->getId()); ?>
<tr tabindex="0" data-href="<?= $url; ?>"> <tr tabindex="0" data-href="<?= $url; ?>">
<td><?= $audit->getId(); ?> <td><?= $audit->getId(); ?>
<td><?= $this->printHtml($audit->getModule()); ?> <td><?= $this->printHtml($audit->getModule()); ?>
@ -64,6 +66,7 @@ echo $this->getData('nav')->render(); ?>
<td><?= $this->printHtml($audit->getNew()); ?> <td><?= $this->printHtml($audit->getNew()); ?>
<td><?= $this->printHtml($audit->getContent()); ?> <td><?= $this->printHtml($audit->getContent()); ?>
<td><?= $this->printHtml($audit->getCreatedBy()->getName()); ?> <td><?= $this->printHtml($audit->getCreatedBy()->getName()); ?>
<td><?= $this->printHtml($audit->getRef()); ?>
<td><?= $audit->getCreatedAt()->format('Y-m-d H:i'); ?> <td><?= $audit->getCreatedAt()->format('Y-m-d H:i'); ?>
<?php endforeach; ?> <?php endforeach; ?>
<?php if ($count === 0) : ?> <?php if ($count === 0) : ?>