Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
3 Vastaukset
11833 Näkymät

Hi there,

Does anybody know a clean way to change the default 1-40 limit in a tree view for only one specific view?
In the default Odoo sale order view the sale order lines are shown as a one2many like this:

<page string="Order Lines" name="order_lines">
  <tree string="Sales Order Lines" editable="bottom" decoration-info="(not display_type and invoice_status == 'to invoice')">
    <field name="sequence" widget="handle"/>
    <!-- Loads of other code -->
  </tree>
</page>

The Odoo JS framework by default only shows the first 40 records in list views but what if we want to show the first 100 lines for example? I don't want to override the framework JavaScript and enable this for all one2many trees but only for the tree view in this specific form.
This should only be done on one inline one2many field in a form view and nowhere else.

Any ideas?

Regards,
Yenthe

Avatar
Hylkää
Paras vastaus

Hi,

Try limit="x". 

<tree string="Sales Order Lines" editable="bottom" decoration-info="invoice_status=='to invoice'"  limit="42">

While Inheriting:

<xpath expr="//field[@name='order_line']/tree" position="attributes">
<attribute name="limit">42</attribute>
</xpath>


Thanks

Avatar
Hylkää
Tekijä

Thanks Niyas! It actually looks like setting it on "attrs" doesn't work in the framework for V13 while your answer does. This won't work for example:

<xpath expr="//field[@name='order_line']/tree" position="attributes">

<attribute name="attrs">{'limit': 100}</attribute>

</xpath>

This is just to add more info for future people :)

Thank you both

Paras vastaus

Hello 

set the limit on the tree tag. see below example

<field name="one2many_field">
         <tree editable="bottom" limit="300">
                  <field name="name"/>
         </tree>
</field>    

Avatar
Hylkää
Paras vastaus

Hi Yenthe:

You can use view inheritance and use the following definition to set the limit attribute of the tree:

<?xml version="1.0"?>
<data inherit_id="sale.view_order_form">
<xpath expr="//field[@name='order_line']/tree" position="attributes">
<attribute name="limit">100</attribute>
</xpath>
</data>
Avatar
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
1
maalisk. 24
1753
1
syysk. 21
3109
1
huhtik. 16
4429
1
helmik. 24
1218
0
huhtik. 21
3403