mirror of
https://github.com/getrebuild/rebuild.git
synced 2025-02-24 14:25:05 +08:00
fix: Can fillin fields
This commit is contained in:
parent
cee6d6c61a
commit
a65b7d50dc
1 changed files with 3 additions and 1 deletions
|
@ -75,7 +75,9 @@ public class FieldFillinbackControll extends BaseControll {
|
||||||
if (targetEntity != null) {
|
if (targetEntity != null) {
|
||||||
for (Field field : MetadataSorter.sortFields(targetEntity.getFields())) {
|
for (Field field : MetadataSorter.sortFields(targetEntity.getFields())) {
|
||||||
EasyMeta easyField = EasyMeta.valueOf(field);
|
EasyMeta easyField = EasyMeta.valueOf(field);
|
||||||
if (easyField.getDisplayType() == DisplayType.SERIES || easyField.isBuiltin()) {
|
DisplayType dt = easyField.getDisplayType();
|
||||||
|
if (dt == DisplayType.SERIES || dt == DisplayType.MULTISELECT || dt == DisplayType.PICKLIST
|
||||||
|
|| easyField.isBuiltin()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
targetFields.add(FieldAggregationControll.buildField(field, true));
|
targetFields.add(FieldAggregationControll.buildField(field, true));
|
||||||
|
|
Loading…
Reference in a new issue