Skip to content
Snippets Groups Projects
Commit 85f6da06608e authored by aronabencherif.diatta@xcg.africa's avatar aronabencherif.diatta@xcg.africa
Browse files

Fix the update of the 'email_from' field in the email template

parent 52bf2e94b20e
No related branches found
No related tags found
1 merge request!7Fix the update of the 'email_from' field in the email template
Pipeline #84604 passed
Changelog
=========
16.0.1.0.2
----------
* Fix the update of the 'email_from' field in the email template
16.0.1.0.1
----------
......
......@@ -24,7 +24,7 @@
to summarize the contents of a dashboard.
""",
"license": "AGPL-3",
"version": "16.0.1.0.1",
"version": "16.0.1.0.2",
"category": "Tools",
"author": "XCG Consulting",
"website": "https://orbeet.io/",
......
......@@ -16,7 +16,7 @@
</div>
</field>
<field name="email_from">
{{ object.company_id.name and &lt; object.company_id.email &gt; or object.company_id.name or ''}}
{{ (object.company_id.name and '"%s" &lt;%s&gt;' % (object.company_id.name, object.company_id.email) or object.company_id.name or '') }}
</field>
<field name="partner_to">{{ object.partner_id.id }}</field>
<field name="email_to">{{ object.email_formatted }}</field>
......
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