Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • 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 Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and 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
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

how-to clone and use Modules of the OCA (an others maybe)?

Odoberať

Get notified when there's activity on this post

This question has been flagged
communitymodules
2 Replies
19461 Zobrazenia
Avatar
gunnar

the git repositories of the OCA (https://github.com/OCA/hr for example) are contain always a bunch of modules, so if you clone them with git you get a folder with subfolders.

The 'addons_path' in your config file can not handle such a 2-level structure, so if you clone into the 'addons' folder Odoo will not find these modules. Is there any common practise how to organize that best?

Just adding level-1 folders in /opt/ocb/ocb-server for each batch of modules and then extending the addons path seems a little cluttered, isn't it?

1
Avatar
Zrušiť
Avatar
Luke Branch
Best Answer

Hi Gunnar,

try the following command:

sudo git clone https://github.com/odoo/<<insert OCA repo here>> /opt/odoo/custom/addons/

Then add the custom folder to the odoo-server.conf or openerp-server.conf file (eg. /etc/odoo-server.conf) on the addons_path line. You can continue adding custom module directories in this manner by seperating them with a comma.
addons_path = /opt/odoo/odoo-server/addons,/opt/odoo/custom/addons

 

0
Avatar
Zrušiť
Alex

I think he doesn't want to add too many addons path folders and find a way to clone several repositories in just one addons folder. I am interesting in this information too. Does anyone know if we can do this?

gunnar
Autor

@Luke: it isn't that simple because you will not clone one single Module with the command you suggest but a batch of Modules inside of a higer-level folder. Like this you have ~/custom/addons/folder/Module1, Module2, Module2, ... etc. so you would have to add ~/custom/addons/folder/Module1,~custom/addons/folder/Module2,~/custom/addons/folder/Module3,...etc That gives a lot of entries ..... I wonder it the OCA people have a suggestion how to handle this most efficiently. Maybe they didn;t think that through and leave it to any user to decide how to manage that ...

gunnar
Autor

@Luke: it isn't that simple because you will not clone one single Module with the command you suggest but a batch of Modules inside of a higer-level folder. Like this you have ~/custom/addons/folder/Module1, Module2, Module2, ... etc. so you would have to add ~/custom/addons/folder/Module1,~custom/addons/folder/Module2,~/custom/addons/folder/Module3,...etc That gives a lot of entries ..... I wonder if the OCA people have a suggestion how to handle this most efficiently. Maybe they didn;t think that through and leave it to any user to decide how to manage that ...

Avatar
Clement Zotti
Best Answer

Are you try to make some symbolic link ?

I have module in both place :

/opt/openerp/custom/addons_dev/

/opt/openerp/custom/addons/

 

and in my addons_path=/opt/openerp/server/addons,/opt/openerp/addons(here is where i made all the symbolic link)

and I have done

cd /opt/openerp/addons

and

ln -s /opt/openerp/custom/addons/* .

and

ln -s /opt/openerp/custorm/addons_dev/{module_1, module_2} .

With this I have only one folder with link to desired module, and I add or remove them easily(after uninstall them from odoo).

 

Hope this help.

0
Avatar
Zrušiť
gunnar
Autor

so then the folder /opt/openerp/custorm/addons_dev is where you git clone into right? Do you list the symlinks in your 'official' addons folder in a .gitignore file, so when you update (git merge ...) your installation those will be ignored?

gunnar
Autor

ok, the symlinks work fine. I think that's an elegant way to work make an external modules folder like /opt/ocb/ocb-server/addons-clone and add symlinks as discribed in the "official" addons folder. When making a update modules list from inside you OpenERP/Odoo via the browser of your choice (firefox most likely) OpenERP finds the linked addons as well

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

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Consultation on the use of enterprise modules in community Solved
community modules enterprise
Avatar
Avatar
1
sep 22
3391
use odoo community module in enterprise
community modules enterprise
Avatar
Avatar
1
sep 21
4742
How to create multiple task in a existing project by code? Solved
community modules odoo
Avatar
Avatar
Avatar
3
aug 21
4679
Subscribe to odoo Enterprise, now I have to pay for community version's module Solved
community modules enterprise
Avatar
Avatar
Avatar
2
júl 21
4985
can I add odoo enterprise apps in odoo community Solved
community modules odoo12
Avatar
Avatar
Avatar
2
jan 19
7255
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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