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 00:47:47 UTC

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

Author: arunpatidar
Date: Wed Sep  7 00:47:47 2016
New Revision: 1759524

URL: http://svn.apache.org/viewvc?rev=1759524&view=rev
Log:
Applied patch from jira issue - OFBIZ-7853 - Added CRUD services for AcctgTransType entity . Thanks Rohit Koushal and Rishi Solanki for your 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=1759524&r1=1759523&r2=1759524&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml Wed Sep  7 00:47:47 2016
@@ -727,4 +727,20 @@ under the License.
     <service name="deleteAcctgTransEntryType" engine="entity-auto" default-entity-name="AcctgTransEntryType" invoke="delete" auth="true">
         <auto-attributes mode="IN" include="pk" optional="false"/>
     </service>
+    
+    <!-- AcctgTransType services -->
+    <service name="createAcctgTransType" default-entity-name="AcctgTransType" engine="entity-auto" invoke="create" auth="true">
+        <description>Create an AcctgTransType</description>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+        <auto-attributes include="pk" mode="INOUT" optional="true"/>
+    </service>
+    <service name="updateAcctgTransType" default-entity-name="AcctgTransType" engine="entity-auto" invoke="update" auth="true">
+        <description>Update an AcctgTransType</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="removeAcctgTransType" default-entity-name="AcctgTransType" engine="entity-auto" invoke="delete" auth="true">
+        <description>Remove an AcctgTransType</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>