如何在odoo-8中使用相关字段(fields.related)?

时间:2015-11-23 10:44:07

标签: python-2.7 openerp openerp-7 odoo-8

我正在尝试从res_partner到帐户发票模块检索注释字段(客户内部注释)。现在我只想打印它,我将它包含在xml代码中。我尝试了三种方式,

1)comment2 = fields.Char(string='Comment',related='res_partner.comment',compute='_compute_com')
@api.multi
def _compute_com(self):
    print self.comment2

2)comment = fields.Many2one('res.partner','Comment',compute='_compute_com')
  @api.multi
  def _compute_com(self):
    print self.comment

3)partner_comment = fields.Char(compute='_compute_com')
 @api.multi
 def _compute_com(self):
    Comment = self.env['res.partner'].browse(partner_id).comment
    print Comment

1 个答案:

答案 0 :(得分:0)

小心,你必须使用相同类型的字段 !!

(我有选择和字符的问题...所以我必须使用选择选择)