This question has been flagged
3 Replies
4545 Views

I have a custom template implementation and created template view like mail. Template now I am facing an issue with take values ​​to the field.

eg:

I have a field called 'test' and I need to take values ​​for this test field,

"$ {object.company_id.name} $ {object.state in ('draft', 'sent') and 'Quotation' or 'Order'} (Ref $ {object.name or 'n / a'})"

'test' is char field and i entered something like this, and now i need original value for this in t.I see something in mail. template and odoo takes values ​​in mail. template. Suppose its character field and value like this then how can i get original value for this code?    

Avatar
Discard

${object.test}

use this code in your mail template, you can get the value.

Author

Not actually the point is I have model called 'text.template' this actually a template view like mail.template.I wrote this for another

purpose ,now filed inside the text.template i saved a value for this field is, "$ {object.company_id.name} $ {object.state in ('draft', 'sent') and 'Quotation' or 'Order'} (Ref $ {object.name or 'n / a'})" . then while selecting this template i need to generate value for this code.This character field and stored like this then how would i get the value?

Best Answer

Hi, mail template use jinja2 template for compile the expression 

>>> MailTemplate = self.env['mail.template']
>>> subject = "Hi ${object.name} Welcome"
>>> MailTemplate.render_template(subject, 'res.partner', [3])
{3: 'Hi Administrator Welcome'}

You can use mail.template `render_template` method to get similar result


Avatar
Discard