|
@@ 70-74 (lines=5) @@
|
| 67 |
|
return $this->entityAlias . '.' . $this->fieldName . ' ' . |
| 68 |
|
$this->operator->getMeta() . ' ' . |
| 69 |
|
$this->entityAlias . '.' . $this->value; |
| 70 |
|
} else { |
| 71 |
|
return $this->entityAlias . '.' . $this->fieldName . ' ' . |
| 72 |
|
$this->operator->getMeta() . ' ' . |
| 73 |
|
$this->getFieldName(); |
| 74 |
|
} |
| 75 |
|
} |
| 76 |
|
|
| 77 |
|
return $this->entityAlias . '.' . $this->fieldName . ' ' . |
|
@@ 93-97 (lines=5) @@
|
| 90 |
|
return $this->relationEntityAlias . '.' . $this->fieldName . ' ' . |
| 91 |
|
$this->operator->getMeta() . ' ' . |
| 92 |
|
$this->getListFieldName(); |
| 93 |
|
} else { |
| 94 |
|
return $this->relationEntityAlias . '.' . $this->fieldName . ' ' . |
| 95 |
|
$this->operator->getMeta() . ' ' . |
| 96 |
|
$this->getFieldName(); |
| 97 |
|
} |
| 98 |
|
} |
| 99 |
|
|
| 100 |
|
private function getFieldName() |