Author: arunpatidar
Date: Sat Aug 27 14:01:15 2016
New Revision: 1758036
URL:
http://svn.apache.org/viewvc?rev=1758036&view=revLog:
Applied patch from jira issue - OFBIZ-7845 - Added CRUD services for AcctgTransAttribute entity . Thanks Rishi Solanki and Aman Mishra 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=1758036&r1=1758035&r2=1758036&view=diff==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml Sat Aug 27 14:01:15 2016
@@ -681,4 +681,22 @@ under the License.
<attribute name="glAccountId" mode="IN" type="String"/>
<attribute name="amountPercentageMap" type="Map" string-map-prefix="amp_" mode="IN" optional="true"/>
</service>
+
+ <!-- AcctgTransAttribute services -->
+ <service name="createAcctgTransAttribute" default-entity-name="AcctgTransAttribute" engine="entity-auto" invoke="create" auth="true">
+ <description>Create AcctgTransAttribute</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+
+ <service name="updateAcctgTransAttribute" default-entity-name="AcctgTransAttribute" engine="entity-auto" invoke="update" auth="true">
+ <description>Update AcctgTransAttribute</description>
+ <auto-attributes include="pk" mode="IN" optional="false" />
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+
+ <service name="deleteAcctgTransAttribute" default-entity-name="AcctgTransAttribute" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete AcctgTransAttribute</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ </service>
</services>