如何过滤odoo前端?

时间:2018-11-05 06:29:51

标签: web filter odoo

这是我的代码:

<t t-set="cates" t-value="website.get_shop_category_of_product()"/>
<t t-if="cates">
<select id="categ" required="True" class="form-control">
    <t t-foreach="cates" t-as="c">
        <option t-attf-value="#{c.id}">
            <t t-esc="c.name"/>

        </option>
    </t>
</select>
</t>

如何过滤产品类别? get_shop_category_of_product功能是返回产品的所有网站类别。帮助我需要任何解决方案和想法。

0 个答案:

没有答案