摘要: 固定form表头header实现方式 修改全局样式:加个position: fixed; 即可 .o_form_view .o_form_statusbar { position: fixed; width:100%; z-index:999; margin-top: -12px } .o_form 阅读全文
posted @ 2022-05-22 23:54 何双新 阅读(465) 评论(1) 推荐(0) 编辑
摘要: 一、odoo里面用户设置的密码加密方式 加密是用【Passlib生成的PBKDF2 SHA512哈希】 加密后位数是128位 ` def _set_password(self): ctx = self._crypt_context() hash_password = ctx.hash if hasa 阅读全文
posted @ 2022-05-22 07:41 何双新 阅读(382) 评论(0) 推荐(0) 编辑