Hello,
I am using Odoo V11 CE.
I would like to get in the Bom Structure pdf report only the first level of raw material and not all the level.
How I have to change this code:
<tr t-foreach="get_children(o.bom_line_ids)" t-as="l">
<td style="padding-left: 20px;">
<span style="color: white;" t-esc="'... '*(l['level'])"/>
<span t-esc="l['pname']"/>
</td>
<td>
<span t-esc="l['pqty']"/>
<span t-esc="l['uname']" groups="product.group_uom"/>
</td>
<td>
<span t-esc="l['code']"/>
</td>
</tr>
Thank you.
Hi Paolo, I have the same question. Did you find the answer yet?