I want to edit some models trough inheriting. I don't know which methods I need to implement. I saw in other modules that there are methods like copy, on_create, etc. Can anyone help me?
Denna fråga har flaggats
1
Besvara
6106
Vyer
Basically you only need to override methods that you would like to use. If you for example only want to add fields, you can just define them. If you want something done when saving or creating a record, you need to inherit the appropriate method. Every object has a set of methods which are defined here:
https://doc.odoo.com/trunk/server/api_models/ (as soon as it gets back online)
Can you give me an example of overridden create method?
Njuter du av diskussionen? Läs inte bara, delta också!
Skapa ett konto idag för att ta del av exklusiva funktioner och engagera dig i vår fantastiska community!
Registrera dig| Relaterade inlägg | Svar | Vyer | Verksamhet | |
|---|---|---|---|---|
|
|
0
mars 15
|
6101 | ||
|
|
5
juli 18
|
25511 | ||
|
|
0
apr. 15
|
5005 | ||
|
|
3
juli 18
|
5859 | ||
|
|
1
mars 16
|
7807 |
Nemanja, this purely depends on the model you want to use. You want _inherit or _ineherits? Specify your question in a little detailed manner.
I know the difference between _inherit and _inherits, it's written in technical memento. I need help with understanding basics of writing new model or inheriting existing. Under basic I meen which methods I need to implement for my model. For example I have model people, and when my user click Save on adequate view I need to write data to few other tables, of course based on data that my user entered. How can I catch this event, and how can I achieve this?
_inherit seems right for you. Which methods to override depends on your need. create() for creatin new record, write() for updating data of record, unlink() when you remove that record! fields_view_get() when you want to alter the view archirecture dyamically!