Author: hansbak
Date: Wed Nov 23 10:07:51 2011
New Revision: 1205353
URL:
http://svn.apache.org/viewvc?rev=1205353&view=revLog:
add OrderItemAttribute services
Modified:
ofbiz/trunk/applications/order/servicedef/services.xml
Modified: ofbiz/trunk/applications/order/servicedef/services.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services.xml?rev=1205353&r1=1205352&r2=1205353&view=diff==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services.xml Wed Nov 23 10:07:51 2011
@@ -1127,4 +1127,21 @@ under the License.
location="component://order/script/org/ofbiz/order/test/ShoppingCartTests.xml" invoke="testCreateOrderRentalProduct">
<description>Create Test Order Rental of an asset which is shipped from and returned to inventory</description>
</service>
+
+ <!-- Order Item Attribute -->
+ <service name="createOrderItemAttribute" engine="entity-auto" default-entity-name="OrderItemAttribute" invoke="create" auth="true">
+ <description>Create Order Item Attribute</description>
+ <auto-attributes mode="IN" entity-name="OrderItemAttribute" include="pk" optional="false"/>
+ <auto-attributes mode="IN" entity-name="OrderItemAttribute" include="nonpk" optional="true"/>
+ </service>
+ <service name="updateOrderItemAttribute" engine="entity-auto" default-entity-name="OrderItemAttribute" invoke="update" auth="true">
+ <description>Update Order Item Attribute</description>
+ <auto-attributes mode="IN" entity-name="OrderItemAttribute" include="pk" optional="false"/>
+ <auto-attributes mode="IN" entity-name="OrderItemAttribute" include="nonpk" optional="true"/>
+ </service>
+ <service name="deleteOrderItemAttribute" engine="entity-auto" default-entity-name="OrderItemAttribute" invoke="delete" auth="true">
+ <description>Delete Order Item Attribute</description>
+ <auto-attributes mode="IN" entity-name="OrderItemAttribute" include="pk" optional="false"/>
+ </service>
+
</services>