Big MESS (UNCOMMIT PLEASE)
[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'),
52         'country_id':fields.many2one('res.country','Nationality'),
53         'birthdate':fields.date('Birth Date'),
54         'active' : fields.boolean('Active'),
55     }
56     _defaults = {
57         'active' : lambda *a: True,
58     }
59     def name_get(self, cr, user, ids, context={}):
60         #will return name and first_name.......
61         if not len(ids):
62             return []
63         res = []
64         for r in self.read(cr, user, ids, ['name','first_name']):
65             addr = str(r['name'] or '')
66             if r['name'] and r['first_name']:
67                 addr += ' '
68             addr += str(r['first_name'] or '')
69             res.append((r['id'], addr))
70         return res
71 res_partner_contact()
72
73 class res_partner_address(osv.osv):
74
75     #overriding of the name_get defined in base in order to remove the old contact name
76     def name_get(self, cr, user, ids, context={}):
77         if not len(ids):
78             return []
79         res = []
80         for r in self.read(cr, user, ids, ['zip','city','partner_id', 'street']):
81             if context.get('contact_display', 'contact')=='partner':
82                 res.append((r['id'], r['partner_id'][1]))
83             else:
84                 addr = str('')
85                 addr += str(r['street'] or '') + ' ' + str(r['zip'] or '') + ' ' + str(r['city'] or '')
86                 res.append((r['id'], addr.strip() or '/'))
87         return res
88
89     _name = 'res.partner.address'
90     _inherit='res.partner.address'
91     _description ='Partner Contact'
92     _columns = {
93         'job_ids':fields.one2many('res.partner.job', 'address_id', 'Contacts'),
94     }
95 res_partner_address()
96
97 class res_partner_job(osv.osv):
98
99     def _get_partner_name(self, cr, uid, ids, *a):
100         res={}
101         for id in self.browse(cr, uid, ids):
102             res[id.id] = id.address_id.partner_id.id
103         return res
104
105     _name = 'res.partner.job'
106     _description ='Contact Function'
107     _order = 'sequence_contact'
108     _columns = {
109         'name': fields.function(_get_partner_name, method=True, type='many2one', relation='res.partner', string='Partner'),
110         'address_id':fields.many2one('res.partner.address','Address', required=True),
111         'contact_id':fields.many2one('res.partner.contact','Contact', required=True),
112         'function_id': fields.many2one('res.partner.function','Function', required=True),
113         'sequence_contact':fields.integer('Sequence (Contact)',help='order of importance of this address in the list of addresses of the linked contact'),
114         'email': fields.char('E-Mail', size=240),
115         'phone': fields.char('Phone', size=64),
116     }
117
118     _defaults = {
119         'sequence_contact' : lambda *a: 0,
120     }
121 res_partner_job()
122
123
124 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
125