如何在odoo中对整个树视图进行删除操作?
How to have delete action on whole tree view in odoo?
我有一个有不同页面的笔记本,在这些页面中我有树视图。所以我想实现的是用户可以 select 树视图中的所有或部分记录并立即删除它们。有我的代码。如何做到这一点?
<page string="Analysis Profiles" attrs="{'invisible': [('id', '=', False)]}">
<label for="Analysis_Profile" string="Analysis Profiles"/>
<field name="Analysis_Profile">
<tree string="Analysis Profile" delete='false'>
<field name="Profile"></field>
<field name="Description"></field>
<field name="ProfileKey"></field>
<field name="status" string="Status"></field>
</tree>
</field>
我已经通过使用定制 X2_many_selectable 完成了,非常感谢制作这个模块的人。这个模块可以从下面link.
下载
https://apps.openerp.com/apps/modules/9.0/web_x2many_selectable/
我有一个有不同页面的笔记本,在这些页面中我有树视图。所以我想实现的是用户可以 select 树视图中的所有或部分记录并立即删除它们。有我的代码。如何做到这一点?
<page string="Analysis Profiles" attrs="{'invisible': [('id', '=', False)]}">
<label for="Analysis_Profile" string="Analysis Profiles"/>
<field name="Analysis_Profile">
<tree string="Analysis Profile" delete='false'>
<field name="Profile"></field>
<field name="Description"></field>
<field name="ProfileKey"></field>
<field name="status" string="Status"></field>
</tree>
</field>
我已经通过使用定制 X2_many_selectable 完成了,非常感谢制作这个模块的人。这个模块可以从下面link.
下载https://apps.openerp.com/apps/modules/9.0/web_x2many_selectable/