Author: arunpatidar
Date: Thu Sep 8 17:58:30 2016
New Revision: 1759877
URL: http://svn.apache.org/viewvc?rev=1759877&view=rev
Log:
Applied patch for "Added CRUD services for ContainerType entity" from issue
[OFBIZ-8084]
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=1759877&r1=1759876&r2=1759877&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_cost.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_cost.xml Thu Sep 8
17:58:30 2016
@@ -139,4 +139,18 @@ under the License.
<description>Delete an existing CostComponentAttribute
Record</description>
<auto-attributes mode="IN" include="pk" optional="false"/>
</service>
+ <service name="createCostComponentType"
default-entity-name="CostComponentType" engine="entity-auto" invoke="create"
auth="true">
+ <description>Create a new Cost Component Type Record</description>
+ <auto-attributes mode="INOUT" include="pk" optional="true"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="updateCostComponentType"
default-entity-name="CostComponentType" 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="deleteCostComponentType"
default-entity-name="CostComponentType" engine="entity-auto" invoke="delete"
auth="true">
+ <description>Delete an existing Cost Component Type
Record</description>
+ <auto-attributes mode="IN" include="pk" optional="false"/>
+ </service>
</services>