我正在使用 Odoo 12。我无法访问 Odoo 的 Python 部分,只能访问 Odoo 开发人员模式。我安装了web_one2many_kanban
模块,但除了图像和行的 id 之外one2many
,我无法显示其余数据。
我的代码:
<t t-name="kanban-box">
<div t-attf-class="oe_kanban_card {{ record.x_bom_line_ids.raw_value }}">
<t t-if="record.x_bom_line_ids.raw_value">
<div class="row">
<div class="col-8">
<strong>
<span>
<t t-esc="record.product_id.value"/>
</span>
</strong>
</div>
<div class="col-4">
<strong>
<span class="float-right text-right">
<t t-esc="record.x_virtual_available.value"/>
</span>
</strong>
</div>
</div>
</t>
</div>
</t>
<t t-foreach="record.x_bom_line_ids.raw_value" t-as="room">
<img t-att-src="kanban_image('mrp.bom.line', 'x_image', room)" t-att-data-member_id="room" />
我的错误:
"Uncaught TypeError: Cannot read property 'value' of undefined"