You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ar...@apache.org on 2016/09/12 18:23:01 UTC

svn commit: r1760425 - /ofbiz/trunk/applications/accounting/servicedef/services_budget.xml

Author: arunpatidar
Date: Mon Sep 12 18:23:01 2016
New Revision: 1760425

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

Thanks Pratik Kulshreshth 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=1760425&r1=1760424&r2=1760425&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Mon Sep 12 18:23:01 2016
@@ -219,4 +219,20 @@ under the License.
         <description>Delete an existing Budget Scenario Rule Record</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
     </service>
+
+    <!-- BudgetAttribute services -->
+    <service name="createBudgetAttribute" default-entity-name="BudgetAttribute" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new BudgetAttribute record</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateBudgetAttribute" default-entity-name="BudgetAttribute" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a BudgetAttribute record</description>
+        <auto-attributes include="pk" mode="IN"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="removeBudgetAttribute" default-entity-name="BudgetAttribute" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a BudgetAttribute record</description>
+        <auto-attributes include="pk" mode="IN"/>
+    </service>
 </services>