* [bug#68087] Delete the field of deliverable in the table of project.
This commit is contained in:
@@ -1631,7 +1631,6 @@ CREATE TABLE IF NOT EXISTS `zt_project` (
|
||||
`colWidth` smallint unsigned NOT NULL DEFAULT 264,
|
||||
`minColWidth` smallint unsigned NOT NULL DEFAULT 200,
|
||||
`maxColWidth` smallint unsigned NOT NULL DEFAULT 384,
|
||||
`deliverable` text DEFAULT NULL,
|
||||
`vision` varchar(10) NOT NULL DEFAULT 'rnd',
|
||||
`frozen` varchar(30) NOT NULL DEFAULT '' COMMENT '冻结状态',
|
||||
`deleted` tinyint unsigned NOT NULL DEFAULT 0,
|
||||
|
||||
@@ -617,7 +617,7 @@ class executionModel extends model
|
||||
public function batchChangeStatus(array $executionIdList, string $status): array
|
||||
{
|
||||
/* Sort the IDs, the child stage comes first, and the parent stage follows. */
|
||||
$executionList = $this->dao->select('id,name,status,grade,type,attribute,deliverable,project')->from(TABLE_EXECUTION)->where('id')->in($executionIdList)->filterTpl(false)->orderBy('grade_desc')->fetchAll('id');
|
||||
$executionList = $this->dao->select('id,name,status,grade,type,attribute,project')->from(TABLE_EXECUTION)->where('id')->in($executionIdList)->filterTpl(false)->orderBy('grade_desc')->fetchAll('id');
|
||||
|
||||
$this->loadModel('programplan');
|
||||
$message = array('byChild' => '', 'byDeliverable' => '');
|
||||
|
||||
Reference in New Issue
Block a user