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