[FIX] fields: inherited fields get their attribute 'state' from their base field
[odoo/odoo.git] / addons / crm / crm.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-today OpenERP SA (<http://www.openerp.com>)
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 from openerp.osv import osv, fields
23 from openerp.http import request
24
25 AVAILABLE_PRIORITIES = [
26     ('0', 'Very Low'),
27     ('1', 'Low'),
28     ('2', 'Normal'),
29     ('3', 'High'),
30     ('4', 'Very High'),
31 ]
32
33
34 class crm_tracking_medium(osv.Model):
35     # OLD crm.case.channel
36     _name = "crm.tracking.medium"
37     _description = "Channels"
38     _order = 'name'
39     _columns = {
40         'name': fields.char('Channel Name', required=True),
41         'active': fields.boolean('Active'),
42     }
43     _defaults = {
44         'active': lambda *a: 1,
45     }
46
47
48 class crm_tracking_campaign(osv.Model):
49     # OLD crm.case.resource.type
50     _name = "crm.tracking.campaign"
51     _description = "Campaign"
52     _rec_name = "name"
53     _columns = {
54         'name': fields.char('Campaign Name', required=True, translate=True),
55         'section_id': fields.many2one('crm.case.section', 'Sales Team'),
56     }
57
58
59 class crm_tracking_source(osv.Model):
60     _name = "crm.tracking.source"
61     _description = "Source"
62     _rec_name = "name"
63     _columns = {
64         'name': fields.char('Source Name', required=True, translate=True),
65     }
66
67
68 class crm_tracking_mixin(osv.AbstractModel):
69     """Mixin class for objects which can be tracked by marketing. """
70     _name = 'crm.tracking.mixin'
71
72     _columns = {
73         'campaign_id': fields.many2one('crm.tracking.campaign', 'Campaign',  # old domain ="['|',('section_id','=',section_id),('section_id','=',False)]"
74                                        help="This is a name that helps you keep track of your different campaign efforts Ex: Fall_Drive, Christmas_Special"),
75         'source_id': fields.many2one('crm.tracking.source', 'Source', help="This is the source of the link Ex: Search Engine, another domain, or name of email list"),
76         'medium_id': fields.many2one('crm.tracking.medium', 'Channel', help="This is the method of delivery. Ex: Postcard, Email, or Banner Ad", oldname='channel_id'),
77     }
78
79     def tracking_fields(self):
80         return [('utm_campaign', 'campaign_id'), ('utm_source', 'source_id'), ('utm_medium', 'medium_id')]
81
82     def tracking_get_values(self, cr, uid, vals, context=None):
83         for key, fname in self.tracking_fields():
84             field = self._fields[fname]
85             value = vals.get(fname) or (request and request.httprequest.cookies.get(key))  # params.get should be always in session by the dispatch from ir_http
86             if field.type == 'many2one' and isinstance(value, basestring):
87                 # if we receive a string for a many2one, we search/create the id
88                 if value:
89                     Model = self.pool[field.comodel_name]
90                     rel_id = Model.name_search(cr, uid, value, context=context)
91                     if rel_id:
92                         rel_id = rel_id[0][0]
93                     else:
94                         rel_id = Model.create(cr, uid, {'name': value}, context=context)
95                 vals[fname] = rel_id
96             else:
97                 # Here the code for others cases that many2one
98                 vals[fname] = value
99         return vals
100
101     def _get_default_track(self, cr, uid, field, context=None):
102         return self.tracking_get_values(cr, uid, {}, context=context).get(field)
103
104     _defaults = {
105         'source_id': lambda self, cr, uid, ctx: self._get_default_track(cr, uid, 'source_id', ctx),
106         'campaign_id': lambda self, cr, uid, ctx: self._get_default_track(cr, uid, 'campaign_id', ctx),
107         'medium_id': lambda self, cr, uid, ctx: self._get_default_track(cr, uid, 'medium_id', ctx),
108     }
109
110
111 class crm_case_stage(osv.osv):
112     """ Model for case stages. This models the main stages of a document
113         management flow. Main CRM objects (leads, opportunities, project
114         issues, ...) will now use only stages, instead of state and stages.
115         Stages are for example used to display the kanban view of records.
116     """
117     _name = "crm.case.stage"
118     _description = "Stage of case"
119     _rec_name = 'name'
120     _order = "sequence"
121
122     _columns = {
123         'name': fields.char('Stage Name', required=True, translate=True),
124         'sequence': fields.integer('Sequence', help="Used to order stages. Lower is better."),
125         'probability': fields.float('Probability (%)', required=True, help="This percentage depicts the default/average probability of the Case for this stage to be a success"),
126         'on_change': fields.boolean('Change Probability Automatically', help="Setting this stage will change the probability automatically on the opportunity."),
127         'requirements': fields.text('Requirements'),
128         'section_ids': fields.many2many('crm.case.section', 'section_stage_rel', 'stage_id', 'section_id', string='Sections',
129                                         help="Link between stages and sales teams. When set, this limitate the current stage to the selected sales teams."),
130         'case_default': fields.boolean('Default to New Sales Team',
131                                        help="If you check this field, this stage will be proposed by default on each sales team. It will not assign this stage to existing teams."),
132         'fold': fields.boolean('Folded in Kanban View',
133                                help='This stage is folded in the kanban view when'
134                                'there are no records in that stage to display.'),
135         'type': fields.selection([('lead', 'Lead'), ('opportunity', 'Opportunity'), ('both', 'Both')],
136                                  string='Type', required=True,
137                                  help="This field is used to distinguish stages related to Leads from stages related to Opportunities, or to specify stages available for both types."),
138     }
139
140     _defaults = {
141         'sequence': 1,
142         'probability': 0.0,
143         'on_change': True,
144         'fold': False,
145         'type': 'both',
146         'case_default': True,
147     }
148
149
150 class crm_case_categ(osv.osv):
151     """ Category of Case """
152     _name = "crm.case.categ"
153     _description = "Category of Case"
154     _columns = {
155         'name': fields.char('Name', required=True, translate=True),
156         'section_id': fields.many2one('crm.case.section', 'Sales Team'),
157         'object_id': fields.many2one('ir.model', 'Object Name'),
158     }
159
160     def _find_object_id(self, cr, uid, context=None):
161         """Finds id for case object"""
162         context = context or {}
163         object_id = context.get('object_id', False)
164         ids = self.pool.get('ir.model').search(cr, uid, ['|', ('id', '=', object_id), ('model', '=', context.get('object_name', False))])
165         return ids and ids[0] or False
166     _defaults = {
167         'object_id': _find_object_id
168     }
169
170
171 class crm_payment_mode(osv.osv):
172     """ Payment Mode for Fund """
173     _name = "crm.payment.mode"
174     _description = "CRM Payment Mode"
175     _columns = {
176         'name': fields.char('Name', required=True),
177         'section_id': fields.many2one('crm.case.section', 'Sales Team'),
178     }
179
180 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: