Author: arunpatidar
Date: Sat Sep  3 16:36:35 2016
New Revision: 1759103

URL: http://svn.apache.org/viewvc?rev=1759103&view=rev
Log:
Applied patch from jira issue - OFBIZ-7859 - Added CRUD services for 
AcctgTransTypeAttr entity . Thanks Rahul Kushwah 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=1759103&r1=1759102&r2=1759103&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml 
(original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_ledger.xml Sat Sep  
3 16:36:35 2016
@@ -699,4 +699,18 @@ under the License.
         <description>Delete AcctgTransAttribute</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+    <service name="createAcctgTransTypeAttr" 
default-entity-name="AcctgTransTypeAttr" engine="entity-auto" invoke="create" 
auth="true">
+        <description>Create a AcctgTransTypeAttr entry</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateAcctgTransTypeAttr" 
default-entity-name="AcctgTransTypeAttr" engine="entity-auto" invoke="update" 
auth="true">
+        <description>Update a AcctgTransTypeAttr record</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteAcctgTransTypeAttr" 
default-entity-name="AcctgTransTypeAttr" engine="entity-auto" invoke="delete" 
auth="true">
+        <description>Delete a AcctgTransTypeAttr record</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>


Reply via email to