Author: arunpatidar
Date: Wed Sep 7 00:28:49 2016
New Revision: 1759519
URL:
http://svn.apache.org/viewvc?rev=1759519&view=revLog:
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>