Odoo:Qweb:复选框是否选中

时间:2019-02-20 07:18:06

标签: odoo-11 qweb

<t t-set="is_employee" t-value="1"/>
<div class="radio col-md-3">
    <label>
        <input type="checkbox" checked="is_employee" id="is_employee" t-att-value="is_employee"/>
        Is Employee?
        <t t-esc="is_employee"/>
    </label>
</div>

<t t-esc="is_employee"/>始终打印1is_employee变量值在复选框选中/取消选中状态不变。

有什么想法吗?

0 个答案:

没有答案