changeset 695f23391e69 in modules/marketing_automation:default
details:
https://hg.tryton.org/modules/marketing_automation?cmd=changeset&node=695f23391e69
description:
Add option to remove leading and trailing white spaces from char
issue7914
review340511008
diffstat:
marketing_automation.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r d19e78e7ea9f -r 695f23391e69 marketing_automation.py
--- a/marketing_automation.py Tue Jun 21 10:30:11 2022 +0200
+++ b/marketing_automation.py Mon Sep 19 21:25:55 2022 +0200
@@ -640,7 +640,7 @@
states={
'readonly': ~Eval('blocked', False),
})
- uuid = fields.Char("UUID", readonly=True)
+ uuid = fields.Char("UUID", readonly=True, strip=False)
@classmethod
def __setup__(cls):