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/17 06:22:27 UTC

svn commit: r1761122 - /ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml

Author: arunpatidar
Date: Sat Sep 17 06:22:27 2016
New Revision: 1761122

URL: http://svn.apache.org/viewvc?rev=1761122&view=rev
Log:
Implemented: Added CRUD services for FinAccountTransAttribute entity.
(OFBIZ-8030)

Thanks: Rahul Singh Kushwah for the contribution.

Modified:
    ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml

Modified: ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml?rev=1761122&r1=1761121&r2=1761122&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_finaccount.xml Sat Sep 17 06:22:27 2016
@@ -535,4 +535,20 @@ under the License.
         <description>Delete a FinAccountAttribute</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+
+    <!-- FinAccountTransAttribute services -->
+    <service name="createFinAccountTransAttribute" default-entity-name="FinAccountTransAttribute" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a FinAccountTransAttribute</description>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+        <auto-attributes include="pk" mode="INOUT" optional="false"/>
+    </service>
+    <service name="updateFinAccountTransAttribute" default-entity-name="FinAccountTransAttribute" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a FinAccountTransAttribute</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteFinAccountTransAttribute" default-entity-name="FinAccountTransAttribute" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a FinAccountTransAttribute</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>