One of the best features of the Odoo framework is that we can extend Odoo and write our own modules without having to modify any of the Odoo source code. Instead, the changes we make are all contained in their own directory and their own files.
The primary advantage of this is that, when Odoo modifies their source code with patches or bug fixes, we do not have to worry about our changes getting overwritten. Also, while we may still need to modify our code if Odoo makes a dramatic change to their source code, there is a reasonable chance that the changes required will be minimal.
WARNING: Like in other areas of Odoo development, you should make frequent backups of your databases. Some of the examples we will show make changes to the database that can be difficult to undo.
Each module in Odoo has some basic requirements for it to be properly recognized...