changeset 970256a66ba0 in trytond:default
details: https://hg.tryton.org/trytond?cmd=changeset&node=970256a66ba0
description:
        Use normalized length of record name

        This is needed in case the client normalize the report name before 
storing to
        the filesystem.

        issue10986
        review381471003
diffstat:

 trytond/report/report.py |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r d8ec7b7a2023 -r 970256a66ba0 trytond/report/report.py
--- a/trytond/report/report.py  Thu Dec 16 22:26:04 2021 +0100
+++ b/trytond/report/report.py  Sat Dec 18 01:37:06 2021 +0100
@@ -9,6 +9,7 @@
 import subprocess
 import tempfile
 import time
+import unicodedata
 import warnings
 import zipfile
 from email.mime.multipart import MIMEMultipart
@@ -174,7 +175,8 @@
                     record_name = template.generate(record=record).render()
                 else:
                     record_name = record.rec_name
-                name_length += len(record_name) + 1
+                name_length += len(
+                    unicodedata.normalize('NFKD', record_name)) + 1
                 if name_length > max_length:
                     break
                 names.append(record_name)

Reply via email to