svn commit: r1758024 - /ofbiz/trunk/applications/accounting/servicedef/services_fixedasset.xml

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

svn commit: r1758024 - /ofbiz/trunk/applications/accounting/servicedef/services_fixedasset.xml

Arun Patidar-4
Author: arunpatidar
Date: Sat Aug 27 13:08:23 2016
New Revision: 1758024

URL: http://svn.apache.org/viewvc?rev=1758024&view=rev
Log:
Applied patch from jira issue - OFBIZ-7837 - Added CRUD services for AccommodationMapType entity . Thanks Rahul Singh Kushwah for your contribution.

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

Modified: ofbiz/trunk/applications/accounting/servicedef/services_fixedasset.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/servicedef/services_fixedasset.xml?rev=1758024&r1=1758023&r2=1758024&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_fixedasset.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_fixedasset.xml Sat Aug 27 13:08:23 2016
@@ -317,4 +317,18 @@ under the License.
         <description>Delete an AccommodationClass</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+    <service name="createAccommodationMapType" default-entity-name="AccommodationMapType" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a AccommodationMapType entry</description>
+        <auto-attributes include="pk" mode="INOUT" optional="true"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateAccommodationMapType" default-entity-name="AccommodationMapType" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a AccommodationMapType record</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteAccommodationMapType" default-entity-name="AccommodationMapType" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a AccommodationMapType record</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>