如何将字段值从一个模块继承到另一个模块?

时间:2015-11-16 10:11:37

标签: openerp openerp-7 odoo-8

我想将accounts_total的值从accounts模块继承到我的自定义模块。 amount_total是帐户模块中的字段,因此如何在我的自定义模块中检索它的值。我已在 openerp 文件中设置了对帐户的依赖。但仍然在eclipse中它表示为未定义的变量:amount_total

custom.py,

class account_invoice(models.Model):

  _inherit = "account.invoice"  

  print amount_total

1 个答案:

答案 0 :(得分:1)

您只需要使用 self.amount_total 。形成一个方法。像:

@api.one
def print_amount(self):
    print self.amount_total