2

我正在构建一个 openerp 客户模块,在树视图中,每个条目都有一个按钮,按下时,将触发 act_window 操作并打开一个新的弹出窗口,但同时,主 gtk 客户端消失了(仅保留弹出窗口)。我也将“目标”设置为“新”,但还是一样。有任何想法吗?

客户端:Windows 上的 gtk-6.0.3

服务器:debian 2.6.32 上的 6.0.2

xml 看起来像:

<field name="type">tree</field>
<field name="arch" type="xml">
    <tree string="Field Schema">
        <field name="field_name" />
        <field name="field_type" />
        <button name="edit" type="object" string="View and Edit" icon="gtk-go-forward" />
    </tree>
</field>

并且要触发的编辑功能如下所示:

def edit(self, cr, uid, ids, context=None):
    obj_name = some_fn_dynamic_get_obj_name_from_ids(ids)
    obj = self.pool.get(obj_name)
    if not obj:
        raise osv.except_osv('not supported')
    res_id = obj.create(....)
    ...
    return {
        'type': 'ir.actions.act_window',
        'name': 'View and Edit',
        'view_mode': 'form',
        'view_type': 'form',
        'res_model': obj_name,
        'res_id': res_id,
        'target': 'new',
        'context': context,
    }

更新:调试到客户端的源代码后,我终于发现:我打错了:nodestory,正确的应该是nodestroy

    return {
        'type': 'ir.actions.act_window',
        ...
        'context': context,
        'nodestroy': True,
    }

T_T

4

2 回答 2

0

我看不出有什么明显的错误。该target属性在开发人员手册中进行了讨论。我唯一能建议的就是在源代码中查找使用该target属性的示例,看看它们与您的有何不同。

于 2012-04-19T22:52:14.983 回答
0

要阻止客户端消失,您需要添加:'nodestroy':True,

于 2012-10-18T03:17:23.703 回答