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-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new f66f856020 Fixed: Grid linked as form (agreement) (OFBIZ-12616)
f66f856020 is described below
commit f66f856020845087364a3ba4784f1eaa670d74a4
Author: Jacques Le Roux <[email protected]>
AuthorDate: Mon May 16 18:30:04 2022 +0200
Fixed: Grid linked as form (agreement) (OFBIZ-12616)
ListCommissionAgreements is defined as grid but linked as form and
therefore the
screen throws an error.
https://localhost:8443/catalog/control/ViewProductAgreements?productId=WG-9943
Thanks: Ingo Wolfmayr
---
applications/product/widget/catalog/ProductScreens.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/applications/product/widget/catalog/ProductScreens.xml
b/applications/product/widget/catalog/ProductScreens.xml
index 1142911885..3d42c190ca 100644
--- a/applications/product/widget/catalog/ProductScreens.xml
+++ b/applications/product/widget/catalog/ProductScreens.xml
@@ -259,7 +259,7 @@ under the License.
<include-grid name="ListSalesAgreements"
location="component://product/widget/catalog/ProductForms.xml"/>
</screenlet>
<screenlet title="${uiLabelMap.ProductCommissions}">
- <include-form name="ListCommissionAgreements"
location="component://product/widget/catalog/ProductForms.xml"/>
+ <include-grid name="ListCommissionAgreements"
location="component://product/widget/catalog/ProductForms.xml"/>
</screenlet>
<screenlet title="${uiLabelMap.ProductProducts}">
<include-grid name="ListProductAgreements"
location="component://product/widget/catalog/ProductForms.xml"/>