* [refac story #74538] Fix bug.

This commit is contained in:
wangyidong
2025-06-03 13:28:45 +08:00
parent 531b9218f1
commit 04df5acf6b
+1 -1
View File
@@ -2423,7 +2423,7 @@ class actionModel extends model
if(is_string($grantedProducts)) $grantedProducts = explode(',', $grantedProducts);
$grantedProducts = array_unique(array_filter($grantedProducts));
if($grantedProducts) $productCondition = " OR (execution = '0' AND project = '0' AND t2.product " . helper::dbIN($grantedExecutions) . ')';
if($grantedProducts) $productCondition = " OR (execution = '0' AND project = '0' AND t2.product " . helper::dbIN($grantedProducts) . ')';
}
else
{