Skip to content
Snippets Groups Projects

migrate to v17

Merged Axel Prel requested to merge topic/17.0/RED-318 into branch/17.0
3 files
+ 59
6
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 38
5
@@ -25,6 +25,7 @@
from odoo.exceptions import ValidationError
from ..redner import REDNER_API_PATH, Redner
from ..utils.mimetype import b64_to_extension
logger = logging.getLogger(__name__)
@@ -35,7 +36,6 @@
COMPUTED_FIELDS = [
"body",
"description",
"template_data",
"slug",
"is_mjml",
"language",
@@ -161,7 +161,12 @@
template_data = fields.Binary(
string="Libreoffice Template",
readonly=False,
compute="_compute_template",
compute="_compute_template_data",
)
template_data_filename = fields.Char(
string="Libreoffice Template Filename",
readonly=True,
)
def import_from_redner(self):
@@ -209,7 +214,8 @@
cached_template = self.to_cache(record.id, template)
for f in COMPUTED_FIELDS + EDITABLE_FIELDS:
if f in cached_template:
setattr(record, f, cached_template[f])
new_val = cached_template[f]
setattr(record, f, new_val)
except Exception as e:
logger.error("Failed to read redner template :%s", e)
return
@@ -221,7 +227,34 @@
for f in COMPUTED_FIELDS:
attr = getattr(record, f)
if not attr:
setattr(record, f, cached_template[f])
new_val = cached_template[f]
setattr(record, f, new_val)
@api.depends("template_data")
def _compute_template_data(self):
for record in self:
if not record.id or not record.redner_id:
continue
if not record.template_data:
try:
template = self.redner.templates.account_template_read(
record.redner_id
)
cached_template = self.to_cache(record.id, template)
if "template_data" in cached_template:
new_val = cached_template["template_data"]
encoded = base64.b64encode(new_val).decode("utf-8")
ext = ".odt" # default extension
try:
ext = b64_to_extension(encoded)
except Exception as e:
logger.error("Failed to read extension from file:%s", e)
return
record.template_data = encoded
record.template_data_filename = "template" + ext
except Exception as e:
logger.error("Failed to read redner template :%s", e)
return
def list_external_templates(self):
try:
@@ -354,7 +387,7 @@
# compute if we should update redner or not
should_update_redner = False
for f in EDITABLE_FIELDS + COMPUTED_FIELDS:
for f in EDITABLE_FIELDS + COMPUTED_FIELDS + ["template_data"]:
# if we made a change in the record, update redner
if f in vals:
attr = getattr(self, f)
Loading