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

commit 99a7c0c265a50b42df64b0b31de692903fa30ee3
Author: Jacques Le Roux <jacques.le.r...@les7arts.com>
AuthorDate: Thu Apr 18 14:58:52 2024 +0200

    Fixed: The child event added is not listed in the Child Work Efforts. 
(OFBIZ-10111)
    While if we add an existing event it is listed in the WorkEffort component
    
    Quick-fix patch of the duplicate banner issue. Since the banner is somehow
    printed twice due to nesting forms, which needs some deeper analysis
    
    Thanks: Priya Sharma
---
 applications/workeffort/widget/WorkEffortForms.xml | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/applications/workeffort/widget/WorkEffortForms.xml 
b/applications/workeffort/widget/WorkEffortForms.xml
index 3dff4f1159..b22e0159ee 100644
--- a/applications/workeffort/widget/WorkEffortForms.xml
+++ b/applications/workeffort/widget/WorkEffortForms.xml
@@ -309,11 +309,13 @@ under the License.
             <sort-field name="sequenceNum"/>
             <sort-field name="fromDate"/>
             <sort-field name="thruDate"/>
-            <banner 
left-text="${uiLabelMap.WorkEffortBannerAddWorkEffortAndAssoc1}"/>
-            <sort-field name="workEffortIdTo"/>
-            <banner 
left-text="${uiLabelMap.WorkEffortBannerAddWorkEffortAndAssoc2}"/>
-            <sort-field name="workEffortName"/>
-            <sort-field name="description"/>
+            <field-group 
title="${uiLabelMap.WorkEffortBannerAddWorkEffortAndAssoc1}">
+                <sort-field name="workEffortIdTo"/>
+            </field-group>
+            <field-group 
title="${uiLabelMap.WorkEffortBannerAddWorkEffortAndAssoc2}">
+                <sort-field name="workEffortName"/>
+                <sort-field name="description"/>
+            </field-group>
         </sort-order>
     </form>
 

Reply via email to