I try to add the Add a line
and Add a section
in the notebook section in odoo13. how can I add these features in odoo13 in XML?
Python code:
class productline(models.Model):
_name = 'product.line'
product_id = fields.Many2one('product.product', string='product')
View definition:
<notebook>
<page string="Indent details">
<field name="roni">
<tree editable="bottom">
<field name="product_id"/>
</tree>
</field>
</page>
</notebook>