如何在Openerp中获取产品树

时间:2014-02-11 09:00:37

标签: openerp-7

我想从python代码中获取product.product树。我应该在代码中做什么。 我形成创建,我想返回产品树。 我的编码就是这样。

def create(self, cr, uid, values, context=None):
    print "create function enter......."
    if context is None:
        context = {}
    return {

        'view_type': 'tree',
        'view_mode': 'tree',
        'res_model': 'proudct.product',
        'type': 'ir.actions.act_window',
        'target': 'current',
        'context': context,
}

0 个答案:

没有答案