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 add location in Serial/Lot tree view?

Subscribe

Get notified when there's activity on this post

This question has been flagged
locationsStudioLots/Serial
2 Replies
3865 Views
Avatar
Rickard Wallster

I have done a lot customisations using studio in Odoo 14. Now Im trying to add a column for Warehouse Location in stock.production.lot, but I can't figure out how to to this.


If I add a related field to: product_stock.quants_location.display_name I get the correct warehouse location if Qty=1. But if product Qty>1, warehouse location is displayed as Virtual Locations/Inventory adjustment.

Any idea how this could be solved?


//Rickard


0
Avatar
Discard
Avatar
Sagar Pise
Best Answer


Odoo uses the same stock.production.lot object for Lot and Serial Number. In case of serial number, it is normal that this serial number is located in one location at a time, but in the case of Lot inventory, it can be divided into different locations, and it is not possible to display multiple locations in a single field, that's why Odoo added a smart button (Location) in the Header section of form view. If the user clicks on the Location Smart button, he will know where the inventory is.

If you want to show all locations on the list/tree you need to create a custom field (many2many) which calculates the field it will check where the serial/lot number is stored and add those locations.


You can refer to the following code snippet


location_ids = fields.Many2many('stock.location', compute='_compute_locations', string="Location")

def _compute_locations(self):
for lot in self:
location_ids = self.env['stock.quant'].search([('lot_id', '=', lot.id), ('quantity', '>', 0), ('location_id.usage', '=', 'internal')]).mapped('location_id').ids
lot.location_ids = [(6, 0, location_ids)]



1
Avatar
Discard
Rickard Wallster
Author

Thanks Sagar.
If creating a many2many field, I get "No Records" for all Serial Number rows in tree view. I guess I need to configure the domain to get this done? Any idea how to configure the many2many field?

Sagar Pise

Hello Rickard Walster

I have updated the answer and provided you code snippet that shows how to add many2many calculated(compute) field that shows location

Brandon Lackey

I'm trying to do this as well. Can this be done with Studio? If so, how?

Avatar
Rickard Wallster
Author Best Answer

Hello Sagar

Thanks you very much for your effort. However, it seems Im not skilled enough for this, and I don't have access to the server. Im only using Studio for customisations, so I don't really know how to configure the field using your code snippet.

I guess I should be able to create the field and configure it using studio and field settings, but I couldn't figure out how to.


PS. For clarification, each Serial Number is only located in one location, but since there are multiple Serial Numbers for a product, it gives different locations for each row in Lot/Serial tree view.

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
Lot number and expired date in invoice using Odoo Studio
Studio Lots/Serial
Avatar
0
Mar 24
1726
How to move products from Virtual Locations/Inventory adjustment to actual locations? Solved
locations
Avatar
Avatar
Avatar
Avatar
3
Jun 25
1966
Creating and using an app created with Studio. Solved
Studio
Avatar
Avatar
1
Oct 24
2484
Add table in Tab with Studio
Studio
Avatar
Avatar
Avatar
2
Oct 24
3828
Odoo Studio hide field based on other Field Solved
Studio
Avatar
Avatar
1
Jul 24
3174
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