This commit is contained in:
zhouxudong
2022-07-04 05:57:34 +00:00
parent f1a7448b71
commit 6b960dc038
2 changed files with 7 additions and 0 deletions

View File

@@ -10,3 +10,5 @@ th.c-deadline {text-align: center;}
.btn-toolbar > .btn {margin-right: 5px !important;}
#taskList .c-progress{padding-right: 8px; text-align: right;}
#datatable-taskList .c-progress{padding-right: 8px; text-align: right;}
.c-finishedBy {overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.c-deadline {text-align: left !important;}

View File

@@ -3427,6 +3427,11 @@ class taskModel extends model
$title = " title='{$value} {$this->lang->execution->workHour}'";
}
if($id == 'lane') $title = " title='{$task->lane}'";
if($id == 'finishedBy')
{
$name = zget($users, $task->finishedBy);
$title = " title='$name'";
}
echo "<td class='" . $class . "'" . $title . ">";
if($this->config->edition != 'open') $this->loadModel('flow')->printFlowCell('task', $task, $id);