|
@@ 283-287 (lines=5) @@
|
| 280 |
|
} |
| 281 |
|
} |
| 282 |
|
|
| 283 |
|
if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) { |
| 284 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')'; |
| 285 |
|
} else { |
| 286 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
| 287 |
|
} |
| 288 |
|
|
| 289 |
|
$this->qBuilder->andWhere($whereCondition); |
| 290 |
|
if (isset($operator['substitution_pattern'])) { |
|
@@ 400-404 (lines=5) @@
|
| 397 |
|
} |
| 398 |
|
} |
| 399 |
|
|
| 400 |
|
if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) { |
| 401 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')'; |
| 402 |
|
} else { |
| 403 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
| 404 |
|
} |
| 405 |
|
|
| 406 |
|
if ($orCondition['orCondition'] != null) { |
| 407 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |