Diferencias

Muestra las diferencias entre dos versiones de la página.

Enlace a la vista de comparación

Ambos lados, revisión anterior Revisión previa
Próxima revisión
Revisión previa
odoo_tricks [2025/02/14 16:40] ivanodoo_tricks [2026/01/10 12:13] (actual) ivan
Línea 10: Línea 10:
   * report/pdf/sale.report_saleorder/2893   * report/pdf/sale.report_saleorder/2893
   * report/html/sale.report_saleorder/2893   * report/html/sale.report_saleorder/2893
 +
 +password olvidado:
 +
 +<code python>
 +from passlib.hash import pbkdf2_sha512
 +print(pbkdf2_sha512.hash('YourNewStrongPassword'))
 +</code>
 +
 +<code sql>
 +UPDATE res_users SET password = '$pbkdf2-sha512$25000$BWBMaW0NYey91xojpBQCwA$s5KuPHH.HGjNoueDL47K57F4E06QnZnovv73hRy2mkU13LA16cK9pvR2FUM3q3.cgPjcbyu4Oe/dLAGvCusahQ' where login = 'admin'
 +</code>
 +
 +
 +====== 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
  • odoo_tricks.1739572805.txt.gz
  • Última modificación: 2025/02/14 16:40
  • por ivan