Author: arunpatidar
Date: Wed Aug 31 15:39:06 2016
New Revision: 1758626
URL:
http://svn.apache.org/viewvc?rev=1758626&view=revLog:
Applied patch from jira issue - OFBIZ-7883 - Added CRUD services for BudgetItemTypeAttr entity . 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=1758626&r1=1758625&r2=1758626&view=diff==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Wed Aug 31 15:39:06 2016
@@ -123,4 +123,18 @@ under the License.
<description>Remove an existing Budget Item Type Record</description>
<auto-attributes mode="IN" include="pk"/>
</service>
+ <service name="createBudgetItemTypeAttr" default-entity-name="BudgetItemTypeAttr" engine="entity-auto" invoke="create" auth="true">
+ <description>Create a new Budget Item Type Attr Record</description>
+ <auto-attributes mode="IN" include="pk"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="updateBudgetItemTypeAttr" default-entity-name="BudgetItemTypeAttr" engine="entity-auto" invoke="update" auth="true">
+ <description>Update a Budget Item Type Attr Record</description>
+ <auto-attributes mode="IN" include="pk"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="deleteBudgetItemTypeAttr" default-entity-name="BudgetItemTypeAttr" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete an existing Budget Item Type Attr Record</description>
+ <auto-attributes mode="IN" include="pk"/>
+ </service>
</services>