Code: Select all
<mo:override id="blMetadataOverrides">
<mo:overrideItem ceilingEntity="org.broadleafcommerce.core.order.domain.Order">
<mo:field name="">
<mo:property name="readOnly" value="false" />
</mo:field>
</mo:overrideItem>
</mo:override>
In that applicationContext-admin.xml you will also need to include the mo XML namespace xmlns:mo="http://schema.broadleafcommerce.org/mo", and the XSD schema, http://schema.broadleafcommerce.org/mo/mo-3.0.xsd. Your <beans> element should look something like this:
Code: Select all
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mo="http://schema.broadleafcommerce.org/mo"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://schema.broadleafcommerce.org/mo
http://schema.broadleafcommerce.org/mo/mo-3.0.xsd">
...
</beans>