-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
__manifest__.py
27 lines (26 loc) · 955 Bytes
/
__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
# Copyright 2020 - 2024, Escodoo
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Fleet Vehicle Inspection",
"summary": """
This module extends the Fleet module allowing the registration
of vehicle entry and exit inspections.""",
"version": "16.0.1.1.0",
"license": "AGPL-3",
"category": "Fleet",
"author": "Escodoo,Odoo Community Association (OCA)",
"maintainers": ["marcelsavegnago"],
"images": ["static/description/banner.png"],
"website": "https://github.com/OCA/fleet",
"depends": ["fleet"],
"data": [
"security/ir.model.access.csv",
"security/security.xml",
"views/fleet_vehicle.xml",
"views/fleet_vehicle_inspection_line.xml",
"views/fleet_vehicle_inspection_item.xml",
"views/fleet_vehicle_inspection.xml",
"data/fleet_vehicle_inspection.xml",
],
"demo": ["demo/fleet_vehicle_inspection.xml"],
}