[FIX] crm: do not overwrite the value of no_force_assignation if already set in the...
[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 class calendar_event(osv.Model):
28     """ Model for Calendar Event """
29     _inherit = 'calendar.event'
30     _columns = {
31         'phonecall_id': fields.many2one('crm.phonecall', 'Phonecall'),
32         'opportunity_id': fields.many2one('crm.lead', 'Opportunity', domain="[('type', '=', 'opportunity')]"),
33     }
34
35     def create(self, cr, uid, vals, context=None):
36         res = super(calendar_event, self).create(cr, uid, vals, context=context)
37         obj = self.browse(cr, uid, res, context=context)
38         if obj.opportunity_id:
39             self.pool.get('crm.lead').log_meeting(cr, uid, [obj.opportunity_id.id], obj.name, obj.date, obj.duration, context=context)
40         return res
41
42
43 class calendar_attendee(osv.osv):
44     """ Calendar Attendee """
45
46     _inherit = 'calendar.attendee'
47     _description = 'Calendar Attendee'
48
49     def _noop(self, cr, uid, ids, name, arg, context=None):
50         return dict.fromkeys(ids, False)
51
52     _columns = {
53         'categ_id': fields.function(_noop, string='Event Type', deprecated="Unused Field - TODO : Remove it in trunk", type="many2one", relation="crm.case.categ"),
54     }
55
56 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: