我想将accounts_total的值从accounts模块继承到我的自定义模块。 amount_total是帐户模块中的字段,因此如何在我的自定义模块中检索它的值。我已在 openerp 文件中设置了对帐户的依赖。但仍然在eclipse中它表示为未定义的变量:amount_total
custom.py,
class account_invoice(models.Model):
_inherit = "account.invoice"
print amount_total
答案 0 :(得分:1)
您只需要使用 self.amount_total 。形成一个方法。像:
@api.one
def print_amount(self):
print self.amount_total