跳至内容
菜单
此问题已终结
1 回复
9480 查看

Hi,

my code snippet looks like this:

<div>
    <p t-if="record.user_id and record.user_id.signature">
    t-raw="record.user_id.signature"</p>
    <p t-else="">just the company name</p>
/div>

So what I'm trying to do inside Odoo V12:
If the user has a signature, this signature should be used ( if condition).
If the user don't have a signature, just the company name should be used (else condition). 

But I'm not able that the record.user_id.signature will be "rendered", it will just be displayed as normal text.

How can I solve this?

Thanks.

形象
丢弃
最佳答案

Hi,

You are getting record.user_id.signature as normal text because you haven't added

< div>
     < p t-if="record.user_id and >" rel="ugc">record.user_id.signature">>
         < t  t-raw="" rel="ugc">record.user_id.signature"/>
      < /p>
      < p t-else="">
          just the company name
      < /p>
< /div>

Regards

形象
丢弃
相关帖文 回复 查看 活动
6
5月 24
110609
4
5月 24
7048
1
7月 23
2276
3
6月 23
3124
4
6月 22
4800