[MIG] base_comment_template : Migration to 16.0

pull/664/head
Achraf Mhadhbi 2022-10-18 11:52:09 +02:00
parent 3bbeec189c
commit 87f62e28e9
7 changed files with 33 additions and 5 deletions

View File

@ -23,7 +23,7 @@ Base Comments Templates
:target: https://runbot.odoo-community.org/runbot/143/15.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
|badge1| |badge2| |badge3| |badge4| |badge5|
Add a new mixin class to define templates of comments to print on documents.
The comment templates can be defined like make templates, so you can use variables from linked models.
@ -162,6 +162,10 @@ Contributors
* Alan Ramos <alan.ramos@jarsa.com>
* `Bloopark systems <https://www.bloopark.de/>`_:
* Achraf Mhadhbi <machraf@bloopark.de>
Maintainers
~~~~~~~~~~~

View File

@ -5,7 +5,7 @@
"name": "Base Comments Templates",
"summary": "Add conditional mako template to any report"
"on models that inherits comment.template.",
"version": "15.0.1.0.0",
"version": "16.0.1.0.0",
"category": "Reporting",
"website": "https://github.com/OCA/reporting-engine",
"author": "Camptocamp, Odoo Community Association (OCA)",

View File

@ -24,3 +24,7 @@
* `Jarsa <https://www.jarsa.com>`_:
* Alan Ramos <alan.ramos@jarsa.com>
* `Bloopark systems <https://www.bloopark.de/>`_:
* Achraf Mhadhbi <machraf@bloopark.de>

View File

@ -1,6 +1,7 @@
# Copyright 2020 NextERP Romania SRL
# Copyright 2021 Tecnativa - Víctor Martínez
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import Command
from odoo.tests import common
from odoo.tools.misc import mute_logger
@ -99,12 +100,24 @@ class TestCommentTemplate(common.TransactionCase):
)
def test_render_comment_text_(self):
ro_RO_lang = (
self.env["res.lang"]
.with_context(active_test=False)
.search([("code", "=", "ro_RO")])
)
with mute_logger("odoo.addons.base.models.ir_translation"):
self.env["base.language.install"].create(
{"lang": "ro_RO", "overwrite": True}
{"overwrite": True, "lang_ids": [(6, 0, [ro_RO_lang.id])]}
).lang_install()
with mute_logger("odoo.tools.translate"):
self.env["base.update.translations"].create({"lang": "ro_RO"}).act_update()
module = self.env.ref("base.module_test_translation_import")
export = self.env["base.language.export"].create(
{"lang": "ro_RO", "format": "po", "modules": [Command.set([module.id])]}
)
export.act_getfile()
po_file = export.data
self.assertIsNotNone(po_file)
partner_title = self.ResPartnerTitle.create(
{"name": "Ambassador", "shortcut": "Amb."}
)

View File

@ -0,0 +1 @@
../../../../base_comment_template

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)