[ofbiz-framework] branch release17.12 updated: Fixed: Label issue on List Companies page (OFBIZ-12023)

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

[ofbiz-framework] branch release17.12 updated: Fixed: Label issue on List Companies page (OFBIZ-12023)

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/release17.12 by this push:
     new f6176db  Fixed: Label issue on List Companies page (OFBIZ-12023)
f6176db is described below

commit f6176dba99a28b4e539adc50725cb4a394a7447f
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Mon Nov 30 11:59:47 2020 +0100

    Fixed: Label issue on List Companies page (OFBIZ-12023)
   
    Navigate to URL: 'accounting/control/ListCompanies'
    Under the companies list, the last column has button for import export.
    The System is not showing proper label.
   
    This issue is occurring due to the hyperlink title is not supporting character
    encoding for special characters. Please track progress under OFBIZ-12026.
   
    Thanks: Lalit Dashora for report, sourabh jain for patch, Daniel Watford for test
---
 applications/accounting/widget/GlSetupForms.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/applications/accounting/widget/GlSetupForms.xml b/applications/accounting/widget/GlSetupForms.xml
index 9de2583..d305334 100644
--- a/applications/accounting/widget/GlSetupForms.xml
+++ b/applications/accounting/widget/GlSetupForms.xml
@@ -35,7 +35,7 @@ under the License.
             </hyperlink>
         </field>
         <field name="importexport" title=" " use-when="hasBasicPermission" widget-style="buttontext">
-            <hyperlink description="${uiLabelMap.CommonImportExport}" target="ImportExport">
+            <hyperlink description="${uiLabelMap.CommonImportExport}" target="ImportExport" target-type="plain">
                 <parameter param-name="organizationPartyId" from-field="partyId"/>
             </hyperlink>
         </field>