Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
8733 Lượt xem

Hello. I have foud this example on the forum:

<t t-set="i" t-value="1"/>
<tr t-foreach="o.order_line" t-as="l">
                        <td> <span t-esc="i"/> </td>
    <t t-set="i" t-value="i+1"/>
</tr>

Any value to a variable set inside the loop, exsists only as loong as the loop exsists. If you try: <span t-esc="i"/> after the loop, you will see that the value is again 1.  You cannot set the value of variable declaired outside the loop. Where should this bug be reported?

Regards

Ảnh đại diện
Huỷ bỏ

Did you find a way around this? I am suffering the same issue.

Tác giả Câu trả lời hay nhất

Ok foud a workaround.

In my case I wanted to check if one ore more products belongs to a group. If the condiditon was true a div containig table and data is visible, if not its hidden. So I made something like this:

<div t-if=" True in [z.product_id.categ_id.name == 'WiMax' for z in o.order_line]" >...(your content goes here ).</div>

You can make inline labda function to loop over "o.order_line" and chek if "o.order_line.product_id.categ_id.name" (this is the category name) of each line is the category name you are looking for. This will result in list ex. [False, False, False, False, True]. So "True in [...]" evaluates if there is True in the list.  Hope you can use the same logic in your problem.

Ảnh đại diện
Huỷ bỏ

Thanks for that. Have you reported this bug?

Tác giả

No problem. I have not reported the bug. Where do I report this?

Tác giả

Ok. Reported on https://github.com/odoo/odoo/issues?q=is%3Aopen+is%3Aissue. If that is the right place. Regards.

Câu trả lời hay nhất

Thanks for that. But this bug seems to defeat a major purpose of the loop function in Qweb.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hello,

A discussion exits on github, you can check here https://github.com/odoo/odoo/issues/4461#issuecomment-72199618 the explication of Odony to know how to do it easily...

The propagation has been added since commit 4a698da (https://github.com/odoo/odoo/commit/4a698da) but in most case it should not be used to make sum, ... Qweb is for templating... 

 

Have a good day

 

JKE

 

Duplicated:

https://www.odoo.com/forum/help-1/question/how-to-pass-qweb-variable-values-within-html-elements-in-a-loop-71675

https://www.odoo.com/forum/help-1/question/qweb-loop-cannot-set-value-to-vaiables-outside-the-loop-71486

https://www.odoo.com/forum/help-1/question/qweb-get-variable-value-from-loop-74531

https://github.com/odoo/odoo/issues/4461

Ảnh đại diện
Huỷ bỏ

Jérémy you are too fast for me today. Thanks for posting!

You too :) For Q74531 Thanks for your work on this forum !

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 4 25
1221
2
thg 3 25
1372
4
thg 11 24
7091
1
thg 3 24
2011
3
thg 9 23
24820