从另一个类调用函数 - 字段 - Odoo v8

时间:2016-05-15 19:13:45

标签: python openerp odoo-8

我正在努力解决这个问题,我不太清楚。

假设我在课堂上有一个功能:

class my_class(osv.Model):
    _name = 'my_class'
    _description = 'my description'

    def func (self, cr, uid, ids, name, arg, context=None):
            res = dict((id, 0) for id in ids)
    sur_res_obj = self.pool.get('contratos.user_input')
    for id in ids:
        res[id] = sur_res_obj.search(cr, uid,  # SUPERUSER_ID,
            [('contratos_id', '=', id), ('state', '=', 'done')],
            context=context, count=True)
    return res
    columns = {
        'function': fields.function(_get_func,
        string="Number of completed Contratos", type="integer"),
my_class()

现在我想从另一个类对象中调用这个函数:

class another_class(osv.Model):
    _inherit = 'my_class'
    _name = 'my_class'

    columns = {
        'another_field' : fields.related('function', 'state', type='char', string = "Related field which calls a function from another object"), 
    }

但这不起作用,我对此非常困惑,如何从Odoov8中的另一个对象调用函数?

我听说过self.pool.get,但我不确定如何调用它。

有什么想法吗?

提前致谢!

2 个答案:

答案 0 :(得分:4)

由于您使用的是odoo8,因此您应该使用新的API。来自文档

  

在新API中引入了环境概念。它的主要   目标是提供游标周围的封装,user_id,   模型和上下文,Recordset和缓存

def my_func(self):
    other_object = self.env['another_class']
    other_object.create(vals) # just using create as an example

这意味着您不再需要明确地在您的方法中传递cruididsvalscontext并且您不要使用self.pool.get(),即使它仍然存在向后兼容性

env是类似字典的对象,用于存储Odoo模型的实例和其他信息,因此您可以从任何Odoo模型访问其他对象及其方法。

答案 1 :(得分:1)

def example(self, cr, uid, ids, context=None):
    otherClass = self.pool.get('my_class')
    ...
    otherClass.func(cr, uid, otherClassIds, name, arg, context)

More information.