Как конвертировать поля odoo8 в odoo11
Как конвертировать и переносить поля 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."),
}
1 ответ
Не использовать _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.'
)