You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2020/12/28 10:56:10 UTC

[ofbiz-plugins] branch trunk updated: Fixed: Issue: Displaying company and product information at product backlog, subcomponent of Scrum Application (OFBIZ-)

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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new 7bdbaa3  Fixed: Issue: Displaying company and product information at product backlog, subcomponent of Scrum Application (OFBIZ-)
7bdbaa3 is described below

commit 7bdbaa338b24464438eb40c8119c06bce88d083d
Author: Jacques Le Roux <ja...@les7arts.com>
AuthorDate: Mon Dec 28 11:53:42 2020 +0100

    Fixed: Issue: Displaying company and product information at product backlog, subcomponent of Scrum Application
    (OFBIZ-)
    
    Steps to regenerate:
        Navigate to Applications
        Scrum
        Click on '+ Add product'
        Enter: Company and Product Owner
        Product Name
        Description
    
    Issue: the information given in 4, 5, 6 steps are not displayed at the
    Product backlog (view product) screen.
    
    Thanks: Dikpal Kanungo for report and Anushi Gupta for the fix
---
 scrum/webapp/scrum/WEB-INF/controller.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scrum/webapp/scrum/WEB-INF/controller.xml b/scrum/webapp/scrum/WEB-INF/controller.xml
index 28c0df4..550bc0a 100644
--- a/scrum/webapp/scrum/WEB-INF/controller.xml
+++ b/scrum/webapp/scrum/WEB-INF/controller.xml
@@ -645,7 +645,9 @@ under the License.
     <request-map uri="createProductAndRole">
         <security https="true" auth="true"/>
         <event type="simple" invoke="createProductAndRole" path="component://scrum/minilang/ScrumEvents.xml"/>
-        <response name="success" type="request-redirect-noparam" value="ViewProduct"/>
+        <response name="success" type="request-redirect" value="ViewProduct">
+            <redirect-parameter name="productId"/>
+        </response>
         <response name="error" type="request-redirect" value="EditProduct"/>
     </request-map>
     <request-map uri="createProductRole">