Adam Kozak created OFBIZ-4844:
---------------------------------

             Summary: Fields in extended entity do not override attribute 
enable-audit-log
                 Key: OFBIZ-4844
                 URL: https://issues.apache.org/jira/browse/OFBIZ-4844
             Project: OFBiz
          Issue Type: Bug
          Components: framework
    Affects Versions: Release 11.04.01
         Environment: n/a
            Reporter: Adam Kozak
            Priority: Trivial


When extending existing entity and overriding fields attribute 
'enable-audit-log' is not overriden. Suggested patch in ModelEntity.java:

    if (UtilValidate.isNotEmpty(field.getDescription())) {
        existingField.setDescription(field.getDescription());
    }
+   existingField.enableAuditLog = 
UtilXml.checkBoolean(fieldElement.getAttribute("enable-audit-log"), 
existingField.enableAuditLog);
} else {

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to