mirror of
https://gitee.com/jmix/cuba.git
synced 2024-11-30 18:27:56 +08:00
Some requested properties specifed in view are not loaded in CC transaction browser. #PL-6070
This commit is contained in:
parent
86f87f39da
commit
b667015e8f
@ -353,7 +353,7 @@ public class FetchGroupManager {
|
||||
FetchGroupField that = (FetchGroupField) o;
|
||||
|
||||
if (!metaClass.equals(that.metaClass)) return false;
|
||||
if (!metaProperty.equals(that.metaProperty)) return false;
|
||||
if (!metaPropertyPath.equals(that.metaPropertyPath)) return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -361,7 +361,7 @@ public class FetchGroupManager {
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int result = metaClass.hashCode();
|
||||
result = 31 * result + metaProperty.hashCode();
|
||||
result = 31 * result + metaPropertyPath.hashCode();
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user