Odoo 10 - Qweb 测试记录是否在记录集中
Odoo 10 - Qweb test if record is in a record set
我有 a=sale.order.line(5,)
和 b=sale.order.line(4,3,5,6,)
如果 a
在 b
中,我如何在 QWeb 中进行测试?
<t t-if="a in b">
<!-- do something -->
</t>
我有 a=sale.order.line(5,)
和 b=sale.order.line(4,3,5,6,)
如果 a
在 b
中,我如何在 QWeb 中进行测试?
<t t-if="a in b">
<!-- do something -->
</t>