[MERGE]
[odoo/odoo.git] / addons / base_setup / installer.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 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 from osv import fields, osv
22
23 class base_setup_installer(osv.osv_memory):
24     _name = 'base.setup.installer'
25     _inherit = 'res.config.installer'
26
27     _install_if = {
28         ('sale','crm'): ['sale_crm'],
29         ('sale','project'): ['project_mrp'],
30         ('sale',):['account_accountant']
31         }
32     _columns = {
33         # Generic modules
34         'crm':fields.boolean('Customer Relationship Management',
35             help="Helps you track and manage relations with customers such as"
36                  " leads, requests or issues. Can automatically send "
37                  "reminders, escalate requests or trigger business-specific "
38                  "actions based on standard events."),
39         'sale':fields.boolean('Sales Management',
40             help="Helps you handle your quotations, sale orders and invoicing"
41                  "."),
42         'project':fields.boolean('Project Management',
43             help="Helps you manage your projects and tasks by tracking them, "
44                  "generating plannings, etc..."),
45         'knowledge':fields.boolean('Knowledge Management',
46             help="Lets you install addons geared towards sharing knowledge "
47                  "with and between your employees."),
48         'stock':fields.boolean('Warehouse Management',
49             help="Helps you manage your stocks and stocks locations, as well "
50                  "as the flow of stock between warehouses."),
51         'mrp':fields.boolean('Manufacturing',
52             help="Helps you manage your manufacturing processes and generate "
53                  "reports on those processes."),
54         'account':fields.boolean('Financial & Accounting',
55             help="Helps you handle your accounting needs, as well as create "
56                  "and track your budgets."),
57         'purchase':fields.boolean('Purchase Management',
58             help="Helps you manage your purchase-related processes such as "
59                  "requests for quotations, supplier invoices, etc..."),
60         'hr':fields.boolean('Human Resources',
61             help="Helps you manage your human resources by encoding your employees structure, generating work sheets, tracking attendance and more"),
62         'point_of_sale':fields.boolean('Point of Sales',
63             help="Helps you get the most out of your points of sales with "
64                  "fast sale encoding, simplified payment mode encoding, "
65                  "automatic picking lists generation and more."),
66         'marketing':fields.boolean('Marketing',
67             help="Helps you manage your marketing campaigns step by step."),
68         'profile_tools':fields.boolean('Extra Tools',
69             help="Lets you install various interesting but non-essential tools "
70                 "like Survey, Lunch and Ideas box."),
71         'report_designer':fields.boolean('Advanced Reporting',
72             help="Lets you install various tools to simplify and enhance "
73                  "OpenERP's report creation."),
74         # Vertical modules
75         'product_expiry':fields.boolean('Food Industry',
76             help="Installs a preselected set of OpenERP applications "
77                 "which will help you manage your industry"),
78         'association':fields.boolean('Associations',
79             help="Installs a preselected set of OpenERP "
80                  "applications which will help you manage your association "
81                  "more efficiently."),
82         'auction':fields.boolean('Auction Houses',
83             help="Installs a preselected set of OpenERP "
84                  "applications selected to help you manage your auctions "
85                  "as well as the business processes around them."),
86         }
87     _defaults = {
88         'crm': True,
89         }
90
91     def _if_knowledge(self, cr, uid, ids, context=None):
92         if self.pool.get('res.users').browse(cr, uid, uid, context=context)\
93                .view == 'simple':
94             return ['document_ftp']
95         return None
96
97     def _if_misc_tools(self, cr, uid, ids, context=None):
98         interface = self.pool.get('res.users').browse(cr, uid, uid, context=context).view
99         if interface == 'simple' or interface =='extended' :
100             return ['profile_tools']
101         return None
102
103     def _if_account(self, cr, uid, ids, context=None):
104         if self.pool.get('res.users').browse(cr, uid, uid, context=context)\
105                .view == 'simple':
106             return ['account_voucher']
107         return None
108
109     def onchange_moduleselection(self, cr, uid, ids, *args, **kargs):
110         value = {}
111         # Calculate progress
112         closed, total = self.get_current_progress(cr, uid)
113         progress = round(100. * closed / (total + len(filter(None, args))))
114         value.update({'progress':progress})
115         if progress < 10.:
116             progress = 10.
117         return {'value':value}
118 base_setup_installer()