跳至内容
菜单
此问题已终结
3 回复
11828 查看

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

形象
丢弃
最佳答案

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

形象
丢弃
编写者

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

最佳答案

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>    

形象
丢弃
最佳答案

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>
形象
丢弃
相关帖文 回复 查看 活动
1
3月 24
1753
1
9月 21
3109
1
4月 16
4427
1
2月 24
1217
0
4月 21
3402