You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ar...@apache.org on 2016/09/08 18:32:53 UTC

svn commit: r1759883 - /ofbiz/trunk/applications/order/servicedef/services_request.xml

Author: arunpatidar
Date: Thu Sep  8 18:32:53 2016
New Revision: 1759883

URL: http://svn.apache.org/viewvc?rev=1759883&view=rev
Log:
Applied patch for "Added CRUD services for CustRequestCategory entity"  from issue [OFBIZ-8095]

Thanks Amit Gadaley and Rishi Solanki for your contribution.

Modified:
    ofbiz/trunk/applications/order/servicedef/services_request.xml

Modified: ofbiz/trunk/applications/order/servicedef/services_request.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/servicedef/services_request.xml?rev=1759883&r1=1759882&r2=1759883&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services_request.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_request.xml Thu Sep  8 18:32:53 2016
@@ -227,5 +227,19 @@ under the License.
         <auto-attributes include="pk" mode="IN" optional="false"/>
         <auto-attributes include="nonpk" mode="IN" optional="true"/>
     </service>
+    <service name="createCustRequestCategory" engine="entity-auto" invoke="create" default-entity-name="CustRequestCategory" auth="true">
+        <description>Create a CustRequestCategory record</description>
+        <auto-attributes include="pk" mode="INOUT" optional="true"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateCustRequestCategory" engine="entity-auto" invoke="update" default-entity-name="CustRequestCategory" auth="true">
+        <description>Update a CustRequestCategory record</description>
+        <auto-attributes include="pk" mode="IN"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteCustRequestCategory" engine="entity-auto" invoke="delete" default-entity-name="CustRequestCategory" auth="true">
+        <description>Delete a CustRequestCategory record</description>
+        <auto-attributes include="pk" mode="IN"/>
+    </service>
 </services>