* Code for task #36042.

This commit is contained in:
holan20180123
2021-02-23 16:18:51 +08:00
parent 252fb8d942
commit a16d3e30aa
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1037,7 +1037,7 @@ $lang->design->menu->bysearch = array('link' => '<a href="javascript:;" class="q
$lang->nc->menu = $lang->auditplan->menu;
$lang->noMenuModule = array('report', 'my', 'todo', 'effort', 'program', 'product', 'productplan', 'projectbuild', 'projectrelease', 'projectstory', 'story', 'branch', 'release', 'attend', 'leave', 'makeup', 'overtime', 'lieu', 'custom', 'admin', 'mail', 'extension', 'dev', 'backup', 'action', 'cron', 'issue', 'risk', 'pssp', 'sms', 'message', 'webhook', 'search', 'score', 'stage');
if($config->systemMode == 'old')
if($config->systemMode == 'old')
{
$lang->noMenuModule[] = 'project';
$lang->noMenuModule[] = 'task';
+3 -3
View File
@@ -326,7 +326,7 @@ class projectModel extends model
/* Determine whether to add a sprint or a stage according to the model of the project. */
$project = $this->getByID($this->session->PRJ);
$sprintType = zget($this->config->project->modelList, $project->model, '');
$sprintType = $this->config->global->mode == 'new' ? zget($this->config->project->modelList, $project->model, '') : 'sprint';
/* If the project model is a stage, determine whether the product is linked. */
if($sprintType == 'stage' and empty($this->post->products[0]))
@@ -337,13 +337,13 @@ class projectModel extends model
/* Get the data from the post. */
$sprint = fixer::input('post')
->setDefault('project', $this->session->PRJ)
->setDefault('status', 'wait')
->setDefault('parent', $this->session->PRJ)
->setDefault('openedBy', $this->app->user->account)
->setDefault('openedDate', helper::now())
->setDefault('openedVersion', $this->config->version)
->setDefault('team', substr($this->post->name,0, 30))
->setIF($this->config->global->mode == 'new', 'project', $this->session->PRJ)
->setIF($this->config->global->mode == 'new', 'parent', $this->session->PRJ)
->setIF($this->post->acl == 'open', 'whitelist', '')
->join('whitelist', ',')
->add('type', $sprintType)