Author: arunpatidar
Date: Thu Sep  8 18:39:36 2016
New Revision: 1759885

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

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=1759885&r1=1759884&r2=1759885&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/servicedef/services_request.xml (original)
+++ ofbiz/trunk/applications/order/servicedef/services_request.xml Thu Sep  8 
18:39:36 2016
@@ -241,5 +241,19 @@ under the License.
         <description>Delete a CustRequestCategory record</description>
         <auto-attributes include="pk" mode="IN"/>
     </service>
+    <service name="createCustRequestResolution" engine="entity-auto" 
invoke="create" default-entity-name="CustRequestResolution" auth="true">
+        <description>Create a CustRequestResolution record</description>
+        <auto-attributes include="pk" mode="INOUT" optional="true"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateCustRequestResolution" engine="entity-auto" 
invoke="update" default-entity-name="CustRequestResolution" auth="true">
+        <description>Update a CustRequestResolution record</description>
+        <auto-attributes include="pk" mode="IN"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteCustRequestResolution" engine="entity-auto" 
invoke="delete" default-entity-name="CustRequestResolution" auth="true">
+        <description>Delete a CustRequestResolution record</description>
+        <auto-attributes include="pk" mode="IN"/>
+    </service>
 </services>
 


Reply via email to