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/07 01:01:39 UTC

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

Author: arunpatidar
Date: Wed Sep  7 01:01:39 2016
New Revision: 1759528

URL: http://svn.apache.org/viewvc?rev=1759528&view=rev
Log:
Applied patch from jira issue - OFBIZ-8006 - Added CRUD services for BudgetScenarioRule entity . Thanks Rohit Koushal 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=1759528&r1=1759527&r2=1759528&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Wed Sep  7 01:01:39 2016
@@ -202,4 +202,21 @@ under the License.
         <description>Remove a BudgetRevisionImpact</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+    
+    <service name="createBudgetScenarioRule" default-entity-name="BudgetScenarioRule" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new Budget Scenario Rule Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    
+    <service name="updateBudgetScenarioRule" default-entity-name="BudgetScenarioRule" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a Budget Scenario Rule</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    
+    <service name="deleteBudgetScenarioRule" default-entity-name="BudgetScenarioRule" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete an existing Budget Scenario Rule Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+    </service>
 </services>