Odoo14 设置Binary字段默认值
1 # Odoo 中的附件也就是Binary字段都是经过特殊处理的 2 # 首先是上传的时候会进行base64编码后再上传到服务器 3 # 服务器进行压缩存放在odoo文件仓库中 4 # 每个odoo的每个数据库都有单独的文件仓库 5 # 最后当你取到文件的收也需要进行base64解码还原文件 6 # Odoo14 设置Binary字段默认值 7 def _default_design_image(self): 8 # 获取文件路劲,第一个参数是模块名,第二个是模块中相对目录,第三个参数是具体文件名 9 path = get_resource_path('ship', 'static/description', 'icon.png') 10 return base64.b64encode(open(path, 'rb').read()) if path else False 11 12 # 字段声明 13 design_image = fields.Binary('Picture', default=_default_design_image) 14 15 # 手动赋值 16 self.design_image = base64.b64encode(open(filepath, 'rb').read()) 17 18 # 读取文件内容 这里是将文件写入temp文件中去 19 fp = tempfile.NamedTemporaryFile(delete= False,suffix=".xlsx") 20 fp.write(binascii.a2b_base64(self.design_image)) 21 fp.seek(0) 22 23 # 需要import:tempfile base64 binascii 24 # from odoo.modules.module import get_resource_path