|
@@ 306-310 (lines=5) @@
|
| 303 |
|
} |
| 304 |
|
} |
| 305 |
|
|
| 306 |
|
if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) { |
| 307 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')'; |
| 308 |
|
} else { |
| 309 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
| 310 |
|
} |
| 311 |
|
|
| 312 |
|
$this->qBuilder->andWhere($whereCondition); |
| 313 |
|
if (isset($operator['substitution_pattern'])) { |
|
@@ 419-423 (lines=5) @@
|
| 416 |
|
} |
| 417 |
|
} |
| 418 |
|
|
| 419 |
|
if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) { |
| 420 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')'; |
| 421 |
|
} else { |
| 422 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
| 423 |
|
} |
| 424 |
|
|
| 425 |
|
if ($orCondition['orCondition'] != null) { |
| 426 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |