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/07 00:42:08 UTC

svn commit: r1759521 - /ofbiz/trunk/applications/accounting/servicedef/services_payment.xml

Author: arunpatidar
Date: Wed Sep  7 00:42:08 2016
New Revision: 1759521

URL: http://svn.apache.org/viewvc?rev=1759521&view=rev
Log:
Applied patch from jira issue - OFBIZ-7873 - Added CRUD services for BillingAccountTermAttr entity . Thanks Chinmay Patidar and Rishi Solanki for your contribution.

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

Modified: ofbiz/trunk/applications/accounting/servicedef/services_payment.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_payment.xml?rev=1759521&r1=1759520&r2=1759521&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_payment.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_payment.xml Wed Sep  7 00:42:08 2016
@@ -270,4 +270,16 @@ under the License.
         <description>Remove Content From Payment</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+
+    <service name="createBillingAccountTermAttr" engine="entity-auto" default-entity-name="BillingAccountTermAttr" invoke="create" auth="true">
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateBillingAccountTermAttr" engine="entity-auto" default-entity-name="BillingAccountTermAttr" invoke="update" auth="true">
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteBillingAccountTermAttr" engine="entity-auto" default-entity-name="BillingAccountTermAttr" invoke="delete" auth="true">
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>