Find Code and Errors in ODOO the Easy Way

Опубликовано: 13 Февраль 2024
на канале: ODOOITYOURSELF
582
21

If we're going to be effective in ODOO, we need to be able to break down code and error messages. We can't do this, if we can't find where those things come from. Sure, you could go to GitHub or you could reach out to the forum, but there's a much better way to go about this.

In this video, I'll show you my favorite way to find anything in ODOO's code. Yes, this is specifically for ODOO.sh, but you can use it for self-hosted too.

Here is an example of using grep properly:

grep -rnw '.' -e 'button_validate'

Simply replace "button_validate" with whatever you would like to find.

#odoo #erp #erpsoftware #search #python #grep