Odoo在库存定量lot_id列排序错误点击列名称

时间:2016-05-26 15:14:36

标签: python sorting openerp

我有一列似乎没有正确排序。我无法通过单击列名来按序列号排序。它似乎随机排序。谈论其他列,如数量或product_creation_date或产品一切正常我可以通过点击数量或product_creation_date列对desc / asc进行排序。

我无法找到错误的信息......

<record model="ir.ui.view" id="view_stock_quant_splius_tree">
    <field name="name">stock.quant.splius.tree</field>
    <field name="model">stock.quant</field>
    <field eval="1" name="priority"/>
    <field name="arch" type="xml">
        <tree string="Quants" create="0" delete="0">
            <field name="location_id"/>
            <field name="product_id"/>
            <field name="qty"/>
            <field name="product_uom_id" string="Uom"/>
            <field name="lot_id"/>
            <field name="in_date"/>
        </tree>
    </field>
</record>

sorting by clicking on column names

1 个答案:

答案 0 :(得分:0)

如果我知道,你不能对关系字段(o2m,m2o,m2m)进行排序。