[IMP] removes some useless fields (*stat_button) from res_partner in addon crm and...
[odoo/odoo.git] / addons / crm / calendar_event.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 # calendar.event is defined in module calendar
28 #
29 class calendar_event(osv.Model):
30     """ Model for Calendar Event """
31     _inherit = 'calendar.event'
32     _columns = {
33         'phonecall_id': fields.many2one ('crm.phonecall', 'Phonecall'),
34         'opportunity_id': fields.many2one ('crm.lead', 'Opportunity', domain="[('type', '=', 'opportunity')]"),
35     }
36
37     def create(self, cr, uid, vals, context=None):
38         res = super(calendar_event, self).create(cr, uid, vals, context=context)
39         obj = self.browse(cr, uid, res, context=context)
40         if obj.opportunity_id:
41             self.pool.get('crm.lead').log_meeting(cr, uid, [obj.opportunity_id.id], obj.name, obj.date, obj.duration, context=context)
42         return res
43
44
45 class calendar_attendee(osv.osv):
46     """ Calendar Attendee """
47
48     _inherit = 'calendar.attendee'
49     _description = 'Calendar Attendee'
50
51     def _compute_data(self, cr, uid, ids, name, arg, context=None):
52        """
53         @param self: The object pointer
54         @param cr: the current row, from the database cursor,
55         @param uid: the current user’s ID for security checks,
56         @param ids: List of compute data’s IDs
57         @param context: A standard dictionary for contextual values
58         """
59        name = name[0]
60        result = super(calendar_attendee, self)._compute_data(cr, uid, ids, name, arg, context=context)
61
62        for attdata in self.browse(cr, uid, ids, context=context):
63             id = attdata.id
64             result[id] = {}
65             if name == 'categ_id':
66                 if attdata.ref and 'categ_id' in attdata.ref._columns:
67                     result[id][name] = (attdata.ref.categ_id.id, attdata.ref.categ_id.name,)
68                 else:
69                     result[id][name] = False
70        return result
71
72     _columns = {
73         'categ_id': fields.function(_compute_data, \
74                         string='Event Type', type="many2one", \
75                         relation="crm.case.categ", multi='categ_id'),
76     }
77
78 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: