İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
8441 Görünümler

Hi,

After modifying in Odoo 8 the Invoice - Send by Email (Portal) template the variable signup_url is not set and the template no longer renders the if statement dependant on this variable.

So when I preview the template everything renders ok except for this part: <% set signup_url = object.get_signup_url() %> % if signup_url:

I can confirm that this happens wiht Odoo 8 online (SAAS) and On-premise

Could you please advise

Avatar
Vazgeç
En İyi Yanıt

I believe that you changed the mail template using the "Edit Template" functionality. If you did do that, you would observe that the variable name part in the template has been URL encoded to "% 24 % 7 B object.signup_url % 7 D" instead of ${object.signup_url}, that is to say, the variable could not be found and the object.get_signup_url() function was never called.

To fix it, click on the "Edit" button to the top-left corner of the interface just below the title "Templates /Odoo Enterprise Connection". Then, click the "<>" button on the tool bar abovethe edit window to show the html source code of the tempalte, and change the variable back to ${object.signup_url} from "% 24 % 7 B object.signup_url % 7 D" .

Avatar
Vazgeç

I meant the variable had been encoded to

${object.signup_url}
. You should change it back to ${object.signup_url}. The URL encode functionality messed up my answer.

disregard the previous comment. I had difficult time to enter the actual encoded values. but you can see what I meant from my original answer.

İlgili Gönderiler Cevaplar Görünümler Aktivite
1
May 19
5483
3
Mar 17
8285
0
May 16
3315
1
Şub 16
6266
1
Kas 22
7044