如何获得openerp看板视图的“active_id”值

时间:2014-01-26 18:45:14

标签: openerp kanban

我正在创建一个新模块,我想在button的{​​{1}}视图中放置kanban。当任何用户点击Contact screen我需要button所选联系人时。可以获取树和表单视图,但我不知道如何为active_id视图执行此操作。

有人可以帮忙吗?

由于

1 个答案:

答案 0 :(得分:0)

您需要为此目的可变地使用contex字典,

如果你点击了

<button string="Click Me" type="object" name="my_func" context="{'active' : active_id}" />

方式

def my_func(self, cr, uid, ids, context={}):
    # do stuff using the info passed in the context variable...