Author: jleroux
Date: Sat Dec 30 13:51:20 2017
New Revision: 1819598
URL:
http://svn.apache.org/viewvc?rev=1819598&view=revLog:
Fixed: Encoding issue while exporting CSV
(OFBIZ-10109)
While migrating widget.properties values in ThemeData.xml, "xml" encoder is
added for template "screencsv" which was not persent in the properties file.
By this, special character are not supported in CSV file.
Steps to generate: accounting/control/TrialBalance?organizationPartyId=Company
Click on Inventory Valuation report.
Export report as CSV.
Thanks: Aman Agrawal
Modified:
ofbiz/ofbiz-framework/trunk/themes/common/widget/Theme.xml
Modified: ofbiz/ofbiz-framework/trunk/themes/common/widget/Theme.xml
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/themes/common/widget/Theme.xml?rev=1819598&r1=1819597&r2=1819598&view=diff==============================================================================
--- ofbiz/ofbiz-framework/trunk/themes/common/widget/Theme.xml (original)
+++ ofbiz/ofbiz-framework/trunk/themes/common/widget/Theme.xml Sat Dec 30 13:51:20 2017
@@ -113,7 +113,7 @@ under the License.
<template-file widget="form" location="component://common-theme/template/macro/TextFormMacroLibrary.ftl"/>
<template-file widget="tree" location="component://common-theme/template/macro/TextTreeMacroLibrary.ftl"/>
</template>
- <template name="screencsv" type="csv" content-type="UTF-8" encoding="none" encoder="xml">
+ <template name="screencsv" type="csv" content-type="UTF-8" encoding="none">
<template-file widget="screen" location="component://common-theme/template/macro/CsvScreenMacroLibrary.ftl"/>
<template-file widget="form" location="component://common-theme/template/macro/CsvFormMacroLibrary.ftl"/>
<template-file widget="tree" location="component://common-theme/template/macro/CsvTreeMacroLibrary.ftl"/>