0

您如何迭代 qweb 报告中的字段?因为我有两个类,所以我希望 customer_id 基于创建的树视图进行迭代。

楷模:

Class A:
    _name = 'module.a'

    module_id = fields.Many2one(string='sale', comodel_name='sale.order')
    customer_id = fields.Many2one('res.partner', string="Customer Name")

Class B:
    _inherit = 'sale.order'
    module_ids = fields.One2many(string="Module B",
                    comodel_name='module.a', inverse_name='module_id')

xml模板:

   <template id="module_template" inherit_id="sale.sale_order_portal_content">
     <xpath expr="//div[2]/section[1]" position="before">
        <section class="mt-5">
            <h3 class="">Customer</h3>
            <div t-foreach="module_ids" t-as="line">
                <span t-esc="line.customer_id"/>
            </div>
        </section>
     </xpath>
  </template>

我尝试这样做,但它不会在 qweb 报告中迭代 customer_id。仅显示的是 h3 - “客户”。

注意:我需要它是 One2Many 和 ManytoOne 来创建添加客户的树视图。

4

1 回答 1

1

威廉·德雷珀

尝试访问这个,

<div t-foreach="sale_order.module_ids" t-as="line">

    <span t-esc="line.customer_id"/>

</div>

object您可以使用[' sale_order']访问报告级别中的字段。

谢谢

于 2020-04-09T09:48:29.447 回答