modify res.partner.bank object
[odoo/odoo.git] / bin / addons / base / res / partner / partner.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved.
5 #
6 # $Id$
7 #
8 # WARNING: This program as such is intended to be used by professional
9 # programmers who take the whole responsability of assessing all potential
10 # consequences resulting from its eventual inadequacies and bugs
11 # End users who are looking for a ready-to-use solution with commercial
12 # garantees and support are strongly adviced to contract a Free Software
13 # Service Company
14 #
15 # This program is Free Software; you can redistribute it and/or
16 # modify it under the terms of the GNU General Public License
17 # as published by the Free Software Foundation; either version 2
18 # of the License, or (at your option) any later version.
19 #
20 # This program is distributed in the hope that it will be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 # GNU General Public License for more details.
24 #
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28 #
29 ##############################################################################
30
31 import math
32
33 from osv import fields,osv
34 import tools
35 import ir
36 import pooler
37
38 class res_partner_function(osv.osv):
39     _name = 'res.partner.function'
40     _description = 'Function of the contact'
41     _columns = {
42         'name': fields.char('Function name', size=64, required=True),
43         'code': fields.char('Code', size=8),
44     }
45     _order = 'name'
46 res_partner_function()
47
48
49 class res_payterm(osv.osv):
50     _description = 'Payment term'
51     _name = 'res.payterm'
52     _columns = {
53         'name': fields.char('Payment term (short name)', size=64),
54     }
55 res_payterm()
56
57 class res_partner_category(osv.osv):
58     def name_get(self, cr, uid, ids, context={}):
59         if not len(ids):
60             return []
61         reads = self.read(cr, uid, ids, ['name','parent_id'], context)
62         res = []
63         for record in reads:
64             name = record['name']
65             if record['parent_id']:
66                 name = record['parent_id'][1]+' / '+name
67             res.append((record['id'], name))
68         return res
69
70     def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, unknow_dict):
71         res = self.name_get(cr, uid, ids)
72         return dict(res)
73     def _check_recursion(self, cr, uid, ids):
74         level = 100
75         while len(ids):
76             cr.execute('select distinct parent_id from res_partner_category where id in ('+','.join(map(str,ids))+')')
77             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
78             if not level:
79                 return False
80             level -= 1
81         return True
82
83     _description='Partner Categories'
84     _name = 'res.partner.category'
85     _columns = {
86         'name': fields.char('Category Name', required=True, size=64, translate=True),
87         'parent_id': fields.many2one('res.partner.category', 'Parent Category', select=True),
88         'complete_name': fields.function(_name_get_fnc, method=True, type="char", string='Name'),
89         'child_ids': fields.one2many('res.partner.category', 'parent_id', 'Childs Category'),
90         'active' : fields.boolean('Active', help="The active field allows you to hide the category, without removing it."),
91     }
92     _constraints = [
93         (_check_recursion, 'Error ! You can not create recursive categories.', ['parent_id'])
94     ]
95     _defaults = {
96         'active' : lambda *a: 1,
97     }
98     _order = 'parent_id,name'
99 res_partner_category()
100
101 class res_partner_title(osv.osv):
102     _name = 'res.partner.title'
103     _columns = {
104         'name': fields.char('Title', required=True, size=46, translate=True),
105         'shortcut': fields.char('Shortcut', required=True, size=16),
106         'domain': fields.selection([('partner','Partner'),('contact','Contact')], 'Domain', required=True, size=24)
107     }
108     _order = 'name'
109 res_partner_title()
110
111 def _contact_title_get(self, cr, uid, context={}):
112     obj = self.pool.get('res.partner.title')
113     ids = obj.search(cr, uid, [('domain', '=', 'contact')])
114     res = obj.read(cr, uid, ids, ['shortcut','name'], context)
115     return [(r['shortcut'], r['name']) for r in res]
116
117 def _partner_title_get(self, cr, uid, context={}):
118     obj = self.pool.get('res.partner.title')
119     ids = obj.search(cr, uid, [('domain', '=', 'partner')])
120     res = obj.read(cr, uid, ids, ['shortcut','name'], context)
121     return [(r['shortcut'], r['name']) for r in res]
122
123 def _lang_get(self, cr, uid, context={}):
124     obj = self.pool.get('res.lang')
125     ids = obj.search(cr, uid, [], context=context)
126     res = obj.read(cr, uid, ids, ['code', 'name'], context)
127     return [(r['code'], r['name']) for r in res]
128
129
130 class res_partner(osv.osv):
131     _description='Partner'
132     _name = "res.partner"
133     _order = "name"
134     _columns = {
135         'name': fields.char('Name', size=128, required=True, select=True),
136         'date': fields.date('Date', select=1),
137         'title': fields.selection(_partner_title_get, 'Title', size=32),
138         'parent_id': fields.many2one('res.partner','Main Company', select=2),
139         'child_ids': fields.one2many('res.partner', 'parent_id', 'Partner Ref.'),
140         'ref': fields.char('Code', size=64),
141         'lang': fields.selection(_lang_get, 'Language', size=5, 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."),
142         'user_id': fields.many2one('res.users', 'Dedicated Salesman', help='The internal user that is in charge of communicating with this partner if any.'),
143         'responsible': fields.many2one('res.users', 'Users'),
144         'vat': fields.char('VAT',size=32 ,help="Value Added Tax number"),
145         'bank_ids': fields.one2many('res.partner.bank', 'partner_id', 'Banks'),
146         'website': fields.char('Website',size=64),
147         'comment': fields.text('Notes'),
148         'address': fields.one2many('res.partner.address', 'partner_id', 'Contacts'),
149         'category_id': fields.many2many('res.partner.category', 'res_partner_category_rel', 'partner_id', 'category_id', 'Categories'),
150         'events': fields.one2many('res.partner.event', 'partner_id', 'Events'),
151         'credit_limit': fields.float(string='Credit Limit'),
152         'ean13': fields.char('EAN13', size=13),
153         'active': fields.boolean('Active'),
154         'customer': fields.boolean('Customer', help="Check this box if the partner if a customer."),
155         'supplier': fields.boolean('Supplier', help="Check this box if the partner if a supplier. If it's not checked, purchase people will not see it when encoding a purchase order."),
156         'city':fields.related('address','city',type='char', string='City'),
157         'country':fields.related('address','country_id',type='many2one', relation='res.country', string='Country'),
158     }
159     _defaults = {
160         'active': lambda *a: 1,
161         'customer': lambda *a: 1,
162     }
163     _sql_constraints = [
164         ('name_uniq', 'unique (name)', 'The name of the partner must be unique !')
165     ]
166
167     def copy(self, cr, uid, id, default=None, context={}):
168         name = self.read(cr, uid, [id], ['name'])[0]['name']
169         default.update({'name': name+' (copy)'})
170         return super(res_partner, self).copy(cr, uid, id, default, context)
171
172     def _check_ean_key(self, cr, uid, ids):
173         for partner_o in pooler.get_pool(cr.dbname).get('res.partner').read(cr, uid, ids, ['ean13',]):
174             thisean=partner_o['ean13']
175             if thisean and thisean!='':
176                 if len(thisean)!=13:
177                     return False
178                 sum=0
179                 for i in range(12):
180                     if not (i % 2):
181                         sum+=int(thisean[i])
182                     else:
183                         sum+=3*int(thisean[i])
184                 if math.ceil(sum/10.0)*10-sum!=int(thisean[12]):
185                     return False
186         return True
187
188 #   _constraints = [(_check_ean_key, 'Error: Invalid ean code', ['ean13'])]
189
190     def name_get(self, cr, uid, ids, context={}):
191         if not len(ids):
192             return []
193         if context.get('show_ref', False):
194             rec_name = 'ref'
195         else:
196             rec_name = 'name'
197
198         res = [(r['id'], r[rec_name]) for r in self.read(cr, uid, ids, [rec_name], context)]
199         return res
200
201     def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=80):
202         if not args:
203             args=[]
204         if not context:
205             context={}
206         if name:
207             ids = self.search(cr, uid, [('ref', '=', name)] + args, limit=limit, context=context)
208             if not ids:
209                 ids = self.search(cr, uid, [('name', operator, name)] + args, limit=limit, context=context)
210         else:
211             ids = self.search(cr, uid, args, limit=limit, context=context)
212         return self.name_get(cr, uid, ids, context)
213
214     def _email_send(self, cr, uid, ids, email_from, subject, body, on_error=None):
215         partners = self.browse(cr, uid, ids)
216         for partner in partners:
217             if len(partner.address):
218                 if partner.address[0].email:
219                     tools.email_send(email_from, [partner.address[0].email], subject, body, on_error)
220         return True
221
222     def email_send(self, cr, uid, ids, email_from, subject, body, on_error=''):
223         while len(ids):
224             self.pool.get('ir.cron').create(cr, uid, {
225                 'name': 'Send Partner Emails',
226                 'user_id': uid,
227 #               'nextcall': False,
228                 'model': 'res.partner',
229                 'function': '_email_send',
230                 'args': repr([ids[:16], email_from, subject, body, on_error])
231             })
232             ids = ids[16:]
233         return True
234
235     def address_get(self, cr, uid, ids, adr_pref=['default']):
236         cr.execute('select type,id from res_partner_address where partner_id in ('+','.join(map(str,ids))+')')
237         res = cr.fetchall()
238         adr = dict(res)
239         # get the id of the (first) default address if there is one,
240         # otherwise get the id of the first address in the list
241         if res:
242             default_address = adr.get('default', res[0][1])
243         else:
244             default_address = False
245         result = {}
246         for a in adr_pref:
247             result[a] = adr.get(a, default_address)
248         return result
249
250     def property_get(self, cr, uid, ids,property_pref=[]):
251         select = ids
252         if isinstance(ids, (int, long)):
253             select = [ids]
254         result=self.read(cr,uid,select,property_pref)
255         for res in result:
256             for prt in property_pref:
257                 res[prt] = res[prt] and res[prt][0] or False
258         if isinstance(ids, (int, long)):
259             return result[0]
260         return result
261
262     def gen_next_ref(self, cr, uid, ids):
263         if len(ids) != 1:
264             return True
265
266         # compute the next number ref
267         cr.execute("select ref from res_partner where ref is not null order by char_length(ref) desc, ref desc limit 1")
268         res = cr.dictfetchall()
269         ref = res and res[0]['ref'] or '0'
270         try:
271             nextref = int(ref)+1
272         except e:
273             raise osv.except_osv(_('Warning'), _("Couldn't generate the next id because some partners have an alphabetic id !"))
274
275         # update the current partner
276         cr.execute("update res_partner set ref=%d where id=%d", (nextref, ids[0]))
277         return True
278
279     def view_header_get(self, cr, uid, view_id, view_type, context):
280         res = super(res_partner, self).view_header_get(cr, uid, view_id, view_type, context)
281         if res: return res
282         if (not context.get('category_id', False)):
283             return False
284         return _('Partners: ')+self.pool.get('res.partner.category').browse(cr, uid, context['category_id'], context).name
285
286 res_partner()
287
288 class res_partner_address(osv.osv):
289     _description ='Partner Addresses'
290     _name = 'res.partner.address'
291     _order = 'id'
292     _columns = {
293         'partner_id': fields.many2one('res.partner', 'Partner', ondelete='cascade', select=True),
294         '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."),
295         'function': fields.many2one('res.partner.function', 'Function'),
296         'title': fields.selection(_contact_title_get, 'Title', size=32),
297         'name': fields.char('Contact Name', size=64),
298         'street': fields.char('Street', size=128),
299         'street2': fields.char('Street2', size=128),
300         'zip': fields.char('Zip', change_default=True, size=24),
301         'city': fields.char('City', size=128),
302         'state_id': fields.many2one("res.country.state", 'State', change_default=True, domain="[('country_id','=',country_id)]"),
303         'country_id': fields.many2one('res.country', 'Country', change_default=True),
304         'email': fields.char('E-Mail', size=240),
305         'phone': fields.char('Phone', size=64),
306         'fax': fields.char('Fax', size=64),
307         'mobile': fields.char('Mobile', size=64),
308         'birthdate': fields.char('Birthdate', size=64),
309         'active': fields.boolean('Active', help="Uncheck the active field to hide the contact."),
310     }
311     _defaults = {
312         'active': lambda *a: 1,
313     }
314
315     def name_get(self, cr, user, ids, context={}):
316         if not len(ids):
317             return []
318         res = []
319         for r in self.read(cr, user, ids, ['name','zip','city','partner_id', 'street']):
320             if context.get('contact_display', 'contact')=='partner':
321                 res.append((r['id'], r['partner_id'][1]))
322             else:
323                 addr = str(r['name'] or '')
324                 if r['name'] and (r['zip'] or r['city']):
325                     addr += ', '
326                 addr += str(r['street'] or '') + ' ' + str(r['zip'] or '') + ' ' + str(r['city'] or '')
327                 res.append((r['id'], addr.strip() or '/'))
328         return res
329
330     def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=80):
331         if not args:
332             args=[]
333         if not context:
334             context={}
335         if context.get('contact_display', 'contact')=='partner':
336             ids = self.search(cr, user, [('partner_id',operator,name)], limit=limit, context=context)
337         else:
338             ids = self.search(cr, user, [('zip','=',name)] + args, limit=limit, context=context)
339             if not ids:
340                 ids = self.search(cr, user, [('city',operator,name)] + args, limit=limit, context=context)
341             if name:
342                 ids += self.search(cr, user, [('name',operator,name)] + args, limit=limit, context=context)
343                 ids += self.search(cr, user, [('partner_id',operator,name)] + args, limit=limit, context=context)
344         return self.name_get(cr, user, ids, context=context)
345 res_partner_address()
346
347 class res_partner_bank_type(osv.osv):
348     _description='Bank Account Type'
349     _name = 'res.partner.bank.type'
350     _columns = {
351         'name': fields.char('Name', size=64, required=True),
352         'code': fields.char('Code', size=64, required=True),
353         'field_ids': fields.one2many('res.partner.bank.type.field', 'bank_type_id', 'Type fields'),
354     }
355 res_partner_bank_type()
356
357 class res_partner_bank_type_fields(osv.osv):
358     _description='Bank type fields'
359     _name = 'res.partner.bank.type.field'
360     _columns = {
361         'name': fields.char('Field name', size=64, required=True),
362         'bank_type_id': fields.many2one('res.partner.bank.type', 'Bank type', required=True, ondelete='cascade'),
363         'required': fields.boolean('Required'),
364         'readonly': fields.boolean('Readonly'),
365         'size': fields.integer('Max. Size'),
366     }
367 res_partner_bank_type_fields()
368
369
370 class res_partner_bank(osv.osv):
371     '''Bank Accounts'''
372     _name = "res.partner.bank"
373     _rec_name = "acc_number"
374     _description = __doc__
375     _order = 'sequence'
376
377     def _bank_type_get(self, cr, uid, context=None):
378         bank_type_obj = self.pool.get('res.partner.bank.type')
379
380         result = []
381         type_ids = bank_type_obj.search(cr, uid, [])
382         bank_types = bank_type_obj.browse(cr, uid, type_ids)
383         for bank_type in bank_types:
384             result.append((bank_type.code, bank_type.name))
385         return result
386
387     def _default_value(self, cursor, user, field, context=None):
388         if field in ('country_id', 'state_id'):
389             value = False
390         else:
391             value = ''
392         if not context.get('address', False):
393             return value
394         for ham, spam, address in context['address']:
395             if address.get('type', False) == 'default':
396                 return address.get(field, value)
397             elif not address.get('type', False):
398                 value = address.get(field, value)
399         return value
400
401     _columns = {
402         'name': fields.char('Description', size=128),
403         'acc_number': fields.char('Account number', size=64, required=False),
404         'bank': fields.many2one('res.bank', 'Bank'),
405         'owner_name': fields.char('Account owner', size=64),
406         'street': fields.char('Street', size=128),
407         'zip': fields.char('Zip', change_default=True, size=24),
408         'city': fields.char('City', size=128),
409         'country_id': fields.many2one('res.country', 'Country',
410             change_default=True),
411         'state_id': fields.many2one("res.country.state", 'State',
412             change_default=True, domain="[('country_id','=',country_id)]"),
413         'partner_id': fields.many2one('res.partner', 'Partner', required=True,
414             ondelete='cascade', select=True),
415         'state': fields.selection(_bank_type_get, 'Bank type', required=True,
416             change_default=True),
417         'sequence': fields.integer('Sequence'),
418         'state_id': fields.many2one('res.country.state', 'State',
419             domain="[('country_id', '=', country_id)]"),
420     }
421     _defaults = {
422         'owner_name': lambda obj, cursor, user, context: obj._default_value(
423             cursor, user, 'name', context=context),
424         'street': lambda obj, cursor, user, context: obj._default_value(
425             cursor, user, 'street', context=context),
426         'city': lambda obj, cursor, user, context: obj._default_value(
427             cursor, user, 'city', context=context),
428         'zip': lambda obj, cursor, user, context: obj._default_value(
429             cursor, user, 'zip', context=context),
430         'country_id': lambda obj, cursor, user, context: obj._default_value(
431             cursor, user, 'country_id', context=context),
432         'state_id': lambda obj, cursor, user, context: obj._default_value(
433             cursor, user, 'state_id', context=context),
434     }
435
436     def fields_get(self, cr, uid, fields=None, context=None):
437         res = super(res_partner_bank, self).fields_get(cr, uid, fields, context)
438         bank_type_obj = self.pool.get('res.partner.bank.type')
439         type_ids = bank_type_obj.search(cr, uid, [])
440         types = bank_type_obj.browse(cr, uid, type_ids)
441         for type in types:
442             for field in type.field_ids:
443                 if field.name in res:
444                     res[field.name].setdefault('states', {})
445                     res[field.name]['states'][type.code] = [
446                             ('readonly', field.readonly),
447                             ('required', field.required)]
448         return res
449
450     def name_get(self, cr, uid, ids, context=None):
451         if not len(ids):
452             return []
453         res = []
454         for id in self.browse(cr, uid, ids):
455             res.append((id.id,id.acc_number))
456         return res
457
458 res_partner_bank()
459
460
461
462 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
463