如何将发票来源字段添加到qweb报表?

时间:2018-12-13 16:54:50

标签: python xml odoo odoo-10 qweb

我想将“ account.invoice”模型中的源文档“来源”字段添加到qweb报告中,但我不知道语法 我只需要将所有我写过的其他代码添加到该字段的语法 预先感谢。

class make_fields (models.Model):
    _inherit = 'res.partner'

    gt_origin = fields.Many2one('account.invoice')

<t t-foreach="o.gt_origin" t-as="line">
    `enter code here`<span t-field="line.gt_origin.origin"/>
 </t>

1 个答案:

答案 0 :(得分:4)

您不需要进行foreach循环。这应该足够了:

<t t-if="o.gt_origin">
    <span t-field="o.gt_origin.origin" />
</t>