摘要:
固定form表头header实现方式 修改全局样式:加个position: fixed; 即可 .o_form_view .o_form_statusbar { position: fixed; width:100%; z-index:999; margin-top: -12px } .o_form 阅读全文
摘要:
一、odoo里面用户设置的密码加密方式 加密是用【Passlib生成的PBKDF2 SHA512哈希】 加密后位数是128位 ` def _set_password(self): ctx = self._crypt_context() hash_password = ctx.hash if hasa 阅读全文