minhng92 / odoo-14-docker-compose

Set up Odoo 14 (released 2020) quickly for development/production using Docker Compose.
90 stars 99 forks source link

All addons #7

Open Singurroz opened 3 years ago

Singurroz commented 3 years ago

Hi, This is not a issue, how can I see or find all the addons? Because I want to modify an existing model.

minhng92 commented 3 years ago

Hi @Singurroz ,

Odoo is inside Docker container, so we cannot see and modify the built-in addons directly.

It doesn't encourage to modify the built-in addons. We should inherit by writing a custom addon instead.

Singurroz commented 3 years ago

thank you very much, I want to OVERWRITE a JS function with a inherit method, so I need to know the name of the function to be able to inherit. that's why I need to visualize the other addons

minhng92 commented 3 years ago

Got it. I clone source code from the original repository of Odoo (selects the branch corresponding to Odoo version). Open the folder with Visual Studio Code, then I'm able to search and lookup the functions.

Singurroz commented 3 years ago

thank you very much