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 15:34:16 UTC

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

Author: arunpatidar
Date: Sat Sep  3 15:34:15 2016
New Revision: 1759095

URL: http://svn.apache.org/viewvc?rev=1759095&view=rev
Log:
Applied patch from jira issue - OFBIZ-8000 - Added CRUD services for BudgetScenario 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=1759095&r1=1759094&r2=1759095&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Sat Sep  3 15:34:15 2016
@@ -171,4 +171,19 @@ under the License.
         <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>
+    <service name="createBudgetScenario" default-entity-name="BudgetScenario" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a Budget Scenario Record</description>
+        <auto-attributes include="pk" mode="INOUT" optional="true"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateBudgetScenario" default-entity-name="BudgetScenario" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a Budget Scenario Record</description>
+        <auto-attributes include="pk" mode="IN"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteBudgetScenario" default-entity-name="BudgetScenario" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a Budget Scenario Record</description>
+        <auto-attributes include="pk" mode="IN"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
 </services>