我正在尝试扩展 Odoo 16 中的日历视图,特别是“弹出窗口”。我已遵循各种步骤和指南,但我不断遇到以下错误:
odoo.tools.convert.ParseError: while parsing None:3, somewhere inside.
我不知道我做错了什么。有人可以帮助我吗?
非常感谢!
# Module structure
my_module/
├── __init__.py
├── __manifest__.py
└── views/
└── attendee_calendar_common_popover_extension.xml
# __manifest__.py
{
'name': 'My Module',
'version': '1.0',
'summary': 'Estende la vista del calendario per aggiungere più campi',
'category': 'Calendar',
'depends': ['calendar'],
'data': [
'views/attendee_calendar_common_popover_extension.xml',
],
'installable': True,
'application': False,
}