Diferencias
Muestra las diferencias entre dos versiones de la página.
| Próxima revisión | Revisión previa | ||
| odoo_tricks [2024/05/04 19:24] – creado ivan | odoo_tricks [2026/01/10 12:13] (actual) – ivan | ||
|---|---|---|---|
| Línea 5: | Línea 5: | ||
| - En el modo developer buscar en grupos full accounting agregar al usuario al grupo | - En el modo developer buscar en grupos full accounting agregar al usuario al grupo | ||
| + | |||
| + | Como ver un reporte en HTML o PDF,usar las siguientes URL's: | ||
| + | |||
| + | * report/ | ||
| + | * report/ | ||
| + | |||
| + | password olvidado: | ||
| + | |||
| + | <code python> | ||
| + | from passlib.hash import pbkdf2_sha512 | ||
| + | print(pbkdf2_sha512.hash(' | ||
| + | </ | ||
| + | |||
| + | <code sql> | ||
| + | UPDATE res_users SET password = ' | ||
| + | </ | ||
| + | |||
| + | |||
| + | ====== Access group check box changed to list view how can i change back it to checkbox ====== | ||
| + | |||
| + | |||
| + | 1. Go to app menu and upgrade base module, or | ||
| + | 2. Create custom group inside settings > groups > create, and then delete it | ||
| + | |||
| + | By doing one of these, you are triggering _update_user_groups_view() method inside base module. this method is responsible to show all available groups so when you create a new one, it will trigger a new view thus the view will go back to normal | ||