如何在xml Qweb视图中从account.invoice模型访问account.account模型的字段?

时间:2016-03-03 14:15:44

标签: python openerp odoo-9

我正在对account.account模型进行报告,但不访问account.invoice模型的字段: 我的观点xml如下:

<?xml version="1.0"?>
<t t-name="account.reporte_balance">
    <t t-call="report.internal_layout" style="font-size:8px;">
        <t t-foreach="docs" t-as="o">
        <div class="page">
            <div class="oe_structure"/>
                <div class="row"  style="font-size:8px;">
                    <div class="col-xs-12">.....

访问应编写以下内容的其他模型的字段。但没有得到account.account专门模型。

**<tr t-foreach="HERE WRITE THE ACCOUNT.ACCOUNT MODEL REL" t-as="o">**
     <td class="text-center">
          <span t-field="o.code"/>
     </td>......

我感谢任何帮助。非常感谢你的时间。

1 个答案:

答案 0 :(得分:1)

如果发票是发票清单,您可以这样做:

<tr t-foreach="invoices" t-as="inv">**
    <td class="text-center">
        <span t-field="inv.account_id.name"/>
    </td>
</tr>

说,我不明白你的代码中有 o。 ...