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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

jleroux@apache.org
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-plugins.git


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

commit 5ab0a6aa2f26bf16e206c36a3c98b026d775fc5d
Author: Jacques Le Roux <[hidden email]>
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 8a54847..49d61af 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">