我想从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,
}