在 Odoo 16 中扩展日历弹出视图

问题描述 投票:0回答:1

我正在尝试扩展 Odoo 16 中的日历视图,特别是“弹出窗口”。我已遵循各种步骤和指南,但我不断遇到以下错误:

odoo.tools.convert.ParseError: while parsing None:3, somewhere inside.

enter image description here

我不知道我做错了什么。有人可以帮助我吗?

非常感谢!

# 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,
}

xml file

家长视图 https://github.com/odoo/odoo/blob/16.0/addons/calendar/static/src/views/attendee_calendar/common/attendee_calendar_common_popover.xml

python odoo odoo-16
1个回答
0
投票

该文件应添加到

web.assets_backend
下的资产条目中,就像在 calendar 模块中那样

© www.soinside.com 2019 - 2024. All rights reserved.