[FIX] crm: fixed on_change_user that was crashing because
[odoo/odoo.git] / addons / fleet / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21 {
22     'name' : 'Fleet Management',
23     'version' : '0.1',
24     'author' : 'OpenERP S.A.',
25     'sequence': 110,
26     'category': 'Managing vehicles and contracts',
27     'website' : 'http://www.openerp.com',
28     'summary' : 'Vehicle, leasing, insurances, costs',
29     'description' : """
30 Vehicle, leasing, insurances, cost
31 ==================================
32 With this module, OpenERP helps you managing all your vehicles, the
33 contracts associated to those vehicle as well as services, fuel log
34 entries, costs and many other features necessary to the management 
35 of your fleet of vehicle(s)
36
37 Main Features
38 -------------
39 * Add vehicles to your fleet
40 * Manage contracts for vehicles
41 * Reminder when a contract reach its expiration date
42 * Add services, fuel log entry, odometer values for all vehicles
43 * Show all costs associated to a vehicle or to a type of service
44 * Analysis graph for costs
45 """,
46     'depends' : [
47         'base',
48         'mail',
49         'board'
50     ],
51     'data' : [
52         'fleet_view.xml',
53         'fleet_cars.xml',
54         'fleet_data.xml',
55         'fleet_board_view.xml',
56     ],
57     'images': ['images/costs_analysis.jpeg','images/indicative_costs_analysis.jpeg','images/vehicles.jpeg','images/vehicles_contracts.jpeg','images/vehicles_fuel.jpeg','images/vehicles_odometer.jpeg','images/vehicles_services.jpeg'],
58     'update_xml' : ['security/fleet_security.xml','security/ir.model.access.csv'],
59
60     'demo': ['fleet_demo.xml'],
61
62     'installable' : True,
63     'application' : True,
64 }