Bugfix
[odoo/odoo.git] / bin / addons / base / res / partner / partner.py
1 ##############################################################################
2 #
3 # Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
4 #
5 # $Id: partner.py 1007 2005-07-25 13:18:09Z kayhman $
6 #
7 # WARNING: This program as such is intended to be used by professional
8 # programmers who take the whole responsability of assessing all potential
9 # consequences resulting from its eventual inadequacies and bugs
10 # End users who are looking for a ready-to-use solution with commercial
11 # garantees and support are strongly adviced to contract a Free Software
12 # Service Company
13 #
14 # This program is Free Software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License
16 # as published by the Free Software Foundation; either version 2
17 # of the License, or (at your option) any later version.
18 #
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 # GNU General Public License for more details.
23 #
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27 #
28 ##############################################################################
29
30 import math
31
32 from osv import fields,osv
33 import tools
34 import ir
35 import pooler
36
37 class res_partner_function(osv.osv):
38         _name = 'res.partner.function'
39         _description = 'Function of the contact'
40         _columns = {
41                 'name': fields.char('Function name', size=64, required=True),
42                 'code': fields.char('Code', size=8),
43         }
44         _order = 'name'
45 res_partner_function()
46
47
48 class res_payterm(osv.osv):
49         _description = 'Payment term'
50         _name = 'res.payterm'
51         _columns = {
52                 'name': fields.char('Payment term (short name)', size=64),
53         }
54 res_payterm()
55
56 class res_partner_category(osv.osv):
57         def name_get(self, cr, uid, ids, context={}):
58                 if not len(ids):
59                         return []
60                 reads = self.read(cr, uid, ids, ['name','parent_id'], context)
61                 res = []
62                 for record in reads:
63                         name = record['name']
64                         if record['parent_id']:
65                                 name = record['parent_id'][1]+' / '+name
66                         res.append((record['id'], name))
67                 return res
68
69         def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, unknow_dict):
70                 res = self.name_get(cr, uid, ids)
71                 return dict(res)
72         def _check_recursion(self, cr, uid, ids):
73                 level = 100
74                 while len(ids):
75                         cr.execute('select distinct parent_id from res_partner_category where id in ('+','.join(map(str,ids))+')')
76                         ids = filter(None, map(lambda x:x[0], cr.fetchall()))
77                         if not level:
78                                 return False
79                         level -= 1
80                 return True
81
82         _description='Partner Categories'
83         _name = 'res.partner.category'
84         _columns = {
85                 'name': fields.char('Category Name', required=True, size=64),
86                 'parent_id': fields.many2one('res.partner.category', 'Parent Category', select=True),
87                 'complete_name': fields.function(_name_get_fnc, method=True, type="char", string='Name'),
88                 'child_ids': fields.one2many('res.partner.category', 'parent_id', 'Childs Category'),
89                 'active' : fields.boolean('Active'),
90         }
91         _constraints = [
92                 (_check_recursion, 'Error ! You can not create recursive categories.', ['parent_id'])
93         ]
94         _defaults = {
95                 'active' : lambda *a: 1,
96         }
97         _order = 'parent_id,name'
98 res_partner_category()
99
100 class res_partner_title(osv.osv):
101         _name = 'res.partner.title'
102         _columns = {
103                 'name': fields.char('Title', required=True, size=46, translate=True),
104                 'shortcut': fields.char('Shortcut', required=True, size=16),
105                 'domain': fields.selection([('partner','Partner'),('contact','Contact')], 'Domain', required=True, size=24)
106         }
107         _order = 'name'
108 res_partner_title()
109
110 def _contact_title_get(self, cr, uid, context={}):
111         obj = self.pool.get('res.partner.title')
112         ids = obj.search(cr, uid, [('domain', '=', 'contact')])
113         res = obj.read(cr, uid, ids, ['shortcut','name'], context)
114         return [(r['shortcut'], r['name']) for r in res]
115
116 def _partner_title_get(self, cr, uid, context={}):
117         obj = self.pool.get('res.partner.title')
118         ids = obj.search(cr, uid, [('domain', '=', 'partner')])
119         res = obj.read(cr, uid, ids, ['shortcut','name'], context)
120         return [(r['shortcut'], r['name']) for r in res]
121
122 def _lang_get(self, cr, uid, context={}):
123         obj = self.pool.get('res.lang')
124         ids = obj.search(cr, uid, [])
125         res = obj.read(cr, uid, ids, ['code', 'name'], context)
126         res = [(r['code'], r['name']) for r in res]
127         return res + [(False, '')]
128
129 class res_partner(osv.osv):
130         _description='Partner'
131         _name = "res.partner"
132         _order = "name"
133         _columns = {
134                 'name': fields.char('Name', size=128, required=True, select=True),
135                 'date': fields.date('Date'),
136                 'title': fields.selection(_partner_title_get, 'Title', size=32),
137                 'parent_id': fields.many2one('res.partner','Main Company', select=2),
138                 'child_ids': fields.one2many('res.partner', 'parent_id', 'Partner Ref.'),
139                 'ref': fields.char('Code', size=64),
140                 'lang': fields.selection(_lang_get, 'Language', size=5),
141                 'user_id': fields.many2one('res.users', 'Salesman'),
142                 'sales': fields.one2many('sale.order', 'partner_id', 'Sales'),
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         }
155         _defaults = {
156                 'active': lambda *a: 1,
157         }
158         _sql_constraints = [
159                 ('name_uniq', 'unique (name)', 'The name of the partner must be unique !')
160         ]
161
162         def copy(self, cr, uid, id, default=None, context={}):
163                 name = self.read(cr, uid, [id], ['name'])[0]['name']
164                 default.update({'name': name+' (copy)'})
165                 return super(res_partner, self).copy(cr, uid, id, default, context)
166         
167         def _check_ean_key(self, cr, uid, ids):
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=80):
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                 cr.execute('select type,id from res_partner_address where partner_id in ('+','.join(map(str,ids))+')')
232                 res = cr.fetchall()
233                 adr = dict(res)
234                 # get the id of the (first) default address if there is one, 
235                 # otherwise get the id of the first address in the list
236                 if res:
237                         default_address = adr.get('default', res[0][1])
238                 else:
239                         default_address = False
240                 result = {}
241                 for a in adr_pref:
242                         result[a] = adr.get(a, default_address)
243                 return result
244         
245         def gen_next_ref(self, cr, uid, ids):
246                 if len(ids) != 1:
247                         return True
248                         
249                 # compute the next number ref
250                 cr.execute("select ref from res_partner where ref is not null order by char_length(ref) desc, ref desc limit 1")
251                 res = cr.dictfetchall()
252                 ref = res and res[0]['ref'] or '0'
253                 try:
254                         nextref = int(ref)+1
255                 except e:
256                         raise osv.except_osv('Warning', "Couldn't generate the next id because some partners have an alphabetic id !")
257
258                 # update the current partner
259                 cr.execute("update res_partner set ref=%d where id=%d", (nextref, ids[0]))
260                 return True
261 res_partner()
262
263 class res_partner_address(osv.osv):
264         _description ='Partner Contact'
265         _name = 'res.partner.address'
266         _order = 'id'
267         _columns = {
268                 'partner_id': fields.many2one('res.partner', 'Partner', required=True, ondelete='cascade', select=True),
269                 'type': fields.selection( [ ('default','Default'),('invoice','Invoice'), ('delivery','Delivery'), ('contact','Contact'), ('other','Other') ],'Address Type'),
270                 'function': fields.many2one('res.partner.function', 'Function'),
271                 'title': fields.selection(_contact_title_get, 'Title', size=32),
272                 'name': fields.char('Contact Name', size=64),
273                 'street': fields.char('Street', size=128),
274                 'street2': fields.char('Street2', size=128),
275                 'zip': fields.char('Zip', change_default=True, size=24),
276                 'city': fields.char('City', size=128),
277                 'state_id': fields.many2one("res.country.state", 'State', change_default=True, domain="[('country_id','=',country_id)]"),
278                 'country_id': fields.many2one('res.country', 'Country', change_default=True),
279                 'email': fields.char('E-Mail', size=64),
280                 'phone': fields.char('Phone', size=64),
281                 'fax': fields.char('Fax', size=64),
282                 'mobile': fields.char('Mobile', size=64),
283                 'birthdate': fields.char('Birthdate', size=64),
284                 'active': fields.boolean('Active'),
285         }
286         _defaults = {
287                 'active': lambda *a: 1,
288         }
289
290         def name_get(self, cr, user, ids, context={}):
291                 if not len(ids):
292                         return []
293                 res = []
294                 for r in self.read(cr, user, ids, ['name','zip','city','partner_id', 'street']):
295                         if context.get('contact_display', 'contact')=='partner':
296                                 res.append((r['id'], r['partner_id'][1]))
297                         else:
298                                 addr = str(r['name'] or '')
299                                 if r['name'] and (r['zip'] or r['city']):
300                                         addr += ', '
301                                 addr += str(r['street'] or '') + ' ' + str(r['zip'] or '') + ' ' + str(r['city'] or '')
302                                 res.append((r['id'], addr.strip() or '/'))
303                 return res
304
305         def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=80):
306                 if not args:
307                         args=[]
308                 if not context:
309                         context={}
310                 if context.get('contact_display', 'contact')=='partner':
311                         ids = self.search(cr, user, [('partner_id',operator,name)], limit=limit, context=context)
312                 else:
313                         ids = self.search(cr, user, [('zip','=',name)] + args, limit=limit, context=context)
314                         if not ids: 
315                                 ids = self.search(cr, user, [('city',operator,name)] + args, limit=limit, context=context)
316                         if name:
317                                 ids += self.search(cr, user, [('name',operator,name)] + args, limit=limit, context=context)
318                                 ids += self.search(cr, user, [('partner_id',operator,name)] + args, limit=limit, context=context)
319                 return self.name_get(cr, user, ids, context=context)
320 res_partner_address()
321
322 class res_partner_bank_type(osv.osv):
323         _description='Bank Account Type'
324         _name = 'res.partner.bank.type'
325         _columns = {
326                 'name': fields.char('Name', size=64, required=True),
327                 'code': fields.char('Code', size=64, required=True),
328                 'field_ids': fields.one2many('res.partner.bank.type.field', 'bank_type_id', 'Type fields'),
329         }
330 res_partner_bank_type()
331
332 class res_partner_bank_type_fields(osv.osv):
333         _description='Bank type fields'
334         _name = 'res.partner.bank.type.field'
335         _columns = {
336                 'name': fields.char('Field name', size=64, required=True),
337                 'bank_type_id': fields.many2one('res.partner.bank.type', 'Bank type', required=True, ondelete='cascade'),
338                 'required': fields.boolean('Required'),
339                 'readonly': fields.boolean('Readonly'),
340                 'size': fields.integer('Max. Size'),
341         }
342 res_partner_bank_type_fields()
343
344
345 class res_partner_bank(osv.osv):
346         _description='Bank Details'
347         _name = "res.partner.bank"
348         _rec_name = "state"
349         def _bank_type_get(self, cr, uid, *args):
350                 result = []
351                 type_ids = self.pool.get('res.partner.bank.type').search(cr, uid, [])
352                 res = self.pool.get('res.partner.bank.type').read(cr, uid, type_ids, ['code','name'])
353                 for r in res:
354                         result.append((r['code'], r['name']))
355                 return result
356
357         _columns = {
358                 'name': fields.char('Description', size=128),
359                 'acc_number': fields.char('Account number', size=64, required=False),
360                 'bank': fields.many2one('res.bank', 'Bank'),
361                 'owner_name': fields.char('Account owner', size=64),
362                 'street': fields.char('Street', size=128),
363                 'zip': fields.char('Zip', change_default=True, size=24),
364                 'city': fields.char('City', size=128),
365                 'country_id': fields.many2one('res.country', 'Country', change_default=True),
366                 'state_id': fields.many2one("res.country.state", 'State', change_default=True, domain="[('country_id','=',country_id)]"),
367                 'partner_id': fields.many2one('res.partner', 'Partner', required=True, ondelete='cascade', select=True),
368                 'state': fields.selection(_bank_type_get, 'Bank type', required=True, change_default=True),
369         }
370         def fields_get(self, cr, uid, fields=None, context=None):
371                 res = super(res_partner_bank, self).fields_get(cr, uid, fields, context)
372                 type_ids = self.pool.get('res.partner.bank.type').search(cr, uid, [])
373                 types = self.pool.get('res.partner.bank.type').browse(cr, uid, type_ids)
374                 for t in types:
375                         for f in t.field_ids:
376                                 if f.name in res:
377                                         res[f.name].setdefault('states',{})
378                                         res[f.name]['states'][t.code] = [('readonly',f.readonly),('required',f.required)]
379                 return res
380
381         def name_get(self, cr, uid, ids, context={}):
382                 if not len(ids):
383                         return []
384                 return [(r['id'], (r[self._rec_name] or '') + (r['owner_name'] and \
385                                 (' ' + r['owner_name']) or '')) for r in self.read(cr, uid, ids,
386                                         [self._rec_name, 'owner_name'], context,
387                                         load='_classic_write')]
388
389 res_partner_bank()
390
391
392 # vim:noexpandtab: