* code for task #83736.

This commit is contained in:
wangyidong
2023-02-10 17:37:50 +08:00
parent e53c45c256
commit ff66b39a2a
15 changed files with 139 additions and 53 deletions
+14 -11
View File
@@ -99,12 +99,6 @@ class custom extends control
$this->view->forceReview = zget($this->config->$module, 'forceReview', '');
$this->view->forceNotReview = zget($this->config->$module, 'forceNotReview', '');
}
if($module == 'task' and $field == 'hours')
{
$this->app->loadConfig('execution');
$this->view->weekend = $this->config->execution->weekend;
$this->view->workhours = $this->config->execution->defaultWorkhours;
}
if($module == 'bug' and $field == 'longlife')
{
$this->app->loadConfig('bug');
@@ -190,10 +184,6 @@ class custom extends control
$this->testcase->batchReview(array_keys($waitCases), 'pass');
}
}
elseif($module == 'task' and $field == 'hours')
{
$this->loadModel('setting')->setItems('system.execution', fixer::input('post')->get());
}
elseif($module == 'bug' and $field == 'longlife')
{
$this->loadModel('setting')->setItems('system.bug', fixer::input('post')->get());
@@ -617,7 +607,6 @@ class custom extends control
if($_POST)
{
$this->custom->setConcept();
$this->loadModel('setting')->setItem('system.custom.URAndSR', $this->post->URAndSR);
if($this->config->edition != 'max') $this->loadModel('setting')->setItem('system.custom.hourPoint', $this->post->hourPoint);
$this->app->loadLang('common');
@@ -873,4 +862,18 @@ class custom extends control
$this->display();
}
public function hours()
{
if($_POST)
{
$this->loadModel('setting')->setItems('system.execution', fixer::input('post')->get());
}
$this->app->loadConfig('execution');
$this->view->title = $this->lang->workingHour;
$this->view->weekend = $this->config->execution->weekend;
$this->view->workhours = $this->config->execution->defaultWorkhours;
$this->display();
}
}