Author: arunpatidar
Date: Wed Aug 31 15:33:20 2016
New Revision: 1758624

URL: http://svn.apache.org/viewvc?rev=1758624&view=rev
Log:
Applied patch from jira issue - OFBIZ-7882 - Added CRUD services for 
BudgetItemType 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=1758624&r1=1758623&r2=1758624&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_budget.xml 
(original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_budget.xml Wed Aug 
31 15:33:20 2016
@@ -109,4 +109,18 @@ under the License.
         <description>Delete an existing Budget Item Attribute 
Record</description>
         <auto-attributes mode="IN" include="pk"/>
     </service>
+    <service name="createBudgetItemType" default-entity-name="BudgetItemType" 
engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new Budget Item Type Record</description>
+        <auto-attributes mode="INOUT" include="pk" optional="true"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateBudgetItemType" default-entity-name="BudgetItemType" 
engine="entity-auto" invoke="update" auth="true">
+        <description>Update a Budget Item Type Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="removeBudgetItemType" default-entity-name="BudgetItemType" 
engine="entity-auto" invoke="delete" auth="true">
+        <description>Remove an existing Budget Item Type Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+    </service>
 </services>


Reply via email to