svn commit: r1726951 - /ofbiz/trunk/applications/accounting/servicedef/services_agreement.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1726951 - /ofbiz/trunk/applications/accounting/servicedef/services_agreement.xml

nmalin
Author: nmalin
Date: Wed Jan 27 08:16:07 2016
New Revision: 1726951

URL: http://svn.apache.org/viewvc?rev=1726951&view=rev
Log:
Add service crud for AgreementItemAttribute, related issue OFBIZ-6857

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=1726951&r1=1726950&r2=1726951&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_agreement.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_agreement.xml Wed Jan 27 08:16:07 2016
@@ -78,6 +78,25 @@ under the License.
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
 
+    <!-- AgreementItemAttribute -->
+    <service name="createAgreementItemAttribute" default-entity-name="AgreementItemAttribute" engine="entity-auto" invoke="create" auth="true">
+        <description>Create an AgreementItemAttribute</description>
+        <permission-service service-name="acctgAgreementPermissionCheck" main-action="CREATE"/>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateAgreementItemAttribute" default-entity-name="AgreementItemAttribute" engine="entity-auto" invoke="update" auth="true">
+        <description>Update an AgreementItemAttribute</description>
+        <permission-service service-name="acctgAgreementPermissionCheck" main-action="UPDATE"/>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteAgreementItemAttribute" default-entity-name="AgreementItemAttribute" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete an AgreementItemAttribute</description>
+        <permission-service service-name="acctgAgreementPermissionCheck" main-action="DELETE"/>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
+
     <!-- AgreementTerm  -->
     <service name="createAgreementTerm" default-entity-name="AgreementTerm" engine="entity-auto" invoke="create" auth="true">
         <description>Create an AgreementTerm</description>