-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
28 lines (27 loc) · 1.03 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
# Copyright 2020 - TODAY, 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": "13.0.1.0.0",
"license": "AGPL-3",
"category": "Human Resources",
"author": "Escodoo,Odoo Community Association (OCA)",
"maintainers": ["marcelsavegnago"],
"images": ["static/description/banner.png"],
"website": "https://github.com/OCA/fleet",
"depends": ["fleet"],
"data": [
"views/fleet_vehicle.xml",
"security/fleet_vehicle_inspection_line.xml",
"views/fleet_vehicle_inspection_line.xml",
"security/fleet_vehicle_inspection_item.xml",
"views/fleet_vehicle_inspection_item.xml",
"security/fleet_vehicle_inspection.xml",
"views/fleet_vehicle_inspection.xml",
"data/fleet_vehicle_inspection.xml",
],
"demo": ["demo/fleet_vehicle_inspection.xml"],
}