Odoo Technical

Welcome!

This community is for professionals and enthusiasts of our products and services.
Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

0

In Odoo 18, why are you able to sort by some fields and not others?

Avatar
gowthami

In Odoo 18, why are you able to sort by some fields and not others?
A. You can only sort simple fields, not relational fields.
B. You can only sort fields that are not computed.
C. You can only sort fields stored in the database.

Avatar
Discard
1 Answer
0
Avatar
jayashree
Best Answer

Answer: You can only sort fields stored in the database

Explanation:
In Odoo 18, you can sort by a field only if:

  1. The field is stored in the database (store=True).

  2. The field is a basic type (e.g., Char, Integer, Date, Float—not One2many or Many2many).


Avatar
Discard