|
@@ 415-419 (lines=5) @@
|
| 412 |
|
$whereCondition = $this->entityAlias.'.'.$fieldName.' = :field_'.$fieldName . $salt; |
| 413 |
|
} |
| 414 |
|
|
| 415 |
|
if ($orCondition['orCondition'] != null) { |
| 416 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 417 |
|
} else { |
| 418 |
|
$orCondition['orCondition'] = $whereCondition; |
| 419 |
|
} |
| 420 |
|
|
| 421 |
|
if (isset($operator['substitution_pattern'])) { |
| 422 |
|
if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |
|
@@ 441-445 (lines=5) @@
|
| 438 |
|
$isNotARelation = 0 !== strpos($fieldName, 'Embedded.'); |
| 439 |
|
if ($isNotARelation) { |
| 440 |
|
$whereCondition = $this->entityAlias.'.'.$fieldName.' '.$operator['meta'].' ' . $this->entityAlias . '.' . $value; |
| 441 |
|
if ($orCondition['orCondition'] != null) { |
| 442 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 443 |
|
} else { |
| 444 |
|
$orCondition['orCondition'] = $whereCondition; |
| 445 |
|
} |
| 446 |
|
} |
| 447 |
|
} |
| 448 |
|
|
|
@@ 472-476 (lines=5) @@
|
| 469 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
| 470 |
|
} |
| 471 |
|
|
| 472 |
|
if ($orCondition['orCondition'] != null) { |
| 473 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 474 |
|
} else { |
| 475 |
|
$orCondition['orCondition'] = $whereCondition; |
| 476 |
|
} |
| 477 |
|
|
| 478 |
|
if (isset($operator['substitution_pattern'])) { |
| 479 |
|
if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |