Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Creating a new model example?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
models
6 Respostes
30707 Vistes
Avatar
Dale E. Moore

Where can I find examples of creating new models (tables) online? Or perhaps I should look in the source code. Do you have any suggestions as to where I should start looking?

I'm especially interested in following the proper method of relating the project model one2many new items.

1
Avatar
Descartar
Sehrish

Hope this will helps: https://learnopenerp.blogspot.com/2020/09/how-to-create-model-in-odoo13.html

Avatar
Max
Best Answer

Hi,

Creating Models in OpenERP is a fairly straightforward process, and can be done in two ways, depending on the context.

1) Create a dedicated module for OpenERP that installs your model when the module is installed.
2) Create a new model directly in your OpenERP database using the user interface.

Option 1 is good if you plan on distributing your model to other people. It is also safer because if, for whatever reason, you need to create a new database or want to deploy a second version of OpenERP, all you have to do is re-deploy the module - all your hard work is backed up. Open 1 does, however, require some technical programming knowledge. You also get full access to the OpenERP API and the python programming language.

Option 2 is good if you are the only person who will use the model, and if it is a small, simple project. They are stored directly in the database. It is easier to do, and requires no programming knowledge, however you will be limited to very simple data in / data out functionality. Good for, for example, storing a bunch of text notes with dates etc.

For option 1, there are lots of articles on the web. I would start out by reading the OpenERP module development article. This article describes the anatomy of an OpenERP module, followed by more in-depth usage instructions for each aspect.

For option 2, you can start out by going directly to the Settings > Technical > Database Structure > Models section of OpenERP (version 7) while logged in as the administrator. From there, you can create models like any other record in OpenERP! Don't forget that your model will need a Menu Item so you can manage the records (Notice the handy "Create a Menu" button on the model form view). You might also want to make custom Views to display your records.

Specifically for one2many Documentation for one2many fields can be found here. This will be especially useful if using option 1 (creating a module) but will also help you understand how relational fields are used within OpenERP.

Good luck!

4
Avatar
Descartar
Martin

Module development did probably not change much between 6.1 and 7.0, right? Anyway, it would be nice to have the example updated to the latest release, including usage of the new web interface. Is there any complete example for 7.0 available? Thanks in advance!

Max

You are right - module development has not really changed between 6.1 and 7.0. Nevertheless, I have found this link: http://doc.openerp.com/trunk/developers/server/03_module_dev/ which seems to be a more up to date version of the OpenERP module development article linked above - I have updated my answer.

Dhana Babu

I have created the model through code see this http://codeimplementer.blogspot.in/2013/10/how-to-create-new-model-in-existing.html

Marc Wagener

Is it possible to create a model for existing tables? (sale_order_tax doesn't have)

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
How can I use two models in an API (foreign key - relations)?
models
Avatar
0
de des. 24
2180
Import Data From Another Model Solved
models
Avatar
Avatar
1
de març 24
3286
how can i return a form view from a model method and i just want to show only a specific field instead of all the fields of this model ? Solved
models
Avatar
Avatar
1
de juny 23
13458
Error al tratar de borrar un campo en un modelo.
models
Avatar
0
de gen. 23
3771
_sql_constraints problem
models
Avatar
Avatar
2
de set. 20
5163
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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