-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
40 lines (40 loc) · 1.37 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "BOOKING",
"summary": """
management of reservation""",
"author": "k.joel, Odoo Community Association (OCA)",
"website": "https://karizma-conseil.com/",
"license": "AGPL-3",
# Categories can be used to filter modules in modules listing
# for the full list
"category": "Uncategorized",
"version": "15.0.1.0.0",
# any module necessary for this one to work correctly
"depends": ["base", "sale", "hr", "hr_recruitment", "web", "contacts"],
"application": True,
# always loaded
"data": [
"security/reservation_groups.xml",
"security/reservation_security.xml",
"security/ir.model.access.csv",
"views/reservation_reservation_views.xml",
"views/reservation_article_views.xml",
"views/sale_order_views.xml",
"data/reservation_reference_sequence.xml",
"data/reservation_many_quotation.xml",
"views/account_move_views.xml",
"views/templates.xml",
"views/res_company_views.xml",
"wizard/whatsapp_send_message_views.xml",
"views/res_partner_views.xml",
"views/res_config_settings.xml",
],
"assets": {
"web.assets_frontend": [
"/booking_management/static/src/css/style.scss",
],
"web.assets_backend": [
"/booking_management/static/src/js/popup_form.js",
],
},
}