[FIX] fields: m2m SQL names may be dynamic now, care for it in field_to_dict()
[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 math
23
24 from osv import fields,osv
25 import tools
26 import pooler
27 from tools.translate import _
28
29 class res_payterm(osv.osv):
30     _description = 'Payment term'
31     _name = 'res.payterm'
32     _order = 'name'
33     _columns = {
34         'name': fields.char('Payment Term (short name)', size=64),
35     }
36 res_payterm()
37
38 class res_partner_category(osv.osv):
39     def name_get(self, cr, uid, ids, context=None):
40         if not len(ids):
41             return []
42         reads = self.read(cr, uid, ids, ['name','parent_id'], context=context)
43         res = []
44         for record in reads:
45             name = record['name']
46             if record['parent_id']:
47                 name = record['parent_id'][1]+' / '+name
48             res.append((record['id'], name))
49         return res
50
51     def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100):
52         if not args:
53             args=[]
54         if not context:
55             context={}
56         if name:
57             # Be sure name_search is symetric to name_get
58             name = name.split(' / ')[-1]
59             ids = self.search(cr, uid, [('name', operator, name)] + args, limit=limit, context=context)
60         else:
61             ids = self.search(cr, uid, args, limit=limit, context=context)
62         return self.name_get(cr, uid, ids, context)
63
64
65     def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, context=None):
66         res = self.name_get(cr, uid, ids, context=context)
67         return dict(res)
68
69     _description='Partner Categories'
70     _name = 'res.partner.category'
71     _columns = {
72         'name': fields.char('Category Name', required=True, size=64, translate=True),
73         'parent_id': fields.many2one('res.partner.category', 'Parent Category', select=True, ondelete='cascade'),
74         'complete_name': fields.function(_name_get_fnc, method=True, type="char", string='Full Name'),
75         'child_ids': fields.one2many('res.partner.category', 'parent_id', 'Child Categories'),
76         'active' : fields.boolean('Active', help="The active field allows you to hide the category without removing it."),
77         'parent_left' : fields.integer('Left parent', select=True),
78         'parent_right' : fields.integer('Right parent', select=True),
79     }
80     _constraints = [
81         (osv.osv._check_recursion, 'Error ! You can not create recursive categories.', ['parent_id'])
82     ]
83     _defaults = {
84         'active' : lambda *a: 1,
85     }
86     _parent_store = True
87     _parent_order = 'name'
88     _order = 'parent_left'
89 res_partner_category()
90
91 class res_partner_title(osv.osv):
92     _name = 'res.partner.title'
93     _columns = {
94         'name': fields.char('Title', required=True, size=46, translate=True),
95         'shortcut': fields.char('Shortcut', required=True, size=16, translate=True),
96         'domain': fields.selection([('partner','Partner'),('contact','Contact')], 'Domain', required=True, size=24)
97     }
98     _order = 'name'
99 res_partner_title()
100
101 def _lang_get(self, cr, uid, context={}):
102     obj = self.pool.get('res.lang')
103     ids = obj.search(cr, uid, [], context=context)
104     res = obj.read(cr, uid, ids, ['code', 'name'], context)
105     return [(r['code'], r['name']) for r in res] + [('','')]
106
107
108 class res_partner(osv.osv):
109     _description='Partner'
110     _name = "res.partner"
111     _order = "name"
112     _columns = {
113         'name': fields.char('Name', size=128, required=True, select=True),
114         'date': fields.date('Date', select=1),
115         'title': fields.many2one('res.partner.title','Partner Firm'),
116         'parent_id': fields.many2one('res.partner','Parent Partner'),
117         'child_ids': fields.one2many('res.partner', 'parent_id', 'Partner Ref.'),
118         'ref': fields.char('Reference', size=64, select=1),
119         'lang': fields.selection(_lang_get, 'Language', help="If the selected language is loaded in the system, all documents related to this partner will be printed in this language. If not, it will be english."),
120         'user_id': fields.many2one('res.users', 'Salesman', help='The internal user that is in charge of communicating with this partner if any.'),
121         'vat': fields.char('VAT',size=32 ,help="Value Added Tax number. Check the box if the partner is subjected to the VAT. Used by the VAT legal statement."),
122         'bank_ids': fields.one2many('res.partner.bank', 'partner_id', 'Banks'),
123         'website': fields.char('Website',size=64, help="Website of Partner."),
124         'comment': fields.text('Notes'),
125         'address': fields.one2many('res.partner.address', 'partner_id', 'Contacts'),
126         'category_id': fields.many2many('res.partner.category', 'res_partner_category_rel', 'partner_id', 'category_id', 'Categories'),
127         'events': fields.one2many('res.partner.event', 'partner_id', 'Events'),
128         'credit_limit': fields.float(string='Credit Limit'),
129         'ean13': fields.char('EAN13', size=13),
130         'active': fields.boolean('Active'),
131         'customer': fields.boolean('Customer', help="Check this box if the partner is a customer."),
132         'supplier': fields.boolean('Supplier', help="Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order."),
133         'city': fields.related('address', 'city', type='char', string='City'),
134         'function': fields.related('address', 'function', type='char', string='function'),
135         'subname': fields.related('address', 'name', type='char', string='Contact Name'),
136         'phone': fields.related('address', 'phone', type='char', string='Phone'),
137         'mobile': fields.related('address', 'mobile', type='char', string='Mobile'),
138         'country': fields.related('address', 'country_id', type='many2one', relation='res.country', string='Country'),
139         'employee': fields.boolean('Employee', help="Check this box if the partner is an Employee."),
140         'email': fields.related('address', 'email', type='char', size=240, string='E-mail'),
141         'company_id': fields.many2one('res.company', 'Company', select=1),
142         'color': fields.integer('Color Index'),
143     }
144
145     def _default_category(self, cr, uid, context={}):
146         if 'category_id' in context and context['category_id']:
147             return [context['category_id']]
148         return []
149
150     _defaults = {
151         'active': lambda *a: 1,
152         'customer': lambda *a: 1,
153         'address': [{'type': 'default'}],
154         'category_id': _default_category,
155         'company_id': lambda s,cr,uid,c: s.pool.get('res.company')._company_default_get(cr, uid, 'res.partner', context=c),
156         'color': 0,
157     }
158
159     def copy(self, cr, uid, id, default={}, context={}):
160         name = self.read(cr, uid, [id], ['name'])[0]['name']
161         default.update({'name': name+ _(' (copy)'), 'events':[]})
162         return super(res_partner, self).copy(cr, uid, id, default, context)
163
164     def do_share(self, cr, uid, ids, *args):
165         return True
166
167     def _check_ean_key(self, cr, uid, ids, context=None):
168         for partner_o in pooler.get_pool(cr.dbname).get('res.partner').read(cr, uid, ids, ['ean13',]):
169             thisean=partner_o['ean13']
170             if thisean and thisean!='':
171                 if len(thisean)!=13:
172                     return False
173                 sum=0
174                 for i in range(12):
175                     if not (i % 2):
176                         sum+=int(thisean[i])
177                     else:
178                         sum+=3*int(thisean[i])
179                 if math.ceil(sum/10.0)*10-sum!=int(thisean[12]):
180                     return False
181         return True
182
183 #   _constraints = [(_check_ean_key, 'Error: Invalid ean code', ['ean13'])]
184
185     def name_get(self, cr, uid, ids, context={}):
186         if not len(ids):
187             return []
188         if context.get('show_ref', False):
189             rec_name = 'ref'
190         else:
191             rec_name = 'name'
192
193         res = [(r['id'], r[rec_name]) for r in self.read(cr, uid, ids, [rec_name], context)]
194         return res
195
196     def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100):
197         if not args:
198             args=[]
199         if not context:
200             context={}
201         if name:
202             ids = self.search(cr, uid, [('ref', '=', name)] + args, limit=limit, context=context)
203             if not ids:
204                 ids = self.search(cr, uid, [('name', operator, name)] + args, limit=limit, context=context)
205         else:
206             ids = self.search(cr, uid, args, limit=limit, context=context)
207         return self.name_get(cr, uid, ids, context)
208
209     def _email_send(self, cr, uid, ids, email_from, subject, body, on_error=None):
210         partners = self.browse(cr, uid, ids)
211         for partner in partners:
212             if len(partner.address):
213                 if partner.address[0].email:
214                     tools.email_send(email_from, [partner.address[0].email], subject, body, on_error)
215         return True
216
217     def email_send(self, cr, uid, ids, email_from, subject, body, on_error=''):
218         while len(ids):
219             self.pool.get('ir.cron').create(cr, uid, {
220                 'name': 'Send Partner Emails',
221                 'user_id': uid,
222 #               'nextcall': False,
223                 'model': 'res.partner',
224                 'function': '_email_send',
225                 'args': repr([ids[:16], email_from, subject, body, on_error])
226             })
227             ids = ids[16:]
228         return True
229
230     def address_get(self, cr, uid, ids, adr_pref=['default']):
231         address_obj = self.pool.get('res.partner.address')
232         address_ids = address_obj.search(cr, uid, [('partner_id', '=', ids)])
233         address_rec = address_obj.read(cr, uid, address_ids, ['type'])
234         res = list(tuple(addr.values()) for addr in address_rec)
235         adr = dict(res)
236         # get the id of the (first) default address if there is one,
237         # otherwise get the id of the first address in the list
238         if res:
239             default_address = adr.get('default', res[0][1])
240         else:
241             default_address = False
242         result = {}
243         for a in adr_pref:
244             result[a] = adr.get(a, default_address)
245         return result
246
247     def gen_next_ref(self, cr, uid, ids):
248         if len(ids) != 1:
249             return True
250
251         # compute the next number ref
252         cr.execute("select ref from res_partner where ref is not null order by char_length(ref) desc, ref desc limit 1")
253         res = cr.dictfetchall()
254         ref = res and res[0]['ref'] or '0'
255         try:
256             nextref = int(ref)+1
257         except:
258             raise osv.except_osv(_('Warning'), _("Couldn't generate the next id because some partners have an alphabetic id !"))
259
260         # update the current partner
261         cr.execute("update res_partner set ref=%s where id=%s", (nextref, ids[0]))
262         return True
263
264     def view_header_get(self, cr, uid, view_id, view_type, context):
265         res = super(res_partner, self).view_header_get(cr, uid, view_id, view_type, context)
266         if res: return res
267         if (not context.get('category_id', False)):
268             return False
269         return _('Partners: ')+self.pool.get('res.partner.category').browse(cr, uid, context['category_id'], context).name
270     def main_partner(self, cr, uid):
271         ''' Return the id of the main partner
272         '''
273         model_data = self.pool.get('ir.model.data')
274         return model_data.browse(
275             cr, uid,
276             model_data.search(cr, uid, [('module','=','base'),
277                                         ('name','=','main_partner')])[0],
278             ).res_id
279 res_partner()
280
281 class res_partner_address(osv.osv):
282     _description ='Partner Addresses'
283     _name = 'res.partner.address'
284     _order = 'type, name'
285     _columns = {
286         'partner_id': fields.many2one('res.partner', 'Partner Name', ondelete='set null', select=True, help="Keep empty for a private address, not related to partner."),
287         'type': fields.selection( [ ('default','Default'),('invoice','Invoice'), ('delivery','Delivery'), ('contact','Contact'), ('other','Other') ],'Address Type', help="Used to select automatically the right address according to the context in sales and purchases documents."),
288         'function': fields.char('Function', size=64),
289         'title': fields.many2one('res.partner.title','Title'),
290         'name': fields.char('Contact Name', size=64, select=1),
291         'street': fields.char('Street', size=128),
292         'street2': fields.char('Street2', size=128),
293         'zip': fields.char('Zip', change_default=True, size=24),
294         'city': fields.char('City', size=128),
295         'state_id': fields.many2one("res.country.state", 'Fed. State', domain="[('country_id','=',country_id)]"),
296         'country_id': fields.many2one('res.country', 'Country'),
297         'email': fields.char('E-Mail', size=240),
298         'phone': fields.char('Phone', size=64),
299         'fax': fields.char('Fax', size=64),
300         'mobile': fields.char('Mobile', size=64),
301         'birthdate': fields.char('Birthdate', size=64),
302         'is_customer_add': fields.related('partner_id', 'customer', type='boolean', string='Customer'),
303         'is_supplier_add': fields.related('partner_id', 'supplier', type='boolean', string='Supplier'),
304         'active': fields.boolean('Active', help="Uncheck the active field to hide the contact."),
305 #        'company_id': fields.related('partner_id','company_id',type='many2one',relation='res.company',string='Company', store=True),
306         'company_id': fields.many2one('res.company', 'Company',select=1),
307         'color': fields.integer('Color Index'),
308     }
309     _defaults = {
310         'active': lambda *a: 1,
311         'company_id': lambda s,cr,uid,c: s.pool.get('res.company')._company_default_get(cr, uid, 'res.partner.address', context=c),
312     }
313
314     def name_get(self, cr, user, ids, context={}):
315         if not len(ids):
316             return []
317         res = []
318         for r in self.read(cr, user, ids, ['name','zip','country_id', 'city','partner_id', 'street']):
319             if context.get('contact_display', 'contact')=='partner' and r['partner_id']:
320                 res.append((r['id'], r['partner_id'][1]))
321             else:
322                 # make a comma-separated list with the following non-empty elements
323                 elems = [r['name'], r['country_id'] and r['country_id'][1], r['city'], r['street']]
324                 addr = ', '.join(filter(bool, elems))
325                 if (context.get('contact_display', 'contact')=='partner_address') and r['partner_id']:
326                     res.append((r['id'], "%s: %s" % (r['partner_id'][1], addr or '/')))
327                 else:
328                     res.append((r['id'], addr or '/'))
329         return res
330
331     def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=100):
332         if not args:
333             args=[]
334         if not context:
335             context={}
336         if context.get('contact_display', 'contact')=='partner ' or context.get('contact_display', 'contact')=='partner_address '  :
337             ids = self.search(cr, user, [('partner_id',operator,name)], limit=limit, context=context)
338         else:
339             if not name:
340                 ids = self.search(cr, user, args, limit=limit, context=context)
341             else:
342                 ids = self.search(cr, user, [('zip','=',name)] + args, limit=limit, context=context)
343             if not ids:
344                 ids = self.search(cr, user, [('city',operator,name)] + args, limit=limit, context=context)
345             if name:
346                 ids += self.search(cr, user, [('name',operator,name)] + args, limit=limit, context=context)
347                 ids += self.search(cr, user, [('partner_id',operator,name)] + args, limit=limit, context=context)
348         return self.name_get(cr, user, ids, context=context)
349
350     def get_city(self, cr, uid, id):
351         return self.browse(cr, uid, id).city
352
353 res_partner_address()
354
355 class res_partner_category(osv.osv):
356     _inherit = 'res.partner.category'
357     _columns = {
358         'partner_ids': fields.many2many('res.partner', 'res_partner_category_rel', 'category_id', 'partner_id', 'Partners'),
359     }
360
361 res_partner_category()
362
363 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
364