This commit is contained in:
wangyuting2
2023-02-10 09:08:29 +08:00
parent 8977945f6b
commit f51e3c9ffc
4 changed files with 51 additions and 142 deletions

View File

@@ -2124,7 +2124,7 @@ class execution extends control
if($this->post->names)
{
$allChanges = $this->execution->batchUpdate();
if(dao::isError()) return print(js::error(dao::getError()));
if(dao::isError()) return $this->send(array('result' => 'fail', 'message' => dao::getError()));
if(!empty($allChanges))
{
@@ -2147,7 +2147,7 @@ class execution extends control
$this->loadModel('common')->syncPPEStatus($syncExecution);
}
}
return print(js::locate($this->session->executionList, 'parent'));
return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'parent'));
}
if($this->app->tab == 'project')