콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
7030 화면

on openERP 7 usually I use html to make pdf report. when I need variable, on html I just add

<!-- <% variable1 = 2 %> -->
<!-- <% variable2 = variable1 + 12 %> -->
${ variable2 }

so on pdf will show
14

when I use it on odoo 8, why it became error, the Odoo warning is like this:

Encountered unknown tag 'variable1'. Jinja was looking for the following tags: 'endfor' or 'else'. The innermost block that needs to be closed is 'for'.

<class 'jinja2.exceptions.TemplateSyntaxError'>,Encountered unknown tag 'variable1'. Jinja was looking for the following tags: 'endfor' or 'else'. The innermost block that needs to be closed is 'for'.,<traceback object at 0xb0201694>

what must I do to add a variable?

아바타
취소
베스트 답변

This page have all the info you need to work with variables in the way you want

https://www.odoo.com/documentation/8.0/reference/qweb.html

For shorteness

Your Code                                                            Qweb

<!-- <% variable1 = 2 %> -->                                <t t-set="variable1" t-value="2"/>

<!-- <% variable2 = variable1 + 12 %> -->           <t t-set="variable2" t-value="variable1 + 12"/> 

${ variable2 }                                                        <t t-esc="variable2"/>

 

아바타
취소
관련 게시물 답글 화면 활동
1
2월 24
6412
4
12월 23
42922
0
10월 23
1419
0
3월 15
3491
0
3월 15
4570