Author: deepak
Date: Sun Feb 12 11:51:13 2017
New Revision: 1782661
URL:
http://svn.apache.org/viewvc?rev=1782661&view=revLog:
Fixed: Copied sales order item fact related services from order component (OFBIZ-9213)
Modified:
ofbiz/ofbiz-plugins/trunk/bi/servicedef/services.xml
Modified: ofbiz/ofbiz-plugins/trunk/bi/servicedef/services.xml
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/bi/servicedef/services.xml?rev=1782661&r1=1782660&r2=1782661&view=diff==============================================================================
--- ofbiz/ofbiz-plugins/trunk/bi/servicedef/services.xml (original)
+++ ofbiz/ofbiz-plugins/trunk/bi/servicedef/services.xml Sun Feb 12 11:51:13 2017
@@ -161,4 +161,19 @@ under the License.
<auto-attributes include="pk" mode="IN"/>
</service>
+ <service name="createSalesOrderItemFact" default-entity-name="SalesOrderItemFact" engine="entity-auto" invoke="create" auth="true">
+ <description>Create a SalesOrderItemFact</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="updateSalesOrderItemFact" default-entity-name="SalesOrderItemFact" engine="entity-auto" invoke="update" auth="true">
+ <description>Update a SalesOrderItemFact</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="deleteSalesOrderItemFact" default-entity-name="SalesOrderItemFact" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete a SalesOrderItemFact</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ </service>
+
</services>