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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

Arun Patidar-4
Author: arunpatidar
Date: Wed Sep  7 00:55:35 2016
New Revision: 1759527

URL: http://svn.apache.org/viewvc?rev=1759527&view=rev
Log:
Applied patch from jira issue - OFBIZ-7891 - Added CRUD services for BudgetRevisionImpact 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=1759527&r1=1759526&r2=1759527&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Wed Sep  7 00:55:35 2016
@@ -186,4 +186,20 @@ under the License.
         <auto-attributes include="pk" mode="IN"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
+    
+    <!-- BudgetRevisionImpact services -->
+    <service name="createBudgetRevisionImpact" default-entity-name="BudgetRevisionImpact" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a BudgetRevisionImpact</description>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
+    <service name="updateBudgetRevisionImpact" default-entity-name="BudgetRevisionImpact" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a BudgetRevisionImpact</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="removeBudgetRevisionImpact" default-entity-name="BudgetRevisionImpact" engine="entity-auto" invoke="delete" auth="true">
+        <description>Remove a BudgetRevisionImpact</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>