* [bug#68087] Delete the field of deliverable in the table of project.

This commit is contained in:
xieqiyu
2025-12-12 08:02:18 +00:00
parent 5aa6049c75
commit 8a4ada7e1b
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -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,
+1 -1
View File
@@ -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' => '');