Major Version | SaaS Version | Official Release Date | Planned End of life | Bug fix | New On Premise | New Odoo Online | New Odoo.sh |
---|---|---|---|---|---|---|---|
16.0 | October 12th 2022 | Q4 2025 | ✅ | ✅ | 🔴 | ✅ | |
saas-16.1 | February 2023 | June 2023 | 🔴 | 🔴 | 🔴 | 🔴 | |
saas-16.2 | March 2023 | Q4 2023 | 🔴 | 🔴 | 🔴 | 🔴 | |
saas-16.3 | June 2023 | Q4 2023 | 🔴 | :red_circ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
quants = env['stock.quant'].search([]) | |
move_line_ids = [] | |
warning = '' | |
for quant in quants: | |
move_lines = env["stock.move.line"].search([ | |
('product_id', '=', quant.product_id.id), | |
('location_id', '=', quant.location_id.id), | |
('lot_id', '=', quant.lot_id.id), | |
('package_id', '=', quant.package_id.id), |