base,sale: move sales (one2many) on partner to the right module!
[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('Name', size=64, required=True),
42                 'code': fields.char('Code', size=8),
43         }
44         _order = 'name'
45 res_partner_function()
46
47 class res_country(osv.osv):
48         _name = 'res.country'
49         _description = 'Country'
50         _columns = {
51                 'name': fields.char('Country Name', size=64, help='The full name of the country.'),
52                 'code': fields.char('Country Code', size=2, help='The ISO country code in two chars. You can use this field for quick search.'),
53         }
54         _sql_constraints = [
55                 ('name_uniq', 'unique (name)', 'The name of the country must be unique !'),
56                 ('code_uniq', 'unique (code)', 'The code of the country must be unique !')
57         ]
58         def name_search(self, cr, user, name='', args=None, operator='ilike', context=None, limit=80):
59                 if not args:
60                         args=[]
61                 if not context:
62                         context={}
63                 ids = self.search(cr, user, [('code','=',name)]+ args, limit=limit, context=context)
64                 if not ids:
65                         ids = self.search(cr, user, [('name',operator,name)]+ args, limit=limit, context=context)
66                 return self.name_get(cr, user, ids, context)
67         _order='code'
68 res_country()
69
70 class res_country_state(osv.osv):
71         _description="Country state"
72         _name = 'res.country.state'
73         _columns = {
74                 'country_id': fields.many2one('res.country', 'Country'),
75                 'name': fields.char('State Name', size=64),
76                 'code': fields.char('State Code', size=3),
77         }
78         _order = 'code'
79 res_country_state()
80
81 class res_payterm(osv.osv):
82         _description = 'Payment term'
83         _name = 'res.payterm'
84         _columns = {
85                 'name': fields.char('Payment term (short name)', size=64),
86         }
87 res_payterm()
88
89 class res_partner_category_type(osv.osv):
90         _description='Partner category types'
91         _name = 'res.partner.category.type'
92         _columns = {
93                 'name': fields.char('Category Name', required=True, size=64),
94         }
95         _order = 'name'
96 res_partner_category_type()
97
98 def _cat_type_get(self, cr, uid, context={}):
99         obj = self.pool.get('res.partner.category.type')
100         ids = obj.search(cr, uid, [])
101         res = obj.read(cr, uid, ids, ['name'], context)
102         return [(r['name'], r['name']) for r in res]
103
104 class res_partner_category(osv.osv):
105         def name_get(self, cr, uid, ids, context={}):
106                 if not len(ids):
107                         return []
108                 reads = self.read(cr, uid, ids, ['name','parent_id'], context)
109                 res = []
110                 for record in reads:
111                         name = record['name']
112                         if record['parent_id']:
113                                 name = record['parent_id'][1]+' / '+name
114                         res.append((record['id'], name))
115                 return res
116
117         def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, unknow_dict):
118                 res = self.name_get(cr, uid, ids)
119                 return dict(res)
120         def _check_recursion(self, cr, uid, ids):
121                 level = 100
122                 while len(ids):
123                         cr.execute('select distinct parent_id from res_partner_category where id in ('+','.join(map(str,ids))+')')
124                         ids = filter(None, map(lambda x:x[0], cr.fetchall()))
125                         if not level:
126                                 return False
127                         level -= 1
128                 return True
129
130         _description='Partner Categories'
131         _name = 'res.partner.category'
132         _columns = {
133                 'name': fields.char('Category Name', required=True, size=64),
134                 'type_id': fields.many2one('res.partner.category.type', 'Category Type'),
135                 'parent_id': fields.many2one('res.partner.category', 'Parent Category', select=True),
136                 'complete_name': fields.function(_name_get_fnc, method=True, type="char", string='Name'),
137                 'child_ids': fields.one2many('res.partner.category', 'parent_id', 'Childs Category'),
138                 'active' : fields.boolean('Active'),
139         }
140         _constraints = [
141                 (_check_recursion, 'Error ! You can not create recursive categories.', ['parent_id'])
142         ]
143         _defaults = {
144                 'active' : lambda *a: 1,
145         }
146         _order = 'parent_id,name'
147 res_partner_category()
148
149 class res_partner_title(osv.osv):
150         _name = 'res.partner.title'
151         _columns = {
152                 'name': fields.char('Title', required=True, size=46, translate=True),
153                 'shortcut': fields.char('Shortcut', required=True, size=16),
154                 'domain': fields.selection([('partner','Partner'),('contact','Contact')], 'Domain', required=True, size=24)
155         }
156         _order = 'name'
157 res_partner_title()
158
159 def _contact_title_get(self, cr, uid, context={}):
160         obj = self.pool.get('res.partner.title')
161         ids = obj.search(cr, uid, [('domain', '=', 'contact')])
162         res = obj.read(cr, uid, ids, ['shortcut','name'], context)
163         return [(r['shortcut'], r['name']) for r in res]
164
165 def _partner_title_get(self, cr, uid, context={}):
166         obj = self.pool.get('res.partner.title')
167         ids = obj.search(cr, uid, [('domain', '=', 'partner')])
168         res = obj.read(cr, uid, ids, ['shortcut','name'], context)
169         return [(r['shortcut'], r['name']) for r in res]
170
171 def _lang_get(self, cr, uid, context={}):
172         obj = self.pool.get('res.lang')
173         ids = obj.search(cr, uid, [])
174         res = obj.read(cr, uid, ids, ['code', 'name'], context)
175         res = [(r['code'], r['name']) for r in res]
176         return res + [(False, '')]
177
178 class res_partner(osv.osv):
179         _description='Partner'
180         _name = "res.partner"
181         _order = "name"
182         _columns = {
183                 'name': fields.char('Name', size=128, required=True, select=True),
184                 'date': fields.date('Date'),
185                 'title': fields.selection(_partner_title_get, 'Title', size=32),
186                 'parent_id': fields.many2one('res.partner','Main Company', select=True),
187                 'child_ids': fields.one2many('res.partner', 'parent_id', 'Partner Ref.'),
188                 'ref': fields.char('Code', size=64),
189                 'lang': fields.selection(_lang_get, 'Language', size=5),
190                 'user_id': fields.many2one('res.users', 'Salesman'),
191                 'responsible': fields.many2one('res.users', 'Users'),
192                 'vat': fields.char('VAT',size=32 ,help="Value Added Tax number"),
193                 'bank_ids': fields.one2many('res.partner.bank', 'partner_id', 'Banks'),
194                 'website': fields.char('Website',size=64),
195                 'comment': fields.text('Notes'),
196                 'address': fields.one2many('res.partner.address', 'partner_id', 'Contacts'),
197                 'category_id': fields.many2many('res.partner.category', 'res_partner_category_rel', 'partner_id', 'category_id', 'Categories'),
198                 'events': fields.one2many('res.partner.event', 'partner_id', 'events'),
199                 'credit_limit': fields.float(string='Credit Limit'),
200                 'ean13': fields.char('EAN13', size=13),
201                 'active': fields.boolean('Active'),
202         }
203         _defaults = {
204                 'active': lambda *a: 1,
205         }
206         _sql_constraints = [
207                 ('name_uniq', 'unique (name)', 'The name of the partner must be unique !')
208         ]
209
210         def copy(self, cr, uid, id, default=None, context={}):
211                 name = self.read(cr, uid, [id], ['name'])[0]['name']
212                 default.update({'name': name+' (copy)'})
213                 return super(res_partner, self).copy(cr, uid, id, default, context)
214         
215         def _check_ean_key(self, cr, uid, ids):
216                 for partner_o in pooler.get_pool(cr.dbname).get('res.partner').read(cr, uid, ids, ['ean13',]):
217                         thisean=partner_o['ean13']
218                         if thisean and thisean!='':
219                                 if len(thisean)!=13:
220                                         return False
221                                 sum=0
222                                 for i in range(12):
223                                         if not (i % 2):
224                                                 sum+=int(thisean[i])
225                                         else:
226                                                 sum+=3*int(thisean[i])
227                                 if math.ceil(sum/10.0)*10-sum!=int(thisean[12]):
228                                         return False
229                 return True
230
231 #       _constraints = [(_check_ean_key, 'Error: Invalid ean code', ['ean13'])]
232
233         def name_get(self, cr, uid, ids, context={}):
234                 if not len(ids):
235                         return []
236                 if context.get('show_ref', False):
237                         rec_name = 'ref'
238                 else:
239                         rec_name = 'name'
240                         
241                 res = [(r['id'], r[rec_name]) for r in self.read(cr, uid, ids, [rec_name], context)]
242                 return res
243                 
244         def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=80):
245                 if not args:
246                         args=[]
247                 if not context:
248                         context={}
249                 if name:
250                         ids = self.search(cr, uid, [('ref', '=', name)] + args, limit=limit, context=context)
251                         if not ids:
252                                 ids = self.search(cr, uid, [('name', operator, name)] + args, limit=limit, context=context)
253                 else:
254                         ids = self.search(cr, uid, args, limit=limit, context=context)
255                 return self.name_get(cr, uid, ids, context)
256
257         def _email_send(self, cr, uid, ids, email_from, subject, body, on_error=None):
258                 partners = self.browse(cr, uid, ids)
259                 for partner in partners:
260                         if len(partner.address):
261                                 if partner.address[0].email:
262                                         tools.email_send(email_from, [partner.address[0].email], subject, body, on_error)
263                 return True
264
265         def email_send(self, cr, uid, ids, email_from, subject, body, on_error=''):
266                 while len(ids):
267                         self.pool.get('ir.cron').create(cr, uid, {
268                                 'name': 'Send Partner Emails',
269                                 'user_id': uid,
270 #                               'nextcall': False,
271                                 'model': 'res.partner',
272                                 'function': '_email_send',
273                                 'args': repr([ids[:16], email_from, subject, body, on_error])
274                         })
275                         ids = ids[16:]
276                 return True
277                 
278         def address_get(self, cr, uid, ids, adr_pref=['default']):
279                 cr.execute('select type,id from res_partner_address where partner_id in ('+','.join(map(str,ids))+')')
280                 res = cr.fetchall()
281                 adr = dict(res)
282                 # get the id of the (first) default address if there is one, 
283                 # otherwise get the id of the first address in the list
284                 if res:
285                         default_address = adr.get('default', res[0][1])
286                 else:
287                         default_address = False
288                 result = {}
289                 for a in adr_pref:
290                         result[a] = adr.get(a, default_address)
291                 return result
292         
293         def gen_next_ref(self, cr, uid, ids):
294                 if len(ids) != 1:
295                         return True
296                         
297                 # compute the next number ref
298                 cr.execute("select ref from res_partner where ref is not null order by char_length(ref) desc, ref desc limit 1")
299                 res = cr.dictfetchall()
300                 ref = res and res[0]['ref'] or '0'
301                 try:
302                         nextref = int(ref)+1
303                 except e:
304                         raise osv.except_osv('Warning', "Couldn't generate the next id because some partners have an alphabetic id !")
305
306                 # update the current partner
307                 cr.execute("update res_partner set ref=%d where id=%d", (nextref, ids[0]))
308                 return True
309 res_partner()
310
311 class res_partner_address(osv.osv):
312         _description ='Partner Contact'
313         _name = 'res.partner.address'
314         _order = 'id'
315         _columns = {
316                 'partner_id': fields.many2one('res.partner', 'Partner', required=True, ondelete='cascade', select=True),
317                 'type': fields.selection( [ ('default','Default'),('invoice','Invoice'), ('delivery','Delivery'), ('contact','Contact'), ('other','Other') ],'Address Type'),
318                 'function': fields.many2one('res.partner.function', 'Function'),
319                 'title': fields.selection(_contact_title_get, 'Title', size=32),
320                 'name': fields.char('Contact Name', size=64),
321                 'street': fields.char('Street', size=128),
322                 'street2': fields.char('Street2', size=128),
323                 'zip': fields.char('Zip', change_default=True, size=24),
324                 'city': fields.char('City', size=128),
325                 'state_id': fields.many2one("res.country.state", 'State', domain="[('country_id','=',country_id)]"),
326                 'country_id': fields.many2one('res.country', 'Country'),
327                 'email': fields.char('E-Mail', size=64),
328                 'phone': fields.char('Phone', size=64),
329                 'fax': fields.char('Fax', size=64),
330                 'mobile': fields.char('Mobile', size=64),
331                 'birthdate': fields.char('Birthdate', size=64),
332                 'active': fields.boolean('Active'),
333         }
334         _defaults = {
335                 'active': lambda *a: 1,
336         }
337
338         def name_get(self, cr, user, ids, context={}):
339                 if not len(ids):
340                         return []
341                 res = []
342                 for r in self.read(cr, user, ids, ['name','zip','city','partner_id']):
343                         if context.get('contact_display', 'contact')=='partner':
344                                 res.append((r['id'], r['partner_id'][1]))
345                         else:
346                                 addr = str(r['name'] or '')
347                                 if r['name'] and (r['zip'] or r['city']):
348                                         addr += ', '
349                                 addr += str(r['zip'] or '') + ' ' + str(r['city'] or '')
350                                 res.append((r['id'], addr or '/'))
351                 return res
352
353         def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=80):
354                 if not args:
355                         args=[]
356                 if not context:
357                         context={}
358                 if context.get('contact_display', 'contact')=='partner':
359                         ids = self.search(cr, user, [('partner_id',operator,name)], limit=limit, context=context)
360                 else:
361                         ids = self.search(cr, user, [('zip','=',name)] + args, limit=limit, context=context)
362                         if not ids: 
363                                 ids = self.search(cr, user, [('city',operator,name)] + args, limit=limit, context=context)
364                         if name:
365                                 ids += self.search(cr, user, [('name',operator,name)] + args, limit=limit, context=context)
366                                 ids += self.search(cr, user, [('partner_id',operator,name)] + args, limit=limit, context=context)
367                 return self.name_get(cr, user, ids, context=context)
368 res_partner_address()
369
370 class res_partner_bank_type(osv.osv):
371         _description='Bank Account Type'
372         _name = 'res.partner.bank.type'
373         _columns = {
374                 'name': fields.char('Name', size=64, required=True),
375                 'code': fields.char('Code', size=64, required=True),
376                 'field_ids': fields.one2many('res.partner.bank.type.field', 'bank_type_id', 'Type fields'),
377         }
378 res_partner_bank_type()
379
380 class res_partner_bank_type_fields(osv.osv):
381         _description='Bank type fields'
382         _name = 'res.partner.bank.type.field'
383         _columns = {
384                 'name': fields.char('Field name', size=64, required=True),
385                 'bank_type_id': fields.many2one('res.partner.bank.type', 'Bank type', required=True, ondelete='cascade'),
386                 'required': fields.boolean('Required'),
387                 'readonly': fields.boolean('Readonly'),
388                 'size': fields.integer('Max. Size'),
389         }
390 res_partner_bank_type_fields()
391
392
393 class res_partner_bank(osv.osv):
394         _description='Bank Details'
395         _name = "res.partner.bank"
396         _rec_name = "state"
397         def _bank_type_get(self, cr, uid, *args):
398                 result = []
399                 type_ids = self.pool.get('res.partner.bank.type').search(cr, uid, [])
400                 res = self.pool.get('res.partner.bank.type').read(cr, uid, type_ids, ['code','name'])
401                 for r in res:
402                         result.append((r['code'], r['name']))
403                 return result
404
405         _columns = {
406                 'acc_number': fields.char('Account Number', size=64, required=False),
407                 'bank_id': fields.many2one('res.partner', 'Bank'),
408                 'bank_address_id': fields.many2one('res.partner.address', 'Bank address'),
409
410                 'owner_name': fields.char('Account owner', size=64),
411                 'street': fields.char('Street', size=128),
412                 'zip': fields.char('Zip', change_default=True, size=24),
413                 'city': fields.char('City', size=128),
414                 'country_id': fields.many2one('res.country', 'Country'),
415                 
416                 'partner_id': fields.many2one('res.partner', 'Partner', required=True, ondelete='cascade', select=True),
417                 'state': fields.selection(_bank_type_get, 'Bank type', required=True)
418         }
419         def fields_get(self, cr, uid, *args):
420                 res = super(res_partner_bank, self).fields_get(cr, uid, *args)
421                 type_ids = self.pool.get('res.partner.bank.type').search(cr, uid, [])
422                 types = self.pool.get('res.partner.bank.type').browse(cr, uid, type_ids)
423                 for t in types:
424                         for f in t.field_ids:
425                                 if f.name in res:
426                                         res[f.name].setdefault('states',{})
427                                         res[f.name]['states'][t.code] = [('readonly',f.readonly),('required',f.required)]
428                 return res
429
430         def name_get(self, cr, uid, ids, context={}):
431                 if not len(ids):
432                         return []
433                 return [(r['id'], r[self._rec_name] + (r['owner_name'] and (' ' + r['owner_name']) or '')) for r in self.read(cr, uid, ids, [self._rec_name, 'owner_name'], context, load='_classic_write')]
434
435 res_partner_bank()
436
437
438 # vim:noexpandtab: