Author: arunpatidar
Date: Wed Sep  7 00:51:59 2016
New Revision: 1759526

URL: http://svn.apache.org/viewvc?rev=1759526&view=rev
Log:
Applied patch from jira issue - OFBIZ-7870 - Added CRUD services for 
AgreementTypeAttr entity . Thanks Rohit Koushal and Rishi Solanki for your 
contribution.

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

Modified: ofbiz/trunk/applications/accounting/servicedef/services_agreement.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_agreement.xml?rev=1759526&r1=1759525&r2=1759526&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_agreement.xml 
(original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_agreement.xml Wed 
Sep  7 00:51:59 2016
@@ -310,4 +310,21 @@ under the License.
         <description>Delete AgreementWorkEffortApplic</description>
         <auto-attributes mode="IN" include="pk" optional="false"/>
     </service>
+    
+    
+    <!-- AgreementTypeAttr services -->
+    <service name="createAgreementTypeAttr" 
default-entity-name="AgreementTypeAttr" engine="entity-auto" invoke="create" 
auth="true">
+        <description>Create an AgreementTypeAttr</description>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
+    <service name="updateAgreementTypeAttr" 
default-entity-name="AgreementTypeAttr" engine="entity-auto" invoke="update" 
auth="true">
+        <description>Update an AgreementTypeAttr</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="removeAgreementTypeAttr" 
default-entity-name="AgreementTypeAttr" engine="entity-auto" invoke="delete" 
auth="true">
+        <description>Remove an AgreementTypeAttr</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>


Reply via email to