Skip to Content
मेन्यू
This question has been flagged
4 Replies
13029 Views

I'm looking to change the following code, but I'm struggling to understand the "then" aspect of this "if" statement

${('' if object.partner_id and object.partner_id.email and object.partner_id.email==object.email else object.email|safe)}


What I want is:

If partner_id exists and partner_id.email exists

Use partner_id.email field (how do I do this??)

Else

Use object.email


Thanks

Avatar
Discard

Try this,

${('' if object.partner_id and object.partner_id.email and object.partner_id.email==object.partner_id.email else object.email)}

Author

Did not work @Niyas.

Error without exception. Probably due do sending an email without computed recipients.

then just try this also,

${('' if object.partner_id and object.partner_id.email and object.partner_id.email==object.partner_id.email else object.email|safe)}

Author Best Answer

I figured it out. These fields use jinga. It is an inline if statement:

The general syntax is <do something> if <something is true> else <do somethingelse>.

http://jinja.pocoo.org/docs/2.9/templates/#if-expression


My final code

${(object.partner_id.email if object.partner_id and object.partner_id.email else object.email|safe)}

 

Avatar
Discard
Related Posts Replies Views Activity
0
अक्तू॰ 24
1115
0
अग॰ 23
2484
1
दिस॰ 22
2201
0
जुल॰ 21
2559
1
अप्रैल 25
1048