mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-04 12:17:41 +08:00
PL-8057 - Setting null to the CategoryAttributeValue should clear transient fields as well
This commit is contained in:
parent
392d586f91
commit
269cfb1316
@ -188,6 +188,8 @@ public class CategoryAttributeValue extends StandardEntity {
|
|||||||
booleanValue = null;
|
booleanValue = null;
|
||||||
entityValue = null;
|
entityValue = null;
|
||||||
dateValue = null;
|
dateValue = null;
|
||||||
|
transientEntityValue = null;
|
||||||
|
transientCollectionValue = null;
|
||||||
} else if (value instanceof Date) {
|
} else if (value instanceof Date) {
|
||||||
setDateValue((Date) value);
|
setDateValue((Date) value);
|
||||||
} else if (value instanceof Integer) {
|
} else if (value instanceof Integer) {
|
||||||
|
Loading…
Reference in New Issue
Block a user