odoo 忘记密码
from passlib.context import CryptContext
CryptContext(['pbkdf2_sha512']).encrypt('admin')
将输出值写入至 表 res_users 中的password_crypt字段
CryptContext(['pbkdf2_sha512']).encrypt('false')
from passlib.context import CryptContext
CryptContext(['pbkdf2_sha512']).encrypt('admin')
将输出值写入至 表 res_users 中的password_crypt字段
CryptContext(['pbkdf2_sha512']).encrypt('false')