* Finish task #9010.
This commit is contained in:
@@ -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';
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user