我正在尝试从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
答案 0 :(得分:0)
小心,你必须使用相同类型的字段 !!
(我有选择和字符的问题...所以我必须使用选择选择)