Author: arunpatidar
Date: Mon Sep 12 18:41:32 2016
New Revision: 1760431
URL:
http://svn.apache.org/viewvc?rev=1760431&view=revLog:
Applied patch for "Added CRUD services for BudgetTypeAttr entity" from issue [OFBIZ-8015]
Thanks Amit Gadaley and Rishi Solanki for your contribution.
Modified:
ofbiz/trunk/applications/accounting/servicedef/services_budget.xml
Modified: ofbiz/trunk/applications/accounting/servicedef/services_budget.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_budget.xml?rev=1760431&r1=1760430&r2=1760431&view=diff==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Mon Sep 12 18:41:32 2016
@@ -235,4 +235,18 @@ under the License.
<description>Delete a BudgetAttribute record</description>
<auto-attributes include="pk" mode="IN"/>
</service>
+ <service name="createBudgetTypeAttr" default-entity-name="BudgetTypeAttr" engine="entity-auto" invoke="create" auth="true">
+ <description>Create a Budget Type Attr Record</description>
+ <auto-attributes include="pk" mode="IN"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="updateBudgetTypeAttr" default-entity-name="BudgetTypeAttr" engine="entity-auto" invoke="update" auth="true">
+ <description>Update a Budget Type Attr Record</description>
+ <auto-attributes include="pk" mode="IN"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="deleteBudgetTypeAttr" default-entity-name="BudgetTypeAttr" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete a Budget Type Attr Record</description>
+ <auto-attributes include="pk" mode="IN"/>
+ </service>
</services>