Skip to content
Snippets Groups Projects
Commit f32eb28c authored by fja-odoo's avatar fja-odoo Committed by qsm-odoo
Browse files

[FIX] web_editor: save all child text nodes of oe_structure elements


When saving the content of an oe_structure, the starting text nodes
were lost because only the internal *elements* were considered. Ending
text nodes were kept since they are considered as the last element's
tail by the etree library.

task-2040764

closes odoo/odoo#43373

X-original-commit: eb71d25c
Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
parent c6aa61b2
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,7 @@ class IrUiView(models.Model):
xpath = etree.Element('xpath', expr="//*[hasclass('oe_structure')][@id='{}']".format(el.get('id')), position="replace")
arch.append(xpath)
structure = etree.Element(el.tag, attrib=el.attrib)
structure.text = el.text
xpath.append(structure)
for child in el.iterchildren(tag=etree.Element):
structure.append(copy.deepcopy(child))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment