Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Create and add a new module using windows 7

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
moduleaddons
4 Antwoorden
19002 Weergaven
Avatar
Jose Antonio Perez

I have installed Odoo 10 in Windows 7.

Everything is right but I have to create a new module and I don't know how to start with or how to add a new application to odoo since all tutorials I've seen refer to Linux. 

I downloaded a module from the web to test the procedure. I made a new directory in /server/odoo/addons and copied the contents. I logged in Odoo and clicked over development mode in order to update the new applications but it didn't work.

Please, can you help me with this?


0
Avatar
Annuleer
Avatar
Sehrish
Beste antwoord

Odoo provide a mechanism to set up a new empty module, odoo.py has a sub command scaffold to create an empty module. To create a module we use following command on command line."odoo.py scaffold <module_name> <path where to put it> ". Now here the question raise what is scaffold. Our created module should always be placed in the "addons" folder, and the path of addons folder is (C:\Program Files (x86)\Odoo 8.0-20150811\server\openerp\addons).

Scaffolding:Scaffolding is the automated creation of a skeleton structure to creating a new module in odoo. Scaffolding is available via the odoo.py scaffold sumcommand.

Steps to create new module in odoo:

Open command prompt in windows and write the following command "odoo scaffold test_module openerp/addons" and hit "enter".
Read more about:

http://learnopenerp.blogspot.com/2016/03/how-to-create-and-install-modules-in.html

1
Avatar
Annuleer
Sehrish

Refer these links:

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

2- http://learnopenerp.blogspot.com/2016/03/how-to-create-and-install-modules-in.html

Avatar
Jose Antonio Perez
Auteur Beste antwoord

Thank you very much, Waleed and Ermin, for your help and suggestions.

I wanted to create an empty new module to see how it can be introduced in Odoo.

I opened a command terminal (cmd) in Windows and wrote:
odoo-bin.exe scaffold folder-name route_to_addons-folder

I checked the new folder contents in addons directory and everything was right.

I will follow your recommendation about creating a new directory addons for my modules.

I logged in to Odoo. in developer mode, and updated the applications. I could see the new application. I installed it without any problem.

Now, I have to see how to create a new module with more functionalities.

Best Regards

0
Avatar
Annuleer
Waleed Ali Mohsen

Nice to know you got it.

Avatar
Ermin Trevisan
Beste antwoord

Make sure you have declared your new addons folder properly in the Odoo configuration file. If the folder /server/odoo/addons is the original Odoo addons folder (I don't know Odoo on Windows), then you should not make a subfolder into this folder, instead make a folder like /server/odoo/custom/addons.

0
Avatar
Annuleer
Avatar
Waleed Ali Mohsen
Beste antwoord

Hi,

You have to extract the downloaded zip module and then copy the extracted folder (without changing the name of the folder ) to /server/odoo/addons (Make sure that the __init__.py and __manifest__.py files and other folders inside the extracted module folder directly). Then logged into odoo and activate devloper mode and from apps update the app list and then remove apps filter and search for the your module. 

I don't prefer to use Odoo addons folder and i prefer to create custom folder for custom modules and add the path to the odoo.conf file.

Regards,

Waleed

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
New scaffolded module not installable in Odoo 17 Opgelost
module addons v17
Avatar
Avatar
Avatar
Avatar
4
mrt. 24
4265
Why community modules don't try to install in /opt/openerp/addons
module install addons
Avatar
1
mrt. 15
8935
Odoo isn't seeing an add-on that I downloaded and placed in the addons folder Opgelost
addons
Avatar
Avatar
Avatar
Avatar
Avatar
5
okt. 25
2351
ADD ON FINANCIAL MODULE/FISCALE ACCOUNTING FOR ODOO 18 COMMUNITY
addons
Avatar
Avatar
Avatar
2
aug. 25
1713
Error when importing module Product Bidding In ECommerce in odoo 17
module
Avatar
Avatar
1
jul. 24
2569
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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