Merge branch 'sprint/wangzemei/28231' into 'master'

* Fix bug 28231

See merge request easycorp/zentaopms!5632
This commit is contained in:
李玉春
2022-09-30 01:29:39 +00:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1139,7 +1139,7 @@ class executionModel extends model
->batchCheck($this->config->kanban->edit->requiredFields, 'notempty')
->checkIF(!$execution->fluidBoard, 'colWidth', 'gt', 0)
->batchCheckIF($execution->fluidBoard, 'minColWidth,maxColWidth', 'gt', 0)
->checkIF($execution->minColWidth and $execution->maxColWidth and $execution->fluidBoard, 'maxColWidth', 'ge', $kanban->minColWidth)
->checkIF($execution->minColWidth and $execution->maxColWidth and $execution->fluidBoard, 'maxColWidth', 'gt', $execution->minColWidth)
->where('id')->eq((int)$executionID)
->exec();
}