This commit is contained in:
孙广明
2022-07-22 13:07:49 +08:00
parent c820d66059
commit 22230645dd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ $config->story->editor->assignto = array('id' => 'comment', 'tools' => 'simpleTo
$config->story->list = new stdclass();
$config->story->list->exportFields = '
id, product, branch, module, plan, source, sourceNote, title, spec, verify, keywords,
pri, estimate, status, stage, taskCountAB, bugCountAB, caseCountAB,
pri, estimate, status, stage, category, taskCountAB, bugCountAB, caseCountAB,
openedBy, openedDate, assignedTo, assignedDate, mailto,
reviewedBy, reviewedDate,
closedBy, closedDate, closedReason,
+1 -1
View File
@@ -2597,7 +2597,7 @@ class story extends control
if(isset($storyLang->stageList[$story->stage])) $story->stage = $storyLang->stageList[$story->stage];
if(isset($storyLang->reasonList[$story->closedReason])) $story->closedReason = $storyLang->reasonList[$story->closedReason];
if(isset($storyLang->sourceList[$story->source])) $story->source = $storyLang->sourceList[$story->source];
if(isset($storyLang->sourceList[$story->sourceNote])) $story->sourceNote = $storyLang->sourceList[$story->sourceNote];
if(isset($storyLang->categoryList[$story->category])) $story->category = $storyLang->categoryList[$story->category];
if(isset($users[$story->openedBy])) $story->openedBy = $users[$story->openedBy];
if(isset($users[$story->assignedTo])) $story->assignedTo = $users[$story->assignedTo] . "(#$story->assignedTo)";