odex25_standard/odex25_base/resource_booking/__manifest__.py

44 lines
1.3 KiB
Python

# Copyright 2021 Tecnativa - Jairo Llopis
# Copyright 2022 Tecnativa - Pedro M. Baeza
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Resource booking",
"summary": "Manage appointments and resource booking",
"version": "14.0.1.3.4",
"development_status": "Production/Stable",
"category": "Appointments",
"website": "https://github.com/OCA/calendar",
"author": "Tecnativa, Odoo Community Association (OCA)",
"maintainers": ["pedrobaeza"],
"license": "AGPL-3",
"application": True,
"installable": True,
"external_dependencies": {
"python": [
# Used implicitly
"cssselect",
],
},
"depends": [
"calendar",
"mail",
"portal",
"resource",
"web_calendar_slot_duration",
],
"data": [
"data/mail.xml",
"security/resource_booking_security.xml",
"security/ir.model.access.csv",
"templates/assets.xml",
"templates/portal.xml",
"views/calendar_event_views.xml",
"views/resource_booking_combination_views.xml",
"views/resource_booking_type_views.xml",
"views/resource_booking_views.xml",
"views/menus.xml",
],
"demo": ["demo/res_users_demo.xml"],
}