[FIX] mail alias: properly fetch inactive users
[odoo/odoo.git] / addons / crm / res_partner.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 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
22 from osv import fields,osv
23
24 class res_partner(osv.osv):
25     """ Inherits partner and adds CRM information in the partner form """
26     _inherit = 'res.partner'
27
28     def _opportunity_meeting_count(self, cr, uid, ids, field_name, arg, context=None):
29         res = {}
30         for partner in self.browse(cr, uid, ids, context):
31             res[partner.id] = {
32                 'opportunity_count': len(partner.opportunity_ids),
33                 'meeting_count': len(partner.meeting_ids),
34             }
35         return res
36
37     _columns = {
38         'section_id': fields.many2one('crm.case.section', 'Sales Team'),
39         'opportunity_ids': fields.one2many('crm.lead', 'partner_id',\
40             'Leads and Opportunities', domain=[('state','in', ('draft','open','pending'))]),
41         'meeting_ids': fields.many2many('crm.meeting', 'crm_meeting_partner_rel','partner_id', 'meeting_id',
42             'Meetings'),
43         'phonecall_ids': fields.one2many('crm.phonecall', 'partner_id',\
44             'Phonecalls'),
45         'opportunity_count': fields.function(_opportunity_meeting_count, string="Opportunity", type='integer', multi='opp_meet'),
46         'meeting_count': fields.function(_opportunity_meeting_count, string="Meeting", type='integer', multi='opp_meet'),
47     }
48
49     def copy(self, cr, uid, record_id, default=None, context=None):
50         if default is None:
51             default = {}
52
53         default.update({'opportunity_ids': [], 'meeting_ids' : [], 'phonecall_ids' : []})
54
55         super(res_partner, self).copy(cr, uid, record_id, default, context)
56
57     def redirect_partner_form(self, cr, uid, partner_id, context=None):
58         search_view = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'base', 'view_res_partner_filter')
59         value = {
60             'domain': "[]",
61             'view_type': 'form',
62             'view_mode': 'form,tree',
63             'res_model': 'res.partner',
64             'res_id': int(partner_id),
65             'view_id': False,
66             'context': context,
67             'type': 'ir.actions.act_window',
68             'search_view_id': search_view and search_view[1] or False
69         }
70         return value
71
72     def make_opportunity(self, cr, uid, ids, opportunity_summary, planned_revenue=0.0, probability=0.0, partner_id=None, context=None):
73         categ_obj = self.pool.get('crm.case.categ')
74         categ_ids = categ_obj.search(cr, uid, [('object_id.model','=','crm.lead')])
75         lead_obj = self.pool.get('crm.lead')
76         opportunity_ids = {}
77         for partner in self.browse(cr, uid, ids, context=context):
78             if not partner_id:
79                 partner_id = partner.id
80             opportunity_id = lead_obj.create(cr, uid, {
81                 'name' : opportunity_summary,
82                 'planned_revenue' : planned_revenue,
83                 'probability' : probability,
84                 'partner_id' : partner_id,
85                 'categ_ids' : categ_ids and categ_ids[0:1] or [],
86                 'state' :'draft',
87                 'type': 'opportunity'
88             }, context=context)
89             opportunity_ids[partner_id] = opportunity_id
90         return opportunity_ids
91 res_partner()
92
93
94 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: