0

odoo-10こんにちは、ページの上部にあるからアクション ボタンを削除したいと思います。でodoo-7odoo-10それは More として知られています。

以下のコードを試してみましたが、うまくいきませんでした。このコードは、すべてのページからアクション ボタンを非表示にします。

def fields_view_get(self, cr, user, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):
    ir_ids = self.pool.get("ir.values").search(cr, user, [('name', '=', 'more_action_id')])
    if context:
        if context.get('pass_any_value_in_context_of action') is True:
            if ir_ids:
                cr.execute("update ir_values set key2 ='client_action_multi' where id in % s", (tuple(ir_ids),))
            if ir_ids:
                cr.execute("update ir_values set key2 = where id in % s", (tuple(ir_ids),))

    return super(product_supplierinfo, self).fields_view_get(cr, user, view_id, view_type, context, toolbar, submenu)
4

1 に答える 1