i have a loop on dict doc
<t t-if="doc[currency_id] != 'SDG'">
<t t-set="total1" t-value="total1+ doc['tuition']"/>
</t>
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
i have a loop on dict doc
<t t-if="doc[currency_id] != 'SDG'">
<t t-set="total1" t-value="total1+ doc['tuition']"/>
</t>
Try this :
<t t-if="doc['currency_id'] !== 'SDG'">
<t t-set="total1" t-value="total1+ doc['tuition']"/>
</t>
This might work.
You can do it as like you are doing in python.
<t t-if="doc['currency_id'] != 'SDG'">
<t t-set="total1" t-value="total1+ doc['tuition']"/>
</t>
it does not work , i get
Error to render compiling AST
KeyError: None
Template: 754
Path: /templates/t/t/div[2]/table/tbody/t[10]/tr/td[3]/t
Node: <t t-if="doc[currency_id] != 'SDG'">
<t t-set="total1" t-value="total1+ doc['tuition']"/>
</t>
Please add currency_id in single quotes.
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อRelated Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
---|---|---|---|---|
|
0
ต.ค. 20
|
3257 | ||
|
4
ต.ค. 19
|
4061 | ||
|
2
ก.พ. 22
|
8444 | ||
|
0
ส.ค. 20
|
3893 | ||
|
1
ต.ค. 22
|
3876 |
<t t-set="total1" t-value="0"/>
<t t-if="doc.currency_id.display_name != 'SDG'">
<t t-set="total1" t-value="total1+ doc['tuition']"/>
</t>
Please stop using user names as tags for your posts.