作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将 odoo8 字段转换并迁移到 odoo11。
请给我解决方案
python代码odoo8:
_columns = {
'name' : fields.char('Name', 64, required=True),
'code' : fields.char('Code', 9, required=True),
'description' : fields.text('Description'),
'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the record without removing it."),
}
最佳答案
不再使用_columns
,字段类型现在以大写字母开头。
name = fields.Char(
string='Name',
size=64,
required=True,
)
code = fields.Char(
string='Code',
size=9,
required=True
)
description = fields.Text(
string='Description',
)
active = fields.Boolean(
string='Active',
help='If the active field is set to False, it will allow you to hide the '
'record without removing it.'
)
关于python - 如何将 odoo8 字段转换为 odoo11,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50522619/
我是一名优秀的程序员,十分优秀!