По умолчанию в product.template
есть поле one2many
, которое называется seller_ids
.Это соотношение между product_supplierinfo
и product_template
.Таким образом, вы можете сделать что-то вроде этого, чтобы получить все коды поставщиков:
<span><t t-esc="', '.join([x.product_code for x in order_line.product_id.product_tmpl_id.seller_ids])" /></span>
Также вы можете показать все коды продуктов в таблице
<table class="table table-condensed">
<thead>
<tr>
<th>Supplier</th>
<th>Product Code</th>
</tr>
</thead>
<tbody>
<tr t-foreach="order_line.product_id.product_tmpl_id.seller_ids" t-as="s">
<td>
<span t-esc="s.name.name"/>
</td>
<td>
<span t-esc="s.product_code"/>
</td>
</tr>
</tbody>
</table>