This is an automated email from the ASF dual-hosted git repository.
nmalin pushed a commit to branch release18.12
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/release18.12 by this push:
new 58c221e Fixed: Usage of 'include-form' instead of 'include-grid' in PartyScreens.xml for grid elements (OFBIZ-11286)
58c221e is described below
commit 58c221e47d72484145d827864cf144a27db39d03
Author: Nicolas Malin <
[hidden email]>
AuthorDate: Fri Nov 22 15:26:10 2019 +0100
Fixed: Usage of 'include-form' instead of 'include-grid' in PartyScreens.xml for grid elements
(OFBIZ-11286)
In PartyScreens.xml there were 'ListInvoicesApplPayments', 'ListUnAppliedInvoices' and 'ListUnAppliedPayments' include as form instead of grid but in PartyForms.xml they are defined as grids.
Thanks to Ulrich Heidfeld to raise and solve this issue
---
applications/party/widget/partymgr/PartyScreens.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/applications/party/widget/partymgr/PartyScreens.xml b/applications/party/widget/partymgr/PartyScreens.xml
index fac96e2..446f37f 100644
--- a/applications/party/widget/partymgr/PartyScreens.xml
+++ b/applications/party/widget/partymgr/PartyScreens.xml
@@ -1053,7 +1053,7 @@ under the License.
</actions>
<widgets>
<label style="h2" text="${uiLabelMap.PartyCurrency}"></label>
- <include-form name="ListInvoicesApplPayments" location="component://party/widget/partymgr/PartyForms.xml"/>
+ <include-grid name="ListInvoicesApplPayments" location="component://party/widget/partymgr/PartyForms.xml"/>
</widgets>
</section>
</screenlet>
@@ -1082,7 +1082,7 @@ under the License.
</actions>
<widgets>
<label style="h2" text="${uiLabelMap.PartyCurrency}"></label>
- <include-form name="ListUnAppliedInvoices" location="component://party/widget/partymgr/PartyForms.xml"/>
+ <include-grid name="ListUnAppliedInvoices" location="component://party/widget/partymgr/PartyForms.xml"/>
</widgets>
</section>
</screenlet>
@@ -1109,7 +1109,7 @@ under the License.
</actions>
<widgets>
<label style="h2" text="${uiLabelMap.PartyCurrency}"></label>
- <include-form name="ListUnAppliedPayments" location="component://party/widget/partymgr/PartyForms.xml"/>
+ <include-grid name="ListUnAppliedPayments" location="component://party/widget/partymgr/PartyForms.xml"/>
</widgets>
</section>
</screenlet>