- oficially support odoo 18 instead of odoo 16 - support postgis/postgresql 18 into docker - change version erplibre 1.6.0 - support private environment and support local git repo manifest - support switch odoo version - support docker for each version - update os installation - upgrade python requirement - separate virtual environment for erplibre and odoo
10 lines
310 B
Python
10 lines
310 B
Python
#!/usr/bin/env python3
|
|
# © 2021-2025 TechnoLibre (http://www.technolibre.ca)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
|
|
|
installed_modules = env["ir.module.module"].search([('state', '=', 'installed')])
|
|
|
|
print("Installed modules:")
|
|
|
|
for module in installed_modules:
|
|
print(module.name)
|