|
@@ 345-349 (lines=5) @@
|
| 342 |
|
} |
| 343 |
|
} |
| 344 |
|
|
| 345 |
|
if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |
| 346 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')'; |
| 347 |
|
} else { |
| 348 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
| 349 |
|
} |
| 350 |
|
|
| 351 |
|
$this->qBuilder->andWhere($whereCondition); |
| 352 |
|
if (isset($operator['substitution_pattern'])) { |
|
@@ 466-470 (lines=5) @@
|
| 463 |
|
} |
| 464 |
|
} |
| 465 |
|
|
| 466 |
|
if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |
| 467 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')'; |
| 468 |
|
} else { |
| 469 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
| 470 |
|
} |
| 471 |
|
|
| 472 |
|
if ($orCondition['orCondition'] != null) { |
| 473 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |