Author: arunpatidar
Date: Wed Sep 7 00:37:34 2016
New Revision: 1759520
URL:
http://svn.apache.org/viewvc?rev=1759520&view=revLog:
Applied patch from jira issue - OFBIZ-7869 - Added CRUD services for AgreementTermAttribute entity . Thanks Chinmay Patidar and Rishi Solanki for your contribution.
Modified:
ofbiz/trunk/applications/party/servicedef/services_agreement.xml
Modified: ofbiz/trunk/applications/party/servicedef/services_agreement.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/servicedef/services_agreement.xml?rev=1759520&r1=1759519&r2=1759520&view=diff==============================================================================
--- ofbiz/trunk/applications/party/servicedef/services_agreement.xml (original)
+++ ofbiz/trunk/applications/party/servicedef/services_agreement.xml Wed Sep 7 00:37:34 2016
@@ -1,11 +1,21 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-
<services xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="
http://ofbiz.apache.org/dtds/services.xsd">
<description>Party Component Services</description>
<vendor>OFBiz</vendor>
<version>1.0</version>
+ <service name="createAgreementTermAttribute" engine="entity-auto" default-entity-name="AgreementTermAttribute" invoke="create" auth="true">
+ <auto-attributes mode="INOUT" include="pk" optional="false"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="updateAgreementTermAttribute" engine="entity-auto" default-entity-name="AgreementTermAttribute" invoke="update" auth="true">
+ <auto-attributes mode="IN" include="pk" optional="false"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="deleteAgreementTermAttribute" engine="entity-auto" default-entity-name="AgreementTermAttribute" invoke="delete" auth="true">
+ <auto-attributes mode="IN" include="pk" optional="false"/>
+ </service>
+
<!-- Agreement item type services -->
<service name="createAgreementItemType" default-entity-name="AgreementItemType" engine="entity-auto" invoke="create" auth="true">
<description>Create a AgreementItemType record</description>