Merge branch 'mayue_fix_bug#21579' into 'master'

* Fix bug #21579.

See merge request easycorp/zentaopms!2805
This commit is contained in:
李玉春
2022-04-07 08:55:02 +00:00
+1 -1
View File
@@ -83,7 +83,7 @@ class productplanModel extends model
$date = date('Y-m-d');
$plans = $this->dao->select('*')->from(TABLE_PRODUCTPLAN)->where('product')->eq($product)
->andWhere('deleted')->eq(0)
->beginIF(!empty($branch))->andWhere('branch')->eq($branch)->fi()
->beginIF(!empty($branch) and $branch != 'all')->andWhere('branch')->eq($branch)->fi()
->beginIF($browseType != 'all')->andWhere('status')->eq($browseType)->fi()
->beginIF(strpos($param, 'skipparent') !== false)->andWhere('parent')->ne(-1)->fi()
->orderBy($orderBy)