Author: arunpatidar
Date: Wed Aug 31 15:44:38 2016
New Revision: 1758627
URL:
http://svn.apache.org/viewvc?rev=1758627&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=1758627&r1=1758626&r2=1758627&view=diff==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Wed Aug 31 15:44:38 2016
@@ -137,4 +137,18 @@ under the License.
<description>Delete an existing Budget Item Type Attr Record</description>
<auto-attributes mode="IN" include="pk"/>
</service>
+ <service name="createBudgetReviewResultType" default-entity-name="BudgetReviewResultType" engine="entity-auto" invoke="create" auth="true">
+ <description>Create a new Budget Review Result Type Record</description>
+ <auto-attributes mode="INOUT" include="pk" optional="true"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="updateBudgetReviewResultType" default-entity-name="BudgetReviewResultType" engine="entity-auto" invoke="update" auth="true">
+ <description>Update a Budget Review Result Type Record</description>
+ <auto-attributes mode="IN" include="pk"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="deleteBudgetReviewResultType" default-entity-name="BudgetReviewResultType" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete an existing Budget Review Result Type Record</description>
+ <auto-attributes mode="IN" include="pk"/>
+ </service>
</services>