mirror of
https://github.com/Karaka-Management/oms-Workflow.git
synced 2026-02-12 12:18:41 +00:00
Fix uri parameter
This commit is contained in:
parent
3aa440f084
commit
fa92a9d250
|
|
@ -32,7 +32,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php $c = 0; foreach($workflows as $key => $workflow) : $c++;
|
<?php $c = 0; foreach($workflows as $key => $workflow) : $c++;
|
||||||
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/task/single?{?}id=' . $workflow->getId());
|
$url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/task/single?{?}&id=' . $workflow->getId());
|
||||||
$color = 'darkred';
|
$color = 'darkred';
|
||||||
if($workflow->getStatus() === \Modules\Workflow\Models\WorkflowStatus::DONE) { $color = 'green'; }
|
if($workflow->getStatus() === \Modules\Workflow\Models\WorkflowStatus::DONE) { $color = 'green'; }
|
||||||
elseif($workflow->getStatus() === \Modules\Workflow\Models\WorkflowStatus::OPEN) { $color = 'darkblue'; }
|
elseif($workflow->getStatus() === \Modules\Workflow\Models\WorkflowStatus::OPEN) { $color = 'darkblue'; }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user