improvement
[odoo/odoo.git] / addons / base_contact / base_contact.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2007 TINY SPRL. (http://tiny.be) All Rights Reserved.
5 #
6 # WARNING: This program as such is intended to be used by professional
7 # programmers who take the whole responsability of assessing all potential
8 # consequences resulting from its eventual inadequacies and bugs
9 # End users who are looking for a ready-to-use solution with commercial
10 # garantees and support are strongly adviced to contract a Free Software
11 # Service Company
12 #
13 # This program is Free Software; you can redistribute it and/or
14 # modify it under the terms of the GNU General Public License
15 # as published by the Free Software Foundation; either version 2
16 # of the License, or (at your option) any later version.
17 #
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26 #
27 ##############################################################################
28
29 import netsvc
30 from osv import fields, osv
31
32
33 class res_partner_contact(osv.osv):
34     _name = "res.partner.contact"
35     _description = "res.partner.contact"
36
37     def _title_get(self,cr, user, context={}):
38         obj = self.pool.get('res.partner.title')
39         ids = obj.search(cr, user, [])
40         res = obj.read(cr, user, ids, ['shortcut', 'name','domain'], context)
41         res = [(r['shortcut'], r['name']) for r in res if r['domain']=='contact']
42         return res
43
44     _columns = {
45         'name': fields.char('Last Name', size=30,required=True),
46         'first_name': fields.char('First Name', size=30),
47         'mobile':fields.char('Mobile',size=30),
48         'title': fields.selection(_title_get, 'Title'),
49         'website':fields.char('Website',size=120),
50         'lang_id':fields.many2one('res.lang','Language'),
51         'job_ids':fields.one2many('res.partner.job','contact_id','Functions and Addresses'),
52         'country_id':fields.many2one('res.country','Nationality'),
53         'birthdate':fields.date('Birth Date'),
54         'active' : fields.boolean('Active'),
55         'partner_id':fields.related('job_ids','address_id','partner_id',type='many2one', relation='res.partner', string='Main Employer'),
56         'function_id':fields.related('job_ids','function_id',type='many2one', relation='res.partner.function', string='Main Job'),
57     }
58     _defaults = {
59         'active' : lambda *a: True,
60     }
61     def name_get(self, cr, user, ids, context={}):
62         #will return name and first_name.......
63         if not len(ids):
64             return []
65         res = []
66         for r in self.read(cr, user, ids, ['name','first_name','title']):
67             addr = r['title'] and str(r['title'])+" " or ''
68             addr +=str(r['name'] or '')
69             if r['name'] and r['first_name']:
70                 addr += ' '
71             addr += str(r['first_name'] or '')
72             res.append((r['id'], addr))
73         return res
74 res_partner_contact()
75
76 class res_partner_address(osv.osv):
77
78     #overriding of the name_get defined in base in order to remove the old contact name
79     def name_get(self, cr, user, ids, context={}):
80         if not len(ids):
81             return []
82         res = []
83         for r in self.read(cr, user, ids, ['zip','city','partner_id', 'street']):
84             if context.get('contact_display', 'contact')=='partner':
85                 res.append((r['id'], r['partner_id'][1]))
86             else:
87                 addr = str('')
88                 addr += str(r['street'] or '') + ' ' + str(r['zip'] or '') + ' ' + str(r['city'] or '')
89                 res.append((r['id'], addr.strip() or '/'))
90         return res
91
92     _name = 'res.partner.address'
93     _inherit='res.partner.address'
94     _description ='Partner Address'
95     _columns = {
96         'job_ids':fields.one2many('res.partner.job', 'address_id', 'Contacts'),
97         'email': fields.related('job_ids', 'email', type='char', string='Default Email'),
98     }
99 res_partner_address()
100
101 class res_partner_job(osv.osv):
102
103     def name_get(self, cr, uid, ids, context={}):
104         if not len(ids):
105             return []
106         res = []
107         for r in self.browse(cr, uid, ids):
108             res.append((r.id, self.pool.get('res.partner.contact').name_get(cr, uid, [r.contact_id.id])[0][1] +", "+ r.function_id.name))
109         return res
110
111     def search(self, cr, user, args, offset=0, limit=None, order=None,
112             context=None, count=False):
113         for arg in args:
114             if arg[0]=='address_id':
115                 self._order = 'sequence_partner'
116             if arg[0]=='contact_id':
117                 self._order = 'sequence_contact'
118         return super(res_partner_job,self).search(cr, user, args, offset, limit, order, context, count)
119
120     _name = 'res.partner.job'
121     _description ='Contact Job Title'
122     _order = 'sequence_contact'
123     _columns = {
124         'name': fields.related('address_id','partner_id', type='many2one', relation='res.partner', string='Partner'),
125         'address_id':fields.many2one('res.partner.address','Address', required=True),
126         'contact_id':fields.many2one('res.partner.contact','Contact', required=True),
127         'function_id': fields.many2one('res.partner.function','Job Title', required=True),
128         'sequence_contact':fields.integer('Sequence (Contact)',help='order of importance of this address in the list of addresses of the linked contact'),
129         'sequence_partner':fields.integer('Sequence (Partner)',help='order of importance of this job title in the list of job title of the linked partner'),
130         'email': fields.char('E-Mail', size=240),
131         'phone': fields.char('Phone', size=64),
132         'date_start' : fields.date('Date Start'),
133         'date_stop' : fields.date('Date Stop'),
134         'state' : fields.selection([('past', 'Past'),('current', 'Current')], 'State', required=True),
135     }
136
137     _defaults = {
138         'sequence_contact' : lambda *a: 0,
139         'state' : lambda *a: 'current', 
140     }
141 res_partner_job()
142
143
144 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
145