Author: arunpatidar
Date: Sat Aug 27 13:31:26 2016
New Revision: 1758030
URL:
http://svn.apache.org/viewvc?rev=1758030&view=revLog:
Applied patch from jira issue - OFBIZ-7839 - Added CRUD services for AccommodationMap entity . Thanks Rishi Solanki and Pratik Kulshreshth 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=1758030&r1=1758029&r2=1758030&view=diff==============================================================================
--- ofbiz/trunk/applications/accounting/servicedef/services_fixedasset.xml (original)
+++ ofbiz/trunk/applications/accounting/servicedef/services_fixedasset.xml Sat Aug 27 13:31:26 2016
@@ -331,4 +331,20 @@ under the License.
<description>Delete a AccommodationMapType record</description>
<auto-attributes include="pk" mode="IN" optional="false"/>
</service>
+
+ <!-- AccommodationMap services -->
+ <service name="createAccommodationMap" default-entity-name="AccommodationMap" engine="entity-auto" invoke="create" auth="true">
+ <description>Create a AccommodationMap</description>
+ <auto-attributes include="pk" mode="INOUT" optional="true"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="updateAccommodationMap" default-entity-name="AccommodationMap" engine="entity-auto" invoke="update" auth="true">
+ <description>Update a AccommodationMap</description>
+ <auto-attributes include="pk" mode="IN"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="deleteAccommodationMap" default-entity-name="AccommodationMap" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete a AccommodationMap</description>
+ <auto-attributes include="pk" mode="IN"/>
+ </service>
</services>