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/03 10:45:12 UTC

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

Author: arunpatidar
Date: Sat Sep  3 10:45:12 2016
New Revision: 1759072

URL: http://svn.apache.org/viewvc?rev=1759072&view=rev
Log:
Applied patch from jira issue - OFBIZ-7890 - Added CRUD services for BudgetRevision 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=1759072&r1=1759071&r2=1759072&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Sat Sep  3 10:45:12 2016
@@ -151,4 +151,18 @@ under the License.
         <description>Delete an existing Budget Review Result Type Record</description>
         <auto-attributes mode="IN" include="pk"/>
     </service>
+    <service name="createBudgetRevision" default-entity-name="BudgetRevision" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new Budget Revision Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateBudgetRevision" default-entity-name="BudgetRevision" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a Budget Revision Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="deleteBudgetRevision" default-entity-name="BudgetRevision" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete an existing Budget Revision Record. BudgetRevision entity contains historical data, hence this service ideally will not +	 be used.</description>
+        <auto-attributes mode="IN" include="pk"/>
+    </service>
 </services>