|
@@ 419-423 (lines=5) @@
|
| 416 |
|
$whereCondition = $this->entityAlias.'.'.$fieldName.' = :field_'.$fieldName . $salt; |
| 417 |
|
} |
| 418 |
|
|
| 419 |
|
if ($orCondition['orCondition'] != null) { |
| 420 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 421 |
|
} else { |
| 422 |
|
$orCondition['orCondition'] = $whereCondition; |
| 423 |
|
} |
| 424 |
|
|
| 425 |
|
if (isset($operator['substitution_pattern'])) { |
| 426 |
|
if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |
|
@@ 445-449 (lines=5) @@
|
| 442 |
|
$isNotARelation = 0 !== strpos($fieldName, 'Embedded.'); |
| 443 |
|
if ($isNotARelation) { |
| 444 |
|
$whereCondition = $this->entityAlias.'.'.$fieldName.' '.$operator['meta'].' ' . $this->entityAlias . '.' . $value; |
| 445 |
|
if ($orCondition['orCondition'] != null) { |
| 446 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 447 |
|
} else { |
| 448 |
|
$orCondition['orCondition'] = $whereCondition; |
| 449 |
|
} |
| 450 |
|
} |
| 451 |
|
} |
| 452 |
|
|
|
@@ 480-484 (lines=5) @@
|
| 477 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
| 478 |
|
} |
| 479 |
|
|
| 480 |
|
if ($orCondition['orCondition'] != null) { |
| 481 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 482 |
|
} else { |
| 483 |
|
$orCondition['orCondition'] = $whereCondition; |
| 484 |
|
} |
| 485 |
|
|
| 486 |
|
if (isset($operator['substitution_pattern'])) { |
| 487 |
|
if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |