|
@@ 354-358 (lines=5) @@
|
| 351 |
|
$whereCondition = $this->entityAlias.'.'.$fieldName.' = :field_'.$fieldName . $salt; |
| 352 |
|
} |
| 353 |
|
|
| 354 |
|
if ($orCondition['orCondition'] != null) { |
| 355 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 356 |
|
} else { |
| 357 |
|
$orCondition['orCondition'] = $whereCondition; |
| 358 |
|
} |
| 359 |
|
|
| 360 |
|
if ($op->haveSubstitutionPattern()) { |
| 361 |
|
if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) { |
|
@@ 382-386 (lines=5) @@
|
| 379 |
|
$whereCondition = $this->entityAlias.'.'.$fieldName.' '. |
| 380 |
|
$op->getMeta() |
| 381 |
|
.' ' . $this->entityAlias . '.' . $value; |
| 382 |
|
if ($orCondition['orCondition'] != null) { |
| 383 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 384 |
|
} else { |
| 385 |
|
$orCondition['orCondition'] = $whereCondition; |
| 386 |
|
} |
| 387 |
|
} |
| 388 |
|
} |
| 389 |
|
|
|
@@ 417-421 (lines=5) @@
|
| 414 |
|
.' :field_'.$fieldName . $salt; |
| 415 |
|
} |
| 416 |
|
|
| 417 |
|
if ($orCondition['orCondition'] != null) { |
| 418 |
|
$orCondition['orCondition'] .= ' OR ' . $whereCondition; |
| 419 |
|
} else { |
| 420 |
|
$orCondition['orCondition'] = $whereCondition; |
| 421 |
|
} |
| 422 |
|
|
| 423 |
|
if ($op->haveSubstitutionPattern()) { |
| 424 |
|
if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) { |