You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ar...@apache.org on 2016/09/08 18:01:32 UTC

svn commit: r1759878 - /ofbiz/trunk/applications/product/servicedef/services_cost.xml

Author: arunpatidar
Date: Thu Sep  8 18:01:32 2016
New Revision: 1759878

URL: http://svn.apache.org/viewvc?rev=1759878&view=rev
Log:
Applied patch for "Added CRUD services for CostComponentTypeAttr entity"  from issue [OFBIZ-8086] 

Thanks Rohit Koushal and Rishi Solanki for your contribution.

Modified:
    ofbiz/trunk/applications/product/servicedef/services_cost.xml

Modified: ofbiz/trunk/applications/product/servicedef/services_cost.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_cost.xml?rev=1759878&r1=1759877&r2=1759878&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_cost.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_cost.xml Thu Sep  8 18:01:32 2016
@@ -153,4 +153,18 @@ under the License.
         <description>Delete an existing Cost Component Type Record</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
     </service>
+    <service name="createCostComponentTypeAttr" default-entity-name="CostComponentTypeAttr" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new Cost Component Type Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateCostComponentTypeAttr" default-entity-name="CostComponentTypeAttr" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a Cost Component Type</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteCostComponentTypeAttr" default-entity-name="CostComponentTypeAttr" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete an existing Cost Component Type Attr Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+    </service>
 </services>