* Finish task#8895.

This commit is contained in:
leiyong
2021-01-01 09:36:09 +08:00
parent 41746f4b3e
commit 6f8bcda4b0
7 changed files with 10 additions and 11 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ $lang->personnel->role = 'Role';
$lang->personnel->name = 'User';
$lang->personnel->projects = 'Projects';
$lang->personnel->executions = 'Iterations/Phases';
$lang->personnel->executions = 'Executions';
$lang->personnel->workingHours = 'Hours';
$lang->personnel->task = 'Task';
$lang->personnel->bug = 'Bug';
+1 -1
View File
@@ -15,7 +15,7 @@ $lang->personnel->role = 'Role';
$lang->personnel->name = 'User';
$lang->personnel->projects = 'Projects';
$lang->personnel->executions = 'Iterations/Phases';
$lang->personnel->executions = 'Executions';
$lang->personnel->workingHours = 'Hours';
$lang->personnel->task = 'Task';
$lang->personnel->bug = 'Bug';
+1 -1
View File
@@ -15,7 +15,7 @@ $lang->personnel->role = 'Role';
$lang->personnel->name = 'User';
$lang->personnel->projects = 'Projects';
$lang->personnel->executions = 'Iterations/Phases';
$lang->personnel->executions = 'Executions';
$lang->personnel->workingHours = 'Hours';
$lang->personnel->task = 'Task';
$lang->personnel->bug = 'Bug';
+1 -1
View File
@@ -15,7 +15,7 @@ $lang->personnel->role = 'Role';
$lang->personnel->name = 'User';
$lang->personnel->projects = 'Projects';
$lang->personnel->executions = 'Iterations/Phases';
$lang->personnel->executions = 'Executions';
$lang->personnel->workingHours = 'Hours';
$lang->personnel->task = 'Task';
$lang->personnel->bug = 'Bug';
+1 -1
View File
@@ -15,7 +15,7 @@ $lang->personnel->role = '角色';
$lang->personnel->name = '人员名称';
$lang->personnel->projects = '项目数';
$lang->personnel->executions = '迭代/阶段数';
$lang->personnel->executions = '执行';
$lang->personnel->workingHours = '工时';
$lang->personnel->task = '任务';
$lang->personnel->bug = 'Bug';
+1 -1
View File
@@ -15,7 +15,7 @@ $lang->personnel->role = '角色';
$lang->personnel->name = '人員名稱';
$lang->personnel->projects = '項目數';
$lang->personnel->executions = '迭代/階段數';
$lang->personnel->executions = '执行';
$lang->personnel->workingHours = '工時';
$lang->personnel->task = '任務';
$lang->personnel->bug = 'Bug';
+4 -5
View File
@@ -11,8 +11,7 @@
?>
<?php include '../../common/view/header.html.php';?>
<style>
.main-table tbody>tr:hover { background-color: #fff; }
.main-table tbody>tr:nth-child(odd):hover { background-color: #f5f5f5; }
.main-table thead>tr>th:first-child{padding-left: 0px;}
</style>
<div id="mainContent" class="main-row fade">
<?php if(!empty($inputPersonnel)):?>
@@ -21,7 +20,7 @@
<table class="table has-sort-head table-fixed table-bordered text-center">
<thead>
<tr>
<th rowspan='2'><?php echo $lang->personnel->name;?></th>
<th rowspan='2' class="w-80px"><?php echo $lang->personnel->name;?></th>
<th rowspan='2'><?php echo $lang->personnel->role;?></th>
<th rowspan='2'><?php echo $lang->personnel->projects;?></th>
<th rowspan='2'><?php echo $lang->personnel->executions;?></th>
@@ -54,8 +53,8 @@
<tbody class="sortable">
<?php foreach($inputPersonnel as $personnel):?>
<tr>
<td><?php echo $personnel['realname'];?></td>
<td><?php echo $personnel['role'];?></td>
<td title='<?php echo $personnel['realname'];?>'><?php echo $personnel['realname'];?></td>
<td title='<?php echo $personnel['role'];?>'><?php echo $personnel['role'];?></td>
<td><?php echo $personnel['projects'];?></td>
<td><?php echo $personnel['executions'];?></td>
<td><?php echo $personnel['consumedTask'];?></td>