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/17 06:27:18 UTC

svn commit: r1761123 - /ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml

Author: arunpatidar
Date: Sat Sep 17 06:27:18 2016
New Revision: 1761123

URL: http://svn.apache.org/viewvc?rev=1761123&view=rev
Log:
Implemented: Added CRUD services for GlAccountCategoryType entity.
(OFBIZ-8031)

Thanks: Aman Mishra for the contribution.

Modified:
    ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml

Modified: ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml?rev=1761123&r1=1761122&r2=1761123&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml Sat Sep 17 06:27:18 2016
@@ -743,4 +743,22 @@ under the License.
         <description>Remove an AcctgTransType</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+
+    <service name="createGlAccountCategoryType" engine="entity-auto" default-entity-name="GlAccountCategoryType" invoke="create" auth="true">
+        <description>Create GlAccountCategoryType</description>
+        <auto-attributes include="pk" mode="INOUT" optional="true"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+
+    <service name="updateGlAccountCategoryType" engine="entity-auto" default-entity-name="GlAccountCategoryType" invoke="update" auth="true">
+        <description>Update GlAccountCategoryType</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+
+    <service name="deleteGlAccountCategoryType" engine="entity-auto" default-entity-name="GlAccountCategoryType" invoke="delete" auth="true">
+        <description>Delete GlAccountCategoryType</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
+
 </services>