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

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

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

Arun Patidar-4
Author: arunpatidar
Date: Wed Sep  7 00:28:49 2016
New Revision: 1759519

URL: http://svn.apache.org/viewvc?rev=1759519&view=rev
Log:
 Applied patch from OFBIZ-7847. Added CRUD services for entity AcctgTransEntryType. Thanks Chinmay Patidar 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=1759519&r1=1759518&r2=1759519&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml Wed Sep  7 00:28:49 2016
@@ -713,4 +713,18 @@ under the License.
         <description>Delete a AcctgTransTypeAttr record</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+
+    <service name="createAcctgTransEntryType" engine="entity-auto" default-entity-name="AcctgTransEntryType" invoke="create" auth="true">
+        <auto-attributes mode=" INOUT" include="pk" optional="true"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+
+    <service name="updateAcctgTransEntryType" engine="entity-auto" default-entity-name="AcctgTransEntryType" invoke="update" auth="true">
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+
+    <service name="deleteAcctgTransEntryType" engine="entity-auto" default-entity-name="AcctgTransEntryType" invoke="delete" auth="true">
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+    </service>
 </services>