@@ 309-313 (lines=5) @@ | ||
306 | } |
|
307 | } |
|
308 | ||
309 | if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |
|
310 | $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')'; |
|
311 | } else { |
|
312 | $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
|
313 | } |
|
314 | ||
315 | $this->qBuilder->andWhere($whereCondition); |
|
316 | if (isset($operator['substitution_pattern'])) { |
|
@@ 438-442 (lines=5) @@ | ||
435 | $salt = '_' . rand(111, 999); |
|
436 | } |
|
437 | ||
438 | if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |
|
439 | $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')'; |
|
440 | } else { |
|
441 | $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
|
442 | } |
|
443 | ||
444 | if ($orCondition['orCondition'] != null) { |
|
445 | $orCondition['orCondition'] .= ' OR ' . $whereCondition; |