* Fix bug#223.

This commit is contained in:
leiyong
2020-06-22 18:21:13 -07:00
parent 70a0ace135
commit 5093ded545
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,4 +10,4 @@ $config->program->editor->finish = array('id' => 'comment', 'tools' => 'simple
$config->program->editor->suspend = array('id' => 'comment', 'tools' => 'simpleTools');
$config->program->list = new stdclass();
$config->program->list->exportFields = 'id,name,code,type,category,status,begin,end,budget,PM,end,desc';
$config->program->list->exportFields = 'id,name,code,template,category,status,begin,end,budget,PM,end,desc';
+1 -1
View File
@@ -616,7 +616,7 @@ class program extends control
{
$program->PM = zget($users, $program->PM);
$program->status = $this->processStatus('project', $program);
$program->type = zget($programLang->typeList, $program->type);
$program->template = zget($programLang->templateList, $program->template);
$program->category = zget($programLang->categoryList, $program->category);
$program->budget = $program->budget . zget($programLang->unitList, $program->budgetUnit);