This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release18.12 by this push:
     new 74605c4cdd Fixed: Reject reviewed  "Communication Event ID 
DEMO-COM-BACKLOG-1" is impossible (OFBIZ-OFBIZ-13137)
74605c4cdd is described below

commit 74605c4cdda312221cdc952ac936de72b6d26762
Author: Jacques Le Roux <jacques.le.r...@les7arts.com>
AuthorDate: Mon Sep 9 11:43:21 2024 +0200

    Fixed: Reject reviewed  "Communication Event ID DEMO-COM-BACKLOG-1" is 
impossible (OFBIZ-OFBIZ-13137)
    
    There is no setCustRequestStatus request-map in party controller.
    This adds it
    
    Conflicts handled by hand
---
 .../party/webapp/partymgr/WEB-INF/controller.xml        | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/applications/party/webapp/partymgr/WEB-INF/controller.xml 
b/applications/party/webapp/partymgr/WEB-INF/controller.xml
index 6effe47252..724cf9115a 100644
--- a/applications/party/webapp/partymgr/WEB-INF/controller.xml
+++ b/applications/party/webapp/partymgr/WEB-INF/controller.xml
@@ -25,7 +25,7 @@ under the License.
     <include location="component://commonext/webapp/WEB-INF/controller.xml"/>
     <include 
location="component://content/webapp/content/WEB-INF/controller.xml"/>
     <description>Party Manager Module Site Configuration File</description>
-    
+
     <handler name="simplecontent" type="view" 
class="org.apache.ofbiz.content.view.SimpleContentViewHandler"/>
 
     <!-- Events to run on every request before security (chains exempt) -->
@@ -674,7 +674,7 @@ under the License.
     <request-map uri="findVisits"><security https="true" 
auth="true"/><response name="success" type="view" 
value="findVisits"/></request-map>
     <request-map uri="visitdetail"><security https="true" 
auth="true"/><response name="success" type="view" 
value="visitdetail"/></request-map>
     <request-map uri="listLoggedInUsers"><security https="true" 
auth="true"/><response name="success" type="view" 
value="listLoggedInUsers"/></request-map>
-    
+
     <!-- communication event requests -->
     <request-map uri="setCommunicationEventRoleStatus">
         <security https="true" auth="true"/>
@@ -1157,7 +1157,7 @@ under the License.
         <response name="success" type="request" value="json"/>
         <response name="error" type="request" value="json"/>
     </request-map>
-    
+
     <!-- Billing Account requests -->
     <request-map uri="EditBillingAccount">
         <security https="true" auth="true"/>
@@ -1321,7 +1321,7 @@ under the License.
         <response name="success" type="view" value="PartyGeoLocation"/>
         <response name="error" type="view" value="PartyGeoLocation"/>
     </request-map>
-    
+
     <!-- ProductStoreRole -->
     <request-map uri="ViewProductStoreRoles">
         <security https="true" auth="true"/>
@@ -1407,6 +1407,13 @@ under the License.
         <response name="success" type="view" 
value="ProfileEditUserLoginSecurityGroups"/>
     </request-map>
 
+    <request-map uri="setCustRequestStatus">
+        <security https="true" auth="true"/>
+        <event type="service" invoke="setCustRequestStatus"/>
+        <response name="success" type="view-home" value="FindRequest"/>
+        <response name="error" type="view" value="EditRequest"/>
+    </request-map>
+
     <!-- end of request mappings -->
 
     <!-- View Mappings -->
@@ -1539,7 +1546,7 @@ under the License.
     <view-map name="UpdateCommOrders" type="screen" 
page="component://party/widget/partymgr/CommunicationEventScreens.xml#UpdateCommOrders"/>
     <view-map name="UpdateCommReturns" type="screen" 
page="component://party/widget/partymgr/CommunicationEventScreens.xml#UpdateCommReturns"/>
     <view-map name="UpdateCommProducts" type="screen" 
page="component://party/widget/partymgr/CommunicationEventScreens.xml#UpdateCommProducts"/>
- 
+
     <view-map name="ViewProductStoreRoles" type="screen" 
page="component://party/widget/partymgr/PartyScreens.xml#ViewProductStoreRoles"/>
 
     <!-- Billing Account-->

Reply via email to