|
@@ 375-379 (lines=5) @@
|
| 372 |
|
$whereCondition = $this->entityAlias.'.'.$fieldName.' = :field_'.$fieldName . $salt; |
| 373 |
|
} |
| 374 |
|
|
| 375 |
|
if ($orCondition['orCondition'] != null) { |
| 376 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 377 |
|
} else { |
| 378 |
|
$orCondition['orCondition'] = $whereCondition; |
| 379 |
|
} |
| 380 |
|
|
| 381 |
|
if (isset($operator['substitution_pattern'])) { |
| 382 |
|
if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |
|
@@ 401-405 (lines=5) @@
|
| 398 |
|
$isNotARelation = 0 !== strpos($fieldName, 'Embedded.'); |
| 399 |
|
if ($isNotARelation) { |
| 400 |
|
$whereCondition = $this->entityAlias.'.'.$fieldName.' '.$operator['meta'].' ' . $this->entityAlias . '.' . $value; |
| 401 |
|
if ($orCondition['orCondition'] != null) { |
| 402 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 403 |
|
} else { |
| 404 |
|
$orCondition['orCondition'] = $whereCondition; |
| 405 |
|
} |
| 406 |
|
} |
| 407 |
|
} |
| 408 |
|
|
|
@@ 436-440 (lines=5) @@
|
| 433 |
|
$whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt; |
| 434 |
|
} |
| 435 |
|
|
| 436 |
|
if ($orCondition['orCondition'] != null) { |
| 437 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 438 |
|
} else { |
| 439 |
|
$orCondition['orCondition'] = $whereCondition; |
| 440 |
|
} |
| 441 |
|
|
| 442 |
|
if (isset($operator['substitution_pattern'])) { |
| 443 |
|
if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) { |