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 can I see the stock location of an product?

Subscribe

Get notified when there's activity on this post

This question has been flagged
productstock_location
18 Replies
29878 Views
Avatar
Stefan Reisich

How can I see the stock location of a product? And how can I list all products that are in a stock location eg. shelf 2?

2
Avatar
Discard
Avatar
Andreas Brueckl
Best Answer

In menu "Reporting / Warehouse / Inventor Analysis" you see the stock level of all products. Per default you see the stock level of all internal locations.

If you want to have the stock level of a certain location you have to do an Advanced Search with field Location.

If you want to see a product's stock level in all locations, then simply Group By .. product and location.

Of course, as patrick already mentioned you can click More and Stock by Location in the product's form view to see the stock level of a certain product.

4
Avatar
Discard
Stefan Reisich
Author

ok, but how can i get all stock locations of a product? eg. a product is distributed in various locations. how can i get a list of this locations with quantity?

Remya

I also want to know this!!!

patrick

If you select a product, you should be able to click on the button More, and select 'Stock by Location'. At the moment you cannot filter on amount > 0 (or other number), so if you have got a lot of locations, you have to go through the whole list.

Stefan Reisich
Author

Group By ...product and location just shows the company not the location(shelf).

Yes we have a lot of locations, going through the whole list is not an option... :-(

Andreas Brueckl

You have to remove the "Internal" filter so that you see really all locations were the product is available. you can add another filter for the product if you only want to see certain products

Stefan Reisich
Author

ahh, thank you, i got it.

john

My issue is that this gives us 2000 locations and the filter seems broke. You cant click the column header 'real stock' but you can click to sort the headers 'location type' and 'location name'.. also if you use the 'Advanced Search' and select either 'real stock' or 'real stock value' is greater than 0.00 the results dont change. The view still shows all the locations including those with 0.00 stock !

Denis Baranov

Perhaps, this module https://apps.odoo.com/apps/modules/9.0/product_stock_balance/ would be useful to this purpose

Avatar
Serpent Consulting Services Pvt. Ltd.
Best Answer

In OpenERP, location is a generic concept and it is not bound to any product specifically.

If you wanna see locations with quantity, you should print a report available on locations.

If not a report, you have do a little customization.

Thanks.

3
Avatar
Discard
Stefan Reisich
Author

what kind of customization?

Serpent Consulting Services Pvt. Ltd.

Override the search() to show only the nonzero qty holder locations! I 've made it, will attach here.

Serpent Consulting Services Pvt. Ltd.

def search(self, cr, uid, args, offset=0, limit=None, order=None, context=None, count=False): if context is None: context = {} res_ids = super(stock_location, self).search(cr, uid, args, offset, limit, order, context=context, count=count) loc_obj = self.browse(cr, uid, res_ids, context=context) res_ids = [x.id for x in loc_obj if x.stock_real>0 return res_ids

patrick

Missing a closing ] at the end, but thank you. This is useful for us as well.

Serpent Consulting Services Pvt. Ltd.

Welcome Patrick! might have missed ] in a hurry! My aim was just to give an idea :)

Stefan Reisich
Author

thank you very much. this will help me a lot...

Avatar
Denis Baranov
Best Answer

Have a look at the app: https://apps.odoo.com/apps/modules/9.0/product_stock_balance/ 

1
Avatar
Discard
Avatar
Jahnelle Azupardo
Best Answer

Team

I am new to Odoo... so if i may..

Its eay to find stock by loaction...

What I want to know is where in the location is the stock.... so imagine I have a bunch of shelving that has me finished goods.. so my warehouse has say WH/Finished Goods... but logically and physically I divide that shelving into racks and in the Location WH/Finished Goods  I have Rack 1... and on my Product under the Inventory tab I say this product should be in Finished Goods but specifically on Rack 1.... 

So when new product comes in I want to tell my storeman.. you will find "like" producrs in Rack 1 so put this stuff there too...

So when I ask him to "Pick" the product.. not only can i tell him to go to the Finished Goods "zone"..but to make it fatser go to Rack 1...

Back to the original question how can i see what's in rack 1

 

0
Avatar
Discard
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
link between stock.location and product.product Solved
product stock_location odooV8
Avatar
Avatar
1
Sep 21
5812
Module/Function that shows/returns stock locations in products Solved
stock product stock_location
Avatar
Avatar
Avatar
Avatar
16
Jan 21
17885
How can I create a listview in products form?
product listview stock_location
Avatar
1
Jan 21
9160
How to disable product autocomplete?
product
Avatar
Avatar
Avatar
2
Sep 25
871
Problema con el precio de comparación en variantes de producto Solved
product
Avatar
Avatar
1
Oct 25
892
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