[MIG][15.0]mail_inline_css:Migration to 15.0

pull/1124/head
Ruchir Shukla 2023-02-28 13:04:38 +05:30 committed by sonhd91
parent dc15dd5eda
commit 1e11add2ff
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
{
"name": "Mail Inline CSS",
"summary": "Convert style tags in inline style in your mails",
"version": "14.0.1.0.0",
"version": "15.0.0.1.0",
"author": "Akretion, camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/social",
"license": "AGPL-3",

View File

@ -2,7 +2,7 @@
<odoo noupdate="0">
<record id="email_template_demo" model="mail.template">
<field name="name">Inline styles demo</field>
<field name="body_type">qweb</field>
<field name="body_type">qweb_view</field>
<field name="body_view_id" ref="demo_email_hello" />
<field name="model_id" ref="base.model_res_users" />
<field name="subject">Demo email inline styles</field>

View File

@ -2,10 +2,10 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from lxml import html
from odoo.tests import SavepointCase
from odoo.tests import TransactionCase
class TestMailInlineStyles(SavepointCase):
class TestMailInlineStyles(TransactionCase):
@classmethod
def setUpClass(cls):
super().setUpClass()