forked from evigra/gpsmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
executable file
·54 lines (50 loc) · 1.67 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
'name' : 'GPSMap',
'price' : '0.0',
'currency' : 'EUR',
'images': ['static/description/map_online.png'],
'author': "SolesGPS :: Eduardo Vizcaino",
'category': 'Human Resources/Fleet GPS',
"version": "14.0.0.0.0",
'website' : 'https://odoo.solesgps.com:8069',
'summary' : 'Locate the satellite coordinates that your GPS devices throw. Save that information here and see it on the map.',
'description' : """
GPS DEVICES
=====================================
With this module, we will help you to manage your GPS devices, with which you will be able to see the vehicles of your fleet on a map.
Main features
-------------
* Add GPS devices and relate them to the vehicles.
* Geolocate your vehicles on the map, minute by minute.
* Make a simulation of the geolocation history.
* Generates reports with speed, fuel, mileage.
""",
'depends': [
'fleet',
],
'data': [
# DATA
'data/fleet_vehicle_model_brand.xml',
'data/fleet_vehicle_model.xml',
'data/gps_protocol.xml',
'data/gps_commands.xml',
'data/ir_config_parameter.xml',
'data/ir_cron.xml',
'security/security.xml',
'security/ir.model.access.csv',
# VIEW
'views/assets_backend.xml',
'views/fleet_vehicle_odometer.xml',
'views/fleet_vehicle.xml',
'views/gps_commands.xml',
'views/gps_devices.xml',
'views/gps_positions.xml',
'views/gpsmaps_maponline.xml',
'views/menuitem.xml',
'views/res_config_settings_views.xml',
],
'demo': ['data/demo.xml'],
'qweb': ['static/xml/*.xml'],
'installable': True,
'application': True,
}