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

Odoo Apps development code

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
apps.store
2 Antwoorden
2485 Weergaven
Avatar
Eric Alain

Once I purchase an apps on the Apps store of Odoo. Can I have access to the code? Can I modify the code? Or I need to pay the developer to adapt the code to my business process?

0
Avatar
Annuleer
Avatar
Waleed Ali Mohsen
Beste antwoord

Hi,

Once you purchased an app, you will get a download link to download the app files (which contains all code) and deploy it into your system. 

Sure you will be able to access the code and you can modify it  if you know how to do it or you can pay to a developer to adapt it to your business process.

Note: If you modified the code of the original app without extending it, you will not be able to get any bug fixes updates for this app (if any) in the future ).

1
Avatar
Annuleer
Eric Alain
Auteur

Good Morning Waleed,
What do you mean by “modified the code of the original app without extending it”?
An other question for you: if I purchase the code for version 17 will I get the update for version 18 next year or I need to pay again?
Thanks
Eric

Waleed Ali Mohsen

Extending it means create a new custom app inheriting the code of the original app.

You will not get the update version for Odoo 18 and you need to purchase it again.
You need to test the app in the Odoo 18 Test DB first and see if you are able to install it and its working without any issue then you don't need to purchase it. otherwise you need to purchase it or ask a developer to upgrade it for you to the new version.

Avatar
James Wood
Beste antwoord

To develop an Odoo app (module), you create a folder with a __manifest__.py file describing the module, Python files for business logic (in models/), XML files for views and menus (in views/), and access control CSV files (in security/).

Example:

__manifest__.py


{

  'name': 'My Module',

  'version': '1.0',

  'depends': ['base'],

  'data': ['security/ir.model.access.csv', 'views/my_model_views.xml'],

  'installable': True,

}


models/models.py

from odoo import models, fields


class MyModel(models.Model):

    _name = 'my.model'

    name = fields.Char(string='Name')


views/my_model_views.xml

<odoo>

  <record id="view_my_model_form" model="ir.ui.view">

    <field name="model">my.model</field>

    <field name="arch" type="xml">

      <form>

        <field name="name"/>

      </form>

    </field>

  </record>

</odoo>


This is the basic structure to get started with Odoo app development.




-1
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
Untick the odoo.sh from custom module from odoo app store Opgelost
apps.store
Avatar
Avatar
1
jul. 24
2420
How to add versions of same module in app store? Opgelost
apps.store
Avatar
Avatar
1
jan. 23
3529
Unable to Upload Apps to Store
apps.store
Avatar
0
mrt. 20
289
warning: Could not find remote branch 12.0 to clone?
apps.store
Avatar
Avatar
1
jan. 19
7316
odoo apps store add bank account and payment methods
methods apps.store
Avatar
0
mrt. 24
2006
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