Skip to Content
Odoo Menu
  • Prijavi
  • 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
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

Odoo isn't seeing an add-on that I downloaded and placed in the addons folder

Naroči se

Get notified when there's activity on this post

This question has been flagged
addons
5 Odgovori
2196 Prikazi
Avatar
TITI

I just downloaded the free "odoo 18 Accounting Community" module. 

I unzipped it and placed it in the add-ons directory in the odoo folder: C:\program files\odoo\server\odoo\addons\ I logged in to the system, but I didn't find the add-on among the applications to install.

I activated developer mode,Did I miss something?


Could you help me?


0
Avatar
Opusti
Avatar
Vashmitha V
Best Answer

Hello there,


If you create any subfolder as accounting,

    - then add it in  

addons_path = C:/program files/odoo/server/odoo/addon/accounting

    - then,  Update Apps List in the Apps Module after activating Developer mode


Apps→Update Apps List

then


Click to update the list.



Else

     - click Update Apps List in Apps Module after activation Developer mode


I hope this may help you.




1
Avatar
Opusti
Avatar
Sebavikingo
Best Answer

i have the same problem. 
i use docker compose to build odoo.

services:

# ODOO

  odoo:

    container_name: odoo

    image: odoo:latest

    depends_on:

      - db

    ports:

      - "xxxx:xxxx"

    volumes:

      - odoo-web-data:/var/lib/odoo

      - ./config:/etc/odoo

      - ./addons:/mnt/extra-addons

      - ./custom_addons:/mnt/custom-addons

    environment:

      - PASSWORD_FILE=/run/secrets/postgresql_password

    secrets:

      - postgresql_password

  db:

    container_name: odoo_db

    image: postgres:15

    environment:

      - POSTGRES_DB=postgres

      - POSTGRES_PASSWORD_FILE=/run/secrets/postgresql_password

      - POSTGRES_USER=odoo

      - PGDATA=/var/lib/postgresql/data/pgdata

    volumes:

      - odoo-db-data:/var/lib/postgresql/data/pgdata

    secrets:

      - postgresql_password


# Segreti

secrets:

  postgresql_password:

    file: odoo_pg_pass

volumes:

  odoo-web-data:

  odoo-db-data:

the file odoo.conf:

[options]

addons_path = /mnt/extra-addons,/mnt/custom-addons

data_dir = /var/lib/odoo

; admin_passwd = admin

; csv_internal_sep = ,

; db_maxconn = 64

; db_name = False

; db_template = template1

; dbfilter = .*

; debug_mode = False

; email_from = False

; limit_memory_hard = 2684354560

; limit_memory_soft = 2147483648

; limit_request = 8192

; limit_time_cpu = 60

; limit_time_real = 120

; list_db = True

; log_db = False

; log_handler = [':INFO']

; log_level = info

; logfile = None

; longpolling_port = 8072

; max_cron_threads = 2

; osv_memory_age_limit = 1.0

; osv_memory_count_limit = False

; smtp_password = False

; smtp_port = 25

; smtp_server = localhost

; smtp_ssl = False

; smtp_user = False

; workers = 0

; xmlrpc = True

; xmlrpc_interface =

; xmlrpc_port = 8069

; xmlrpcs = True

; xmlrpcs_interface =

; xmlrpcs_port = 8071

|-- addons

|-- config

|   `-- odoo.conf

|-- custom_addons

|     |-- accounting_pdf_reports

|     |-- om_account_accountant

|     |-- om_account_asset

|     |-- om_account_budget

|     |-- om_account_daily_reports

|     |-- om_account_followup

|     |-- om_fiscal_year

|     `-- om_recurring_payments

|-- docker-compose.yml

`-- odoo_pg_pass
every time i make a change i restart odoo and odoo_db containers and click the button to update the app list.




0
Avatar
Opusti
Sebavikingo

i'm dumb ! i notice that was a problem when the file.zip was extracted so the file on the server was only the directory without the file in it.

Avatar
TITI
Avtor Best Answer
Hello everyone,
Thanks for your replies:
I created a new folder "ODOO-ADDSON" in the odoo:\Server\, and I added all the add-ons found in the downloaded of "Odoo 18 Accounting Community" module. I modified the odoo config file and added the path to the add-ons like this:"addons_path = c:\program files\odoo 18.0.20250722\server\odoo\addons,c:\program files\odoo 18.0.20250722\server\ODOO-ADDSON"
Then I restarted the odoo service on Windows and logged back into the system. I already have developer mode enabled. I updated the application list, but I can't find anything. I even checked that the adds-on directory name matches the name that exists in the "manifest" file of every addson:{
    'name': 'om_account_asset',
    'version': '1.0.0',
    'author': 'Odoo Mates, Odoo SA',
    'depends': ['account'],
    'installable':True,
    'application':True,

I verified the security acces of all directories and its full controle

But i find nothing.

0
Avatar
Opusti
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

When you download a free module like "Odoo 18 Accounting Community" and want to install it, placing it directly in the default Odoo add-ons folder (like C:\Program Files\Odoo\server\odoo\addons) is not recommended, as this directory is managed by Odoo and may be overwritten during updates. Instead, it's better to create a separate custom add-ons folder—for example, C:\odoo_custom_addons\—and move your unzipped module folder into it. After that, go to your Odoo configuration file (usually odoo.conf) and add this new path to the addons_path entry, separating multiple paths with commas. Then restart the Odoo server. Make sure the folder name of the module matches the module's name in its __manifest__.py file. Once done, enable developer mode, go to Apps, and click "Update Apps List" (you may need to enable the option in the debug menu). After updating, search for the module name, and it should appear for installation.


For more details, please refer to the following links:


1. https://www.youtube.com/watch?v=o7L6kSBa_t4

2. https://www.cybrosys.com/odoo/odoo-books/odoo-16-development/setup-development-environment/adding-installing-new-addons/


Hope it helps.

0
Avatar
Opusti
Avatar
Andreas Bichinger
Best Answer

Hi,

have you tried to restart your server?

When you activate developer mode you can also refresh the list by clicking "Update Apps List" at the top.

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

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
ADD ON FINANCIAL MODULE/FISCALE ACCOUNTING FOR ODOO 18 COMMUNITY
addons
Avatar
Avatar
Avatar
2
avg. 25
1573
Uploaded Addons don't appear when Updating Addons List
addons
Avatar
Avatar
1
dec. 23
4316
Odoo 16 package requires python-requests in one version, but the TicketBAI addon requires python-requests in another version
addons
Avatar
0
sep. 23
4217
Access
addons
Avatar
Avatar
1
okt. 24
4516
Odoo 12: Modules not visible in apps Solved
addons
Avatar
Avatar
Avatar
Avatar
5
nov. 19
6151
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