Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

How to filter numerical values?

Subscribe

Get notified when there's activity on this post

This question has been flagged
filterv7
1 Reply
11735 Views
Avatar
michel Guénard

The question is trivial. However I does not succeed in filtering numerical values! my database is V7, runing in SaaS mode.

see C:\fakepath\FILTRES OPENERP.JPGthe enclosed capture of my resulting screen with filters

What is wrong with my defintion of filter?

5
Avatar
Discard
Martin

You forgot to show your filter definition ;-(

michel Guénard
Author

I thought it was visible from the capture screen image.:) However it is a standard one "Quantity in stock superior or equal to 0" (zero). The result is not filtered at all! as products with zero or negative quantities are shown. I have tries tens of times always without success; I am using "V7 online"

Martin

Just tried it myself. Looks like a bug to me.

michel Guénard
Author

I made additionnal test of various advanced filters on the demo database (online); filters do not work on quantities (on hand or forecasted), nor on public price; they work on alphabetical values; they also work on cost (although numerical)! I wonder who will escalate the issue to the appropriate level to make professionnal testings and solve.

Martin

https://bugs.launchpad.net/openobject-library/+bug/1134329

wjn

When this will be solved? For v6 there was/is something like zero-stock-filter: http://v6apps.openerp.com/addon/7685?filter=%7B%22order_by%22%3A+%22downloads_sum+desc%22%2C+%22author%22%3A+391%7D&page=0

michel Guénard
Author

seems that the reported bug is not taken into consideration!

Martin

@Ad Libiton. Did you indicated that you are affected? Are you "Guenard"? Did "wjn" do so? Often, bugs only get attention in proportion to the number of complaints.

michel Guénard
Author

Yes I am Guenard! alias Ad Libitom

wjn

Yes, we have an Enterprise Contract and the OpenERP partner reported this bug to support@openerp as an issue for us.

Avatar
Anaël Closson (acl)
Best Answer

Integer (and float) fields are actually well searchable.

If some integer fields aren't, it's because they hide functional fields. In those field, the integer value is computed each time the values shows up in form fields.

You can't search through those values as they are not available in a computed form. Using the computing function when searching is not a good idea either as it may be CPU intensive.

fnct_search

A solution can be to assign a search dedicated function to the field. This may be intersting when you can return false positives, use an optimized method or you may search other data than the actual field. That function is setup using the "fnct_search" parameter of field.function(). Unfortunately this is not always the best solution.

store

A second one is to ask the server to store the computed value. But in order to update the value when needed, you also need to know what will update it : which data change should trigger the field computation ?

Here the default is to recompute it when the object changed. Therefore you can use the "store=True" parameter. But as it may not be accurate if your value depends of other objects, you may also use a 3-tuple like this one : (mapping_function,['trigger_field1','trigger_field2'],priority).

  • mapping_function : returns the list of ids that needs to be recomputed

  • ['trigger_field1','trigger_field2'] : fields that triggers computation when changed

  • priority : allows ordering functional fields, useful to computed functional fields based on others

For this one, you need to take into account that it needs a database structure change when added on fields that don't have the store attribute, and that it may sometimes be difficult to predict which changes will trigger an update.

You may find more information about it in fields.py : bazaar.launchpad.net/~openerp/openobject-server/7.0/view/head:/openerp/osv/fields.py#L840

With that in mind, if you still think a field should be searchable (technically and practically), then a bug report is sure welcome.

4
Avatar
Discard
michel Guénard
Author

ok!!!!!!!!I just need to filter openerp.com standard fileds like Quantity on hand.

michel Guénard
Author

alvar.vilu just wrote This is not a bug. You can not sort nor filter by function values! I do not understand this statement; I just want to be able to filter fields appearing on the search box of the online standard V7; until now I obtain no result when filtering on" quantity on hand"

Anaël Closson (acl)

Yes, those fields should not be listed, like in the 6.x OpenERP series... this should be corrected soon.

wjn

If field can be filtered via "Advanced Search" in a standard OpenERP v7 installation and it does not work, like with Quantity on Hand and Future Stock (new name of Forecast), than it is a bug. These fields should not appear in the Advanced Search field list, if they are not filterable.

wjn

@Anael Closson: We started recently with consignment stock in OpenERP. To do so, an additional location under warehouses was created. Now we want to see all products in consignment, thus we have to filter on "on hand / delivered" or "forecasted / future stock". Otherwise we have to check over 700 products, or, like you suggested, create some custom fields/report.

Sam path

Hi all, even I'm facing a same issue. Did you find any solution to filter on quantity on hand?

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
How to use AND / OR operators in advanced filters? Solved
filter v7
Avatar
Avatar
Avatar
Avatar
3
Apr 23
34982
Filter last year and last month Solved
filter v7
Avatar
Avatar
Avatar
3
Aug 17
24444
Why an advanced product search with condition "doesn't contain" doesn't display products with empty searched field?
filter v7
Avatar
0
Mar 15
5369
How to write a Domain in a filter? [SOLVED] Solved
filter domain v7
Avatar
Avatar
1
Apr 24
14826
Filter the project issues assigned to a user
filter v7 issues
Avatar
Avatar
1
Mar 15
5582
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now