* Finish task #9010.

This commit is contained in:
Yagami
2021-01-18 09:11:31 +08:00
parent 954ce428e5
commit 8b90a207c0
2 changed files with 3 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ $config->story->datatable->fieldList['status']['required'] = 'no';
$config->story->datatable->fieldList['estimate']['title'] = 'estimateAB';
$config->story->datatable->fieldList['estimate']['fixed'] = 'no';
$config->story->datatable->fieldList['estimate']['width'] = '65';
$config->story->datatable->fieldList['estimate']['width'] = '80';
$config->story->datatable->fieldList['estimate']['required'] = 'no';
$config->story->datatable->fieldList['stage']['title'] = 'stageAB';

View File

@@ -2392,7 +2392,7 @@ class storyModel extends model
$branches = array();
foreach($stories as $story)
{
$story->estimate .= $this->lang->story->hour;
$story->estimate .= ' ' . $this->lang->story->hour;
if(empty($story->branch) and $story->productType != 'normal') $branches[$story->productBranch][$story->id] = $story->id;
}
foreach($branches as $branchID => $storyIdList)
@@ -3385,7 +3385,7 @@ class storyModel extends model
echo '</span>';
break;
case 'estimate':
echo $story->estimate;
echo $story->estimate . ' ' . $this->lang->story->hour;
break;
case 'stage':
if(isset($storyStages[$story->id]) and !empty($branches))