我使用文件存储模块,需要将文件上传到模块。在我的定义中,我使用
class TestClass(models.TransientModel):
_name = "module_name.test_class"
attachment_id = fields.Many2one(
comodel_name='ir.attachment',
string="newFileVersion",
index=True,
copy=False
)
当我在 xml 中使用
<field name="attachment_id"/>
它显示了已经加载到数据库文件中的输入下拉项,但我需要从本地计算机中选择文件。我做错了什么。(抱歉英语不好)