[MERGE] forward port of branch 7.0 up to de07c64
[odoo/odoo.git] / openerp / addons / base / res / res_partner.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 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 import datetime
23 from lxml import etree
24 import math
25 import pytz
26
27 import openerp
28 from openerp import SUPERUSER_ID
29 from openerp import tools
30 from openerp.osv import osv, fields
31 from openerp.osv.expression import get_unaccent_wrapper
32 from openerp.tools.translate import _
33
34 class format_address(object):
35     def fields_view_get_address(self, cr, uid, arch, context={}):
36         user_obj = self.pool['res.users']
37         fmt = user_obj.browse(cr, SUPERUSER_ID, uid, context).company_id.country_id
38         fmt = fmt and fmt.address_format
39         layouts = {
40             '%(city)s %(state_code)s\n%(zip)s': """
41                 <div class="address_format">
42                     <field name="city" placeholder="City" style="width: 50%%"/>
43                     <field name="state_id" class="oe_no_button" placeholder="State" style="width: 47%%" options='{"no_open": true}'/>
44                     <br/>
45                     <field name="zip" placeholder="ZIP"/>
46                 </div>
47             """,
48             '%(zip)s %(city)s': """
49                 <div class="address_format">
50                     <field name="zip" placeholder="ZIP" style="width: 40%%"/>
51                     <field name="city" placeholder="City" style="width: 57%%"/>
52                     <br/>
53                     <field name="state_id" class="oe_no_button" placeholder="State" options='{"no_open": true}'/>
54                 </div>
55             """,
56             '%(city)s\n%(state_name)s\n%(zip)s': """
57                 <div class="address_format">
58                     <field name="city" placeholder="City"/>
59                     <field name="state_id" class="oe_no_button" placeholder="State" options='{"no_open": true}'/>
60                     <field name="zip" placeholder="ZIP"/>
61                 </div>
62             """
63         }
64         for k,v in layouts.items():
65             if fmt and (k in fmt):
66                 doc = etree.fromstring(arch)
67                 for node in doc.xpath("//div[@class='address_format']"):
68                     tree = etree.fromstring(v)
69                     node.getparent().replace(node, tree)
70                 arch = etree.tostring(doc)
71                 break
72         return arch
73
74
75 def _tz_get(self,cr,uid, context=None):
76     # put POSIX 'Etc/*' entries at the end to avoid confusing users - see bug 1086728
77     return [(tz,tz) for tz in sorted(pytz.all_timezones, key=lambda tz: tz if not tz.startswith('Etc/') else '_')]
78
79 class res_partner_category(osv.osv):
80
81     def name_get(self, cr, uid, ids, context=None):
82         """Return the categories' display name, including their direct
83            parent by default.
84
85         :param dict context: the ``partner_category_display`` key can be
86                              used to select the short version of the
87                              category name (without the direct parent),
88                              when set to ``'short'``. The default is
89                              the long version."""
90         if context is None:
91             context = {}
92         if context.get('partner_category_display') == 'short':
93             return super(res_partner_category, self).name_get(cr, uid, ids, context=context)
94         if isinstance(ids, (int, long)):
95             ids = [ids]
96         reads = self.read(cr, uid, ids, ['name', 'parent_id'], context=context)
97         res = []
98         for record in reads:
99             name = record['name']
100             if record['parent_id']:
101                 name = record['parent_id'][1] + ' / ' + name
102             res.append((record['id'], name))
103         return res
104
105     def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100):
106         if not args:
107             args = []
108         if not context:
109             context = {}
110         if name:
111             # Be sure name_search is symetric to name_get
112             name = name.split(' / ')[-1]
113             ids = self.search(cr, uid, [('name', operator, name)] + args, limit=limit, context=context)
114         else:
115             ids = self.search(cr, uid, args, limit=limit, context=context)
116         return self.name_get(cr, uid, ids, context)
117
118
119     def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, context=None):
120         res = self.name_get(cr, uid, ids, context=context)
121         return dict(res)
122
123     _description = 'Partner Tags'
124     _name = 'res.partner.category'
125     _columns = {
126         'name': fields.char('Category Name', required=True, size=64, translate=True),
127         'parent_id': fields.many2one('res.partner.category', 'Parent Category', select=True, ondelete='cascade'),
128         'complete_name': fields.function(_name_get_fnc, type="char", string='Full Name'),
129         'child_ids': fields.one2many('res.partner.category', 'parent_id', 'Child Categories'),
130         'active': fields.boolean('Active', help="The active field allows you to hide the category without removing it."),
131         'parent_left': fields.integer('Left parent', select=True),
132         'parent_right': fields.integer('Right parent', select=True),
133         'partner_ids': fields.many2many('res.partner', id1='category_id', id2='partner_id', string='Partners'),
134     }
135     _constraints = [
136         (osv.osv._check_recursion, 'Error ! You can not create recursive categories.', ['parent_id'])
137     ]
138     _defaults = {
139         'active': 1,
140     }
141     _parent_store = True
142     _parent_order = 'name'
143     _order = 'parent_left'
144
145 class res_partner_title(osv.osv):
146     _name = 'res.partner.title'
147     _order = 'name'
148     _columns = {
149         'name': fields.char('Title', required=True, size=46, translate=True),
150         'shortcut': fields.char('Abbreviation', size=16, translate=True),
151         'domain': fields.selection([('partner', 'Partner'), ('contact', 'Contact')], 'Domain', required=True, size=24)
152     }
153     _defaults = {
154         'domain': 'contact',
155     }
156
157 def _lang_get(self, cr, uid, context=None):
158     lang_pool = self.pool['res.lang']
159     ids = lang_pool.search(cr, uid, [], context=context)
160     res = lang_pool.read(cr, uid, ids, ['code', 'name'], context)
161     return [(r['code'], r['name']) for r in res]
162
163 # fields copy if 'use_parent_address' is checked
164 ADDRESS_FIELDS = ('street', 'street2', 'zip', 'city', 'state_id', 'country_id')
165
166 class res_partner(osv.osv, format_address):
167     _description = 'Partner'
168     _name = "res.partner"
169
170     def _address_display(self, cr, uid, ids, name, args, context=None):
171         res = {}
172         for partner in self.browse(cr, uid, ids, context=context):
173             res[partner.id] = self._display_address(cr, uid, partner, context=context)
174         return res
175
176     def _get_image(self, cr, uid, ids, name, args, context=None):
177         result = dict.fromkeys(ids, False)
178         for obj in self.browse(cr, uid, ids, context=context):
179             result[obj.id] = tools.image_get_resized_images(obj.image)
180         return result
181
182     def _get_tz_offset(self, cr, uid, ids, name, args, context=None):
183         result = dict.fromkeys(ids, False)
184         for obj in self.browse(cr, uid, ids, context=context):
185             result[obj.id] = datetime.datetime.now(pytz.timezone(obj.tz or 'GMT')).strftime('%z')
186         return result
187
188     def _set_image(self, cr, uid, id, name, value, args, context=None):
189         return self.write(cr, uid, [id], {'image': tools.image_resize_image_big(value)}, context=context)
190
191     def _has_image(self, cr, uid, ids, name, args, context=None):
192         result = {}
193         for obj in self.browse(cr, uid, ids, context=context):
194             result[obj.id] = obj.image != False
195         return result
196
197     def _commercial_partner_compute(self, cr, uid, ids, name, args, context=None):
198         """ Returns the partner that is considered the commercial
199         entity of this partner. The commercial entity holds the master data
200         for all commercial fields (see :py:meth:`~_commercial_fields`) """
201         result = dict.fromkeys(ids, False)
202         for partner in self.browse(cr, uid, ids, context=context):
203             current_partner = partner 
204             while not current_partner.is_company and current_partner.parent_id:
205                 current_partner = current_partner.parent_id
206             result[partner.id] = current_partner.id
207         return result
208
209     def _display_name_compute(self, cr, uid, ids, name, args, context=None):
210         context = dict(context or {})
211         context.pop('show_address', None)
212         context.pop('show_address_only', None)
213         context.pop('show_email', None)
214         return dict(self.name_get(cr, uid, ids, context=context))
215
216     # indirections to avoid passing a copy of the overridable method when declaring the function field
217     _commercial_partner_id = lambda self, *args, **kwargs: self._commercial_partner_compute(*args, **kwargs)
218     _display_name = lambda self, *args, **kwargs: self._display_name_compute(*args, **kwargs)
219
220     _commercial_partner_store_triggers = {
221         'res.partner': (lambda self,cr,uid,ids,context=None: self.search(cr, uid, [('id','child_of',ids)], context=dict(active_test=False)),
222                         ['parent_id', 'is_company'], 10)
223     }
224     _display_name_store_triggers = {
225         'res.partner': (lambda self,cr,uid,ids,context=None: self.search(cr, uid, [('id','child_of',ids)], context=dict(active_test=False)),
226                         ['parent_id', 'is_company', 'name'], 10)
227     }
228
229     _order = "display_name"
230     _columns = {
231         'name': fields.char('Name', size=128, required=True, select=True),
232         'display_name': fields.function(_display_name, type='char', string='Name', store=_display_name_store_triggers, select=True),
233         'date': fields.date('Date', select=1),
234         'title': fields.many2one('res.partner.title', 'Title'),
235         'parent_id': fields.many2one('res.partner', 'Related Company', select=True),
236         'parent_name': fields.related('parent_id', 'name', type='char', readonly=True, string='Parent name'),
237         'child_ids': fields.one2many('res.partner', 'parent_id', 'Contacts', domain=[('active','=',True)]), # force "active_test" domain to bypass _search() override
238         'ref': fields.char('Reference', size=64, select=1),
239         'lang': fields.selection(_lang_get, 'Language',
240             help="If the selected language is loaded in the system, all documents related to this contact will be printed in this language. If not, it will be English."),
241         'tz': fields.selection(_tz_get,  'Timezone', size=64,
242             help="The partner's timezone, used to output proper date and time values inside printed reports. "
243                  "It is important to set a value for this field. You should use the same timezone "
244                  "that is otherwise used to pick and render date and time values: your computer's timezone."),
245         'tz_offset': fields.function(_get_tz_offset, type='char', size=5, string='Timezone offset', invisible=True),
246         'user_id': fields.many2one('res.users', 'Salesperson', help='The internal user that is in charge of communicating with this contact if any.'),
247         'vat': fields.char('TIN', size=32, help="Tax Identification Number. Check the box if this contact is subjected to taxes. Used by the some of the legal statements."),
248         'bank_ids': fields.one2many('res.partner.bank', 'partner_id', 'Banks'),
249         'website': fields.char('Website', size=64, help="Website of Partner or Company"),
250         'comment': fields.text('Notes'),
251         'category_id': fields.many2many('res.partner.category', id1='partner_id', id2='category_id', string='Tags'),
252         'credit_limit': fields.float(string='Credit Limit'),
253         'ean13': fields.char('EAN13', size=13),
254         'active': fields.boolean('Active'),
255         'customer': fields.boolean('Customer', help="Check this box if this contact is a customer."),
256         'supplier': fields.boolean('Supplier', help="Check this box if this contact is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order."),
257         'employee': fields.boolean('Employee', help="Check this box if this contact is an Employee."),
258         'function': fields.char('Job Position', size=128),
259         'type': fields.selection([('default', 'Default'), ('invoice', 'Invoice'),
260                                    ('delivery', 'Shipping'), ('contact', 'Contact'),
261                                    ('other', 'Other')], 'Address Type',
262             help="Used to select automatically the right address according to the context in sales and purchases documents."),
263         'street': fields.char('Street', size=128),
264         'street2': fields.char('Street2', size=128),
265         'zip': fields.char('Zip', change_default=True, size=24),
266         'city': fields.char('City', size=128),
267         'state_id': fields.many2one("res.country.state", 'State', ondelete='restrict'),
268         'country_id': fields.many2one('res.country', 'Country', ondelete='restrict'),
269         'country': fields.related('country_id', type='many2one', relation='res.country', string='Country',
270                                   deprecated="This field will be removed as of OpenERP 7.1, use country_id instead"),
271         'email': fields.char('Email', size=240),
272         'phone': fields.char('Phone', size=64),
273         'fax': fields.char('Fax', size=64),
274         'mobile': fields.char('Mobile', size=64),
275         'birthdate': fields.char('Birthdate', size=64),
276         'is_company': fields.boolean('Is a Company', help="Check if the contact is a company, otherwise it is a person"),
277         'use_parent_address': fields.boolean('Use Company Address', help="Select this if you want to set company's address information  for this contact"),
278         # image: all image fields are base64 encoded and PIL-supported
279         'image': fields.binary("Image",
280             help="This field holds the image used as avatar for this contact, limited to 1024x1024px"),
281         'image_medium': fields.function(_get_image, fnct_inv=_set_image,
282             string="Medium-sized image", type="binary", multi="_get_image",
283             store={
284                 'res.partner': (lambda self, cr, uid, ids, c={}: ids, ['image'], 10),
285             },
286             help="Medium-sized image of this contact. It is automatically "\
287                  "resized as a 128x128px image, with aspect ratio preserved. "\
288                  "Use this field in form views or some kanban views."),
289         'image_small': fields.function(_get_image, fnct_inv=_set_image,
290             string="Small-sized image", type="binary", multi="_get_image",
291             store={
292                 'res.partner': (lambda self, cr, uid, ids, c={}: ids, ['image'], 10),
293             },
294             help="Small-sized image of this contact. It is automatically "\
295                  "resized as a 64x64px image, with aspect ratio preserved. "\
296                  "Use this field anywhere a small image is required."),
297         'has_image': fields.function(_has_image, type="boolean"),
298         'company_id': fields.many2one('res.company', 'Company', select=1),
299         'color': fields.integer('Color Index'),
300         'user_ids': fields.one2many('res.users', 'partner_id', 'Users'),
301         'contact_address': fields.function(_address_display,  type='char', string='Complete Address'),
302
303         # technical field used for managing commercial fields
304         'commercial_partner_id': fields.function(_commercial_partner_id, type='many2one', relation='res.partner', string='Commercial Entity', store=_commercial_partner_store_triggers)
305     }
306
307     def _default_category(self, cr, uid, context=None):
308         if context is None:
309             context = {}
310         if context.get('category_id'):
311             return [context['category_id']]
312         return False
313
314     def _get_default_image(self, cr, uid, is_company, context=None, colorize=False):
315         img_path = openerp.modules.get_module_resource('base', 'static/src/img',
316                                                        ('company_image.png' if is_company else 'avatar.png'))
317         with open(img_path, 'rb') as f:
318             image = f.read()
319
320         # colorize user avatars
321         if not is_company:
322             image = tools.image_colorize(image)
323
324         return tools.image_resize_image_big(image.encode('base64'))
325
326     def fields_view_get(self, cr, user, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):
327         if (not view_id) and (view_type=='form') and context and context.get('force_email', False):
328             view_id = self.pool['ir.model.data'].get_object_reference(cr, user, 'base', 'view_partner_simple_form')[1]
329         res = super(res_partner,self).fields_view_get(cr, user, view_id, view_type, context, toolbar=toolbar, submenu=submenu)
330         if view_type == 'form':
331             res['arch'] = self.fields_view_get_address(cr, user, res['arch'], context=context)
332         return res
333
334     _defaults = {
335         'active': True,
336         'lang': lambda self, cr, uid, ctx: ctx.get('lang', 'en_US'),
337         'tz': lambda self, cr, uid, ctx: ctx.get('tz', False),
338         'customer': True,
339         'category_id': _default_category,
340         'company_id': lambda self, cr, uid, ctx: self.pool['res.company']._company_default_get(cr, uid, 'res.partner', context=ctx),
341         'color': 0,
342         'is_company': False,
343         'type': 'contact', # type 'default' is wildcard and thus inappropriate
344         'use_parent_address': False,
345         'image': False,
346     }
347
348     _constraints = [
349         (osv.osv._check_recursion, 'You cannot create recursive Partner hierarchies.', ['parent_id']),
350     ]
351
352     def copy(self, cr, uid, id, default=None, context=None):
353         if default is None:
354             default = {}
355         default['user_ids'] = False
356         name = self.read(cr, uid, [id], ['name'], context)[0]['name']
357         default.update({'name': _('%s (copy)') % name})
358         return super(res_partner, self).copy(cr, uid, id, default, context)
359
360     def onchange_type(self, cr, uid, ids, is_company, context=None):
361         value = {}
362         value['title'] = False
363         if is_company:
364             value['use_parent_address'] = False
365             domain = {'title': [('domain', '=', 'partner')]}
366         else:
367             domain = {'title': [('domain', '=', 'contact')]}
368         return {'value': value, 'domain': domain}
369
370     def onchange_address(self, cr, uid, ids, use_parent_address, parent_id, context=None):
371         def value_or_id(val):
372             """ return val or val.id if val is a browse record """
373             return val if isinstance(val, (bool, int, long, float, basestring)) else val.id
374         result = {}
375         if parent_id:
376             if ids:
377                 partner = self.browse(cr, uid, ids[0], context=context)
378                 if partner.parent_id and partner.parent_id.id != parent_id:
379                     result['warning'] = {'title': _('Warning'),
380                                          'message': _('Changing the company of a contact should only be done if it '
381                                                       'was never correctly set. If an existing contact starts working for a new '
382                                                       'company then a new contact should be created under that new '
383                                                       'company. You can use the "Discard" button to abandon this change.')}
384             if use_parent_address:
385                 parent = self.browse(cr, uid, parent_id, context=context)
386                 address_fields = self._address_fields(cr, uid, context=context)
387                 result['value'] = dict((key, value_or_id(parent[key])) for key in address_fields)
388         else:
389             result['value'] = {'use_parent_address': False}
390         return result
391
392     def onchange_state(self, cr, uid, ids, state_id, context=None):
393         if state_id:
394             country_id = self.pool['res.country.state'].browse(cr, uid, state_id, context).country_id.id
395             return {'value':{'country_id':country_id}}
396         return {}
397
398     def _check_ean_key(self, cr, uid, ids, context=None):
399         for partner_o in self.pool['res.partner'].read(cr, uid, ids, ['ean13',]):
400             thisean=partner_o['ean13']
401             if thisean and thisean!='':
402                 if len(thisean)!=13:
403                     return False
404                 sum=0
405                 for i in range(12):
406                     if not (i % 2):
407                         sum+=int(thisean[i])
408                     else:
409                         sum+=3*int(thisean[i])
410                 if math.ceil(sum/10.0)*10-sum!=int(thisean[12]):
411                     return False
412         return True
413
414 #   _constraints = [(_check_ean_key, 'Error: Invalid ean code', ['ean13'])]
415
416     def _update_fields_values(self, cr, uid, partner, fields, context=None):
417         """ Returns dict of write() values for synchronizing ``fields`` """
418         values = {}
419         for field in fields:
420             column = self._all_columns[field].column
421             if column._type == 'one2many':
422                 raise AssertionError('One2Many fields cannot be synchronized as part of `commercial_fields` or `address fields`')
423             if column._type == 'many2one':
424                 values[field] = partner[field].id if partner[field] else False
425             elif column._type == 'many2many':
426                 values[field] = [(6,0,[r.id for r in partner[field] or []])]
427             else:
428                 values[field] = partner[field]
429         return values
430
431     def _address_fields(self, cr, uid, context=None):
432         """ Returns the list of address fields that are synced from the parent
433         when the `use_parent_address` flag is set. """
434         return list(ADDRESS_FIELDS)
435
436     def update_address(self, cr, uid, ids, vals, context=None):
437         address_fields = self._address_fields(cr, uid, context=context)
438         addr_vals = dict((key, vals[key]) for key in address_fields if key in vals)
439         if addr_vals:
440             return super(res_partner, self).write(cr, uid, ids, addr_vals, context)
441
442     def _commercial_fields(self, cr, uid, context=None):
443         """ Returns the list of fields that are managed by the commercial entity
444         to which a partner belongs. These fields are meant to be hidden on
445         partners that aren't `commercial entities` themselves, and will be
446         delegated to the parent `commercial entity`. The list is meant to be
447         extended by inheriting classes. """
448         return ['vat']
449
450     def _commercial_sync_from_company(self, cr, uid, partner, context=None):
451         """ Handle sync of commercial fields when a new parent commercial entity is set,
452         as if they were related fields """
453         commercial_partner = partner.commercial_partner_id
454         if not commercial_partner:
455             # On child partner creation of a parent partner,
456             # the commercial_partner_id is not yet computed
457             commercial_partner_id = self._commercial_partner_compute(
458                 cr, uid, [partner.id], 'commercial_partner_id', [], context=context)[partner.id]
459             commercial_partner = self.browse(cr, uid, commercial_partner_id, context=context)
460         if commercial_partner != partner:
461             commercial_fields = self._commercial_fields(cr, uid, context=context)
462             sync_vals = self._update_fields_values(cr, uid, commercial_partner,
463                                                    commercial_fields, context=context)
464             partner.write(sync_vals)
465
466     def _commercial_sync_to_children(self, cr, uid, partner, context=None):
467         """ Handle sync of commercial fields to descendants """
468         commercial_fields = self._commercial_fields(cr, uid, context=context)
469         commercial_partner = partner.commercial_partner_id
470         if not commercial_partner:
471             # On child partner creation of a parent partner,
472             # the commercial_partner_id is not yet computed
473             commercial_partner_id = self._commercial_partner_compute(
474                 cr, uid, [partner.id], 'commercial_partner_id', [], context=context)[partner.id]
475             commercial_partner = self.browse(cr, uid, commercial_partner_id, context=context)
476         sync_vals = self._update_fields_values(cr, uid, commercial_partner,
477                                                commercial_fields, context=context)
478         sync_children = [c for c in partner.child_ids if not c.is_company]
479         for child in sync_children:
480             self._commercial_sync_to_children(cr, uid, child, context=context)
481         return self.write(cr, uid, [c.id for c in sync_children], sync_vals, context=context)
482
483     def _fields_sync(self, cr, uid, partner, update_values, context=None):
484         """ Sync commercial fields and address fields from company and to children after create/update,
485         just as if those were all modeled as fields.related to the parent """
486         # 1. From UPSTREAM: sync from parent
487         if update_values.get('parent_id') or update_values.get('use_parent_address'):
488             # 1a. Commercial fields: sync if parent changed
489             if update_values.get('parent_id'):
490                 self._commercial_sync_from_company(cr, uid, partner, context=context)
491             # 1b. Address fields: sync if parent or use_parent changed *and* both are now set 
492             if partner.parent_id and partner.use_parent_address:
493                 onchange_vals = self.onchange_address(cr, uid, [partner.id],
494                                                       use_parent_address=partner.use_parent_address,
495                                                       parent_id=partner.parent_id.id,
496                                                       context=context).get('value', {})
497                 partner.update_address(onchange_vals)
498
499         # 2. To DOWNSTREAM: sync children 
500         if partner.child_ids:
501             # 2a. Commercial Fields: sync if commercial entity
502             if partner.commercial_partner_id == partner:
503                 commercial_fields = self._commercial_fields(cr, uid,
504                                                             context=context)
505                 if any(field in update_values for field in commercial_fields):
506                     self._commercial_sync_to_children(cr, uid, partner,
507                                                       context=context)
508             # 2b. Address fields: sync if address changed
509             address_fields = self._address_fields(cr, uid, context=context)
510             if any(field in update_values for field in address_fields):
511                 domain_children = [('parent_id', '=', partner.id), ('use_parent_address', '=', True)]
512                 update_ids = self.search(cr, uid, domain_children, context=context)
513                 self.update_address(cr, uid, update_ids, update_values, context=context)
514
515     def _handle_first_contact_creation(self, cr, uid, partner, context=None):
516         """ On creation of first contact for a company (or root) that has no address, assume contact address
517         was meant to be company address """
518         parent = partner.parent_id
519         address_fields = self._address_fields(cr, uid, context=context)
520         if parent and (parent.is_company or not parent.parent_id) and len(parent.child_ids) == 1 and \
521             any(partner[f] for f in address_fields) and not any(parent[f] for f in address_fields):
522             addr_vals = self._update_fields_values(cr, uid, partner, address_fields, context=context)
523             parent.update_address(addr_vals)
524             if not parent.is_company:
525                 parent.write({'is_company': True})
526
527     def unlink(self, cr, uid, ids, context=None):
528         orphan_contact_ids = self.search(cr, uid,
529             [('parent_id', 'in', ids), ('id', 'not in', ids), ('use_parent_address', '=', True)], context=context)
530         if orphan_contact_ids:
531             # no longer have a parent address
532             self.write(cr, uid, orphan_contact_ids, {'use_parent_address': False}, context=context)
533         return super(res_partner, self).unlink(cr, uid, ids, context=context)
534
535     def write(self, cr, uid, ids, vals, context=None):
536         if isinstance(ids, (int, long)):
537             ids = [ids]
538         #res.partner must only allow to set the company_id of a partner if it
539         #is the same as the company of all users that inherit from this partner
540         #(this is to allow the code from res_users to write to the partner!) or
541         #if setting the company_id to False (this is compatible with any user company)
542         if vals.get('company_id'):
543             for partner in self.browse(cr, uid, ids, context=context):
544                 if partner.user_ids:
545                     user_companies = set([user.company_id.id for user in partner.user_ids])
546                     if len(user_companies) > 1 or vals['company_id'] not in user_companies:
547                         raise osv.except_osv(_("Warning"),_("You can not change the company as the partner/user has multiple user linked with different companies."))
548         result = super(res_partner,self).write(cr, uid, ids, vals, context=context)
549         for partner in self.browse(cr, uid, ids, context=context):
550             self._fields_sync(cr, uid, partner, vals, context)
551         return result
552
553     def create(self, cr, uid, vals, context=None):
554         new_id = super(res_partner, self).create(cr, uid, vals, context=context)
555         partner = self.browse(cr, uid, new_id, context=context)
556         self._fields_sync(cr, uid, partner, vals, context)
557         self._handle_first_contact_creation(cr, uid, partner, context)
558         return new_id
559
560     def open_commercial_entity(self, cr, uid, ids, context=None):
561         """ Utility method used to add an "Open Company" button in partner views """
562         partner = self.browse(cr, uid, ids[0], context=context)
563         return {'type': 'ir.actions.act_window',
564                 'res_model': 'res.partner',
565                 'view_mode': 'form',
566                 'res_id': partner.commercial_partner_id.id,
567                 'target': 'new',
568                 'flags': {'form': {'action_buttons': True}}}
569
570     def open_parent(self, cr, uid, ids, context=None):
571         """ Utility method used to add an "Open Parent" button in partner views """
572         partner = self.browse(cr, uid, ids[0], context=context)
573         return {'type': 'ir.actions.act_window',
574                 'res_model': 'res.partner',
575                 'view_mode': 'form',
576                 'res_id': partner.parent_id.id,
577                 'target': 'new',
578                 'flags': {'form': {'action_buttons': True}}}
579
580     def name_get(self, cr, uid, ids, context=None):
581         if context is None:
582             context = {}
583         if isinstance(ids, (int, long)):
584             ids = [ids]
585         res = []
586         for record in self.browse(cr, uid, ids, context=context):
587             name = record.name
588             if record.parent_id and not record.is_company:
589                 name = "%s, %s" % (record.parent_name, name)
590             if context.get('show_address_only'):
591                 name = self._display_address(cr, uid, record, without_company=True, context=context)
592             if context.get('show_address'):
593                 name = name + "\n" + self._display_address(cr, uid, record, without_company=True, context=context)
594             name = name.replace('\n\n','\n')
595             name = name.replace('\n\n','\n')
596             if context.get('show_email') and record.email:
597                 name = "%s <%s>" % (name, record.email)
598             res.append((record.id, name))
599         return res
600
601     def _parse_partner_name(self, text, context=None):
602         """ Supported syntax:
603             - 'Raoul <raoul@grosbedon.fr>': will find name and email address
604             - otherwise: default, everything is set as the name """
605         emails = tools.email_split(text.replace(' ',','))
606         if emails:
607             email = emails[0]
608             name = text[:text.index(email)].replace('"', '').replace('<', '').strip()
609         else:
610             name, email = text, ''
611         return name, email
612
613     def name_create(self, cr, uid, name, context=None):
614         """ Override of orm's name_create method for partners. The purpose is
615             to handle some basic formats to create partners using the
616             name_create.
617             If only an email address is received and that the regex cannot find
618             a name, the name will have the email value.
619             If 'force_email' key in context: must find the email address. """
620         if context is None:
621             context = {}
622         name, email = self._parse_partner_name(name, context=context)
623         if context.get('force_email') and not email:
624             raise osv.except_osv(_('Warning'), _("Couldn't create contact without email address!"))
625         if not name and email:
626             name = email
627         rec_id = self.create(cr, uid, {self._rec_name: name or email, 'email': email or False}, context=context)
628         return self.name_get(cr, uid, [rec_id], context)[0]
629
630     def _search(self, cr, user, args, offset=0, limit=None, order=None, context=None, count=False, access_rights_uid=None):
631         """ Override search() to always show inactive children when searching via ``child_of`` operator. The ORM will
632         always call search() with a simple domain of the form [('parent_id', 'in', [ids])]. """
633         # a special ``domain`` is set on the ``child_ids`` o2m to bypass this logic, as it uses similar domain expressions
634         if len(args) == 1 and len(args[0]) == 3 and args[0][:2] == ('parent_id','in') \
635                 and args[0][2] != [False]:
636             context = dict(context or {}, active_test=False)
637         return super(res_partner, self)._search(cr, user, args, offset=offset, limit=limit, order=order, context=context,
638                                                 count=count, access_rights_uid=access_rights_uid)
639
640     def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100):
641         if not args:
642             args = []
643         if name and operator in ('=', 'ilike', '=ilike', 'like', '=like'):
644
645             self.check_access_rights(cr, uid, 'read')
646             where_query = self._where_calc(cr, uid, args, context=context)
647             self._apply_ir_rules(cr, uid, where_query, 'read', context=context)
648             from_clause, where_clause, where_clause_params = where_query.get_sql()
649             where_str = where_clause and (" WHERE %s AND " % where_clause) or ' WHERE '
650
651             # search on the name of the contacts and of its company
652             search_name = name
653             if operator in ('ilike', 'like'):
654                 search_name = '%%%s%%' % name
655             if operator in ('=ilike', '=like'):
656                 operator = operator[1:]
657
658             unaccent = get_unaccent_wrapper(cr)
659
660             query = """SELECT id
661                          FROM res_partner
662                       {where} ({email} {operator} {percent}
663                            OR {display_name} {operator} {percent})
664                      ORDER BY {display_name}
665                     """.format(where=where_str, operator=operator,
666                                email=unaccent('email'),
667                                display_name=unaccent('display_name'),
668                                percent=unaccent('%s'))
669
670             where_clause_params += [search_name, search_name]
671             if limit:
672                 query += ' limit %s'
673                 where_clause_params.append(limit)
674             cr.execute(query, where_clause_params)
675             ids = map(lambda x: x[0], cr.fetchall())
676
677             if ids:
678                 return self.name_get(cr, uid, ids, context)
679             else:
680                 return []
681         return super(res_partner,self).name_search(cr, uid, name, args, operator=operator, context=context, limit=limit)
682
683     def find_or_create(self, cr, uid, email, context=None):
684         """ Find a partner with the given ``email`` or use :py:method:`~.name_create`
685             to create one
686
687             :param str email: email-like string, which should contain at least one email,
688                 e.g. ``"Raoul Grosbedon <r.g@grosbedon.fr>"``"""
689         assert email, 'an email is required for find_or_create to work'
690         emails = tools.email_split(email)
691         if emails:
692             email = emails[0]
693         ids = self.search(cr, uid, [('email','ilike',email)], context=context)
694         if not ids:
695             return self.name_create(cr, uid, email, context=context)[0]
696         return ids[0]
697
698     def _email_send(self, cr, uid, ids, email_from, subject, body, on_error=None):
699         partners = self.browse(cr, uid, ids)
700         for partner in partners:
701             if partner.email:
702                 tools.email_send(email_from, [partner.email], subject, body, on_error)
703         return True
704
705     def email_send(self, cr, uid, ids, email_from, subject, body, on_error=''):
706         while len(ids):
707             self.pool['ir.cron'].create(cr, uid, {
708                 'name': 'Send Partner Emails',
709                 'user_id': uid,
710                 'model': 'res.partner',
711                 'function': '_email_send',
712                 'args': repr([ids[:16], email_from, subject, body, on_error])
713             })
714             ids = ids[16:]
715         return True
716
717     def address_get(self, cr, uid, ids, adr_pref=None, context=None):
718         """ Find contacts/addresses of the right type(s) by doing a depth-first-search
719         through descendants within company boundaries (stop at entities flagged ``is_company``)
720         then continuing the search at the ancestors that are within the same company boundaries.
721         Defaults to partners of type ``'default'`` when the exact type is not found, or to the
722         provided partner itself if no type ``'default'`` is found either. """
723         adr_pref = set(adr_pref or [])
724         if 'default' not in adr_pref:
725             adr_pref.add('default')
726         result = {}
727         visited = set()
728         for partner in self.browse(cr, uid, filter(None, ids), context=context):
729             current_partner = partner
730             while current_partner:
731                 to_scan = [current_partner]
732                 # Scan descendants, DFS
733                 while to_scan:
734                     record = to_scan.pop(0)
735                     visited.add(record)
736                     if record.type in adr_pref and not result.get(record.type):
737                         result[record.type] = record.id
738                     if len(result) == len(adr_pref):
739                         return result
740                     to_scan = [c for c in record.child_ids
741                                  if c not in visited
742                                  if not c.is_company] + to_scan
743
744                 # Continue scanning at ancestor if current_partner is not a commercial entity
745                 if current_partner.is_company or not current_partner.parent_id:
746                     break
747                 current_partner = current_partner.parent_id
748
749         # default to type 'default' or the partner itself
750         default = result.get('default', partner.id)
751         for adr_type in adr_pref:
752             result[adr_type] = result.get(adr_type) or default 
753         return result
754
755     def view_header_get(self, cr, uid, view_id, view_type, context):
756         res = super(res_partner, self).view_header_get(cr, uid, view_id, view_type, context)
757         if res: return res
758         if not context.get('category_id', False):
759             return False
760         return _('Partners: ')+self.pool['res.partner.category'].browse(cr, uid, context['category_id'], context).name
761
762     def main_partner(self, cr, uid):
763         ''' Return the id of the main partner
764         '''
765         model_data = self.pool['ir.model.data']
766         return model_data.browse(cr, uid,
767                             model_data.search(cr, uid, [('module','=','base'),
768                                                 ('name','=','main_partner')])[0],
769                 ).res_id
770
771     def _display_address(self, cr, uid, address, without_company=False, context=None):
772
773         '''
774         The purpose of this function is to build and return an address formatted accordingly to the
775         standards of the country where it belongs.
776
777         :param address: browse record of the res.partner to format
778         :returns: the address formatted in a display that fit its country habits (or the default ones
779             if not country is specified)
780         :rtype: string
781         '''
782
783         # get the information that will be injected into the display format
784         # get the address format
785         address_format = address.country_id and address.country_id.address_format or \
786               "%(street)s\n%(street2)s\n%(city)s %(state_code)s %(zip)s\n%(country_name)s"
787         args = {
788             'state_code': address.state_id and address.state_id.code or '',
789             'state_name': address.state_id and address.state_id.name or '',
790             'country_code': address.country_id and address.country_id.code or '',
791             'country_name': address.country_id and address.country_id.name or '',
792             'company_name': address.parent_id and address.parent_name or '',
793         }
794         for field in self._address_fields(cr, uid, context=context):
795             args[field] = getattr(address, field) or ''
796         if without_company:
797             args['company_name'] = ''
798         elif address.parent_id:
799             address_format = '%(company_name)s\n' + address_format
800         return address_format % args
801
802 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: