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/08/31 15:27:24 UTC

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

Author: arunpatidar
Date: Wed Aug 31 15:27:24 2016
New Revision: 1758621

URL: http://svn.apache.org/viewvc?rev=1758621&view=rev
Log:
Applied patch from jira issue - OFBIZ-7880 - Added CRUD services for BudgetItemAttribute 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=1758621&r1=1758620&r2=1758621&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Wed Aug 31 15:27:24 2016
@@ -95,4 +95,18 @@ under the License.
         <auto-attributes include="pk" mode="IN"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
+    <service name="createBudgetItemAttribute" default-entity-name="BudgetItemAttribute" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new Budget Item Attribute Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateBudgetItemAttribute" default-entity-name="BudgetItemAttribute" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a Budget Item Attribute Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="deleteBudgetItemAttribute" default-entity-name="BudgetItemAttribute" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete an existing Budget Item Attribute Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+    </service>
 </services>