-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path__manifest__.py
executable file
·91 lines (85 loc) · 2.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
'name' : 'GPSMap',
'price' : '0.0',
'currency' : 'EUR',
'license' : 'LGPL-3',
'images': ['static/description/map_online.png'],
'author': "SolesGPS :: Eduardo Vizcaino",
'category': 'Human Resources/Fleet GPS',
"version": "15.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': [
'base_geolocalize',
'fleet',
'website'
],
'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',
'data/ir_mail_server.xml',
'data/mail_channel.xml',
'data/mail_template.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_alerts.xml',
'views/gps_commands.xml',
'views/gps_devices.xml',
'views/gps_geofences.xml',
'views/gps_mirror.xml',
'views/gps_positions.xml',
'views/gps_protocol.xml',
'views/menuitem.xml',
'views/frontend_mirror_menu.xml',
'views/frontend_mirror_odometers.xml',
'views/frontend_mirror.xml',
'views/frontend_odometer_batery.xml',
'views/frontend_odometer_gas.xml',
'views/frontend_odometer_speed.xml',
'views/template_odometer.xml',
'views/res_config_settings_views.xml',
],
'assets': {
'web.assets_backend': [
'/gpsmap/static/js/google.js',
'/gpsmap/static/js/maplabel.js',
'/gpsmap/static/js/AbstractAction.js',
'/gpsmap/static/js/index.js',
'gpsmap/static/xml/*.xml',
'/gpsmap/static/css/index.css',
],
'web.assets_frontend': [
'/gpsmap/static/css/index.css',
'/gpsmap/static/js/maplabel.js',
'/gpsmap/static/js/google.js',
'/gpsmap/static/src/js/controller.js',
],
'web.assets_qweb': [
'/gpsmap/static/css/index.css',
'gpsmap/static/xml/*.xml',
],
},
'demo': ['data/demo.xml'],
'installable': True,
'application': True,
}