Author: arunpatidar
Date: Mon Sep 12 18:27:33 2016
New Revision: 1760426
URL:
http://svn.apache.org/viewvc?rev=1760426&view=revLog:
Applied patch for "Added CRUD services for FacilityGroupType entity" from issue [OFBIZ-8003]
Thanks Rahul singh and Rishi Solanki for your contribution.
Modified:
ofbiz/trunk/applications/product/servicedef/services_facility.xml
Modified: ofbiz/trunk/applications/product/servicedef/services_facility.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_facility.xml?rev=1760426&r1=1760425&r2=1760426&view=diff==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_facility.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_facility.xml Mon Sep 12 18:27:33 2016
@@ -945,4 +945,20 @@ under the License.
<description>Delete an existing ContainerType Record</description>
<auto-attributes mode="IN" include="pk" optional="false"/>
</service>
+
+ <!-- FacilityGroupType services -->
+ <service name="createFacilityGroupType" default-entity-name="FacilityGroupType" engine="entity-auto" invoke="create" auth="true">
+ <description>Create a FacilityGroupType</description>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ <auto-attributes include="pk" mode="INOUT" optional="true"/>
+ </service>
+ <service name="updateFacilityGroupType" default-entity-name="FacilityGroupType" engine="entity-auto" invoke="update" auth="true">
+ <description>Update a FacilityGroupType</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="deleteFacilityGroupType" default-entity-name="FacilityGroupType" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete a FacilityGroupType</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ </service>
</services>