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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

Arun Patidar-4
Author: arunpatidar
Date: Thu Sep  8 17:53:33 2016
New Revision: 1759876

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

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=1759876&r1=1759875&r2=1759876&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_cost.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_cost.xml Thu Sep  8 17:53:33 2016
@@ -125,4 +125,18 @@ under the License.
         <description>Formula that creates a cost component equal to a percentage of total product cost</description>
         <implements service="productCostCalcInterface"/>
     </service>
+    <service name="createCostComponentAttribute" default-entity-name="CostComponentAttribute" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new Cost Component Attribute Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateCostComponentAttribute" default-entity-name="CostComponentAttribute" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a CostComponentAttribute</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteCostComponentAttribute" default-entity-name="CostComponentAttribute" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete an existing CostComponentAttribute Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+    </service>
 </services>