[IMP] remove a few whitespaces
[odoo/odoo.git] / addons / crm / crm_meeting.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 fields, osv
23 import logging
24 _logger = logging.getLogger(__name__)
25
26 #
27 # crm.meeting is defined in module base_calendar
28 #
29 class crm_meeting(osv.Model):
30     """ Model for CRM meetings """
31     _inherit = 'crm.meeting'
32     _columns = {
33         'phonecall_id': fields.many2one ('crm.phonecall', 'Phonecall'),
34         'opportunity_id': fields.many2one ('crm.lead', 'Opportunity', domain="[('type', '=', 'opportunity')]"),
35     }
36
37
38 class calendar_attendee(osv.osv):
39     """ Calendar Attendee """
40
41     _inherit = 'calendar.attendee'
42     _description = 'Calendar Attendee'
43
44     def _compute_data(self, cr, uid, ids, name, arg, context=None):
45        """
46         @param self: The object pointer
47         @param cr: the current row, from the database cursor,
48         @param uid: the current user’s ID for security checks,
49         @param ids: List of compute data’s IDs
50         @param context: A standard dictionary for contextual values
51         """
52        name = name[0]
53        result = super(calendar_attendee, self)._compute_data(cr, uid, ids, name, arg, context=context)
54
55        for attdata in self.browse(cr, uid, ids, context=context):
56             id = attdata.id
57             result[id] = {}
58             if name == 'categ_id':
59                 if attdata.ref and 'categ_id' in attdata.ref._columns:
60                     result[id][name] = (attdata.ref.categ_id.id, attdata.ref.categ_id.name,)
61                 else:
62                     result[id][name] = False
63        return result
64
65     _columns = {
66         'categ_id': fields.function(_compute_data, \
67                         string='Event Type', type="many2one", \
68                         relation="crm.case.categ", multi='categ_id'),
69     }
70
71 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: