[kanban] contacts view for kanban
[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         'phone': fields.related('address', 'phone', type='char', string='Phone'),
135         'mobile': fields.related('address', 'mobile', type='char', string='Mobile'),
136         'country': fields.related('address', 'country_id', type='many2one', relation='res.country', string='Country'),
137         'employee': fields.boolean('Employee', help="Check this box if the partner is an Employee."),
138         'email': fields.related('address', 'email', type='char', size=240, string='E-mail'),
139         'company_id': fields.many2one('res.company', 'Company', select=1),
140     }
141
142     def _default_category(self, cr, uid, context={}):
143         if 'category_id' in context and context['category_id']:
144             return [context['category_id']]
145         return []
146
147     _defaults = {
148         'active': lambda *a: 1,
149         'customer': lambda *a: 1,
150         'address': [{'type': 'default'}],
151         'category_id': _default_category,
152         'company_id': lambda s,cr,uid,c: s.pool.get('res.company')._company_default_get(cr, uid, 'res.partner', context=c),
153     }
154
155     def copy(self, cr, uid, id, default={}, context={}):
156         name = self.read(cr, uid, [id], ['name'])[0]['name']
157         default.update({'name': name+ _(' (copy)'), 'events':[]})
158         return super(res_partner, self).copy(cr, uid, id, default, context)
159
160     def do_share(self, cr, uid, ids, *args):
161         return True
162
163     def _check_ean_key(self, cr, uid, ids, context=None):
164         for partner_o in pooler.get_pool(cr.dbname).get('res.partner').read(cr, uid, ids, ['ean13',]):
165             thisean=partner_o['ean13']
166             if thisean and thisean!='':
167                 if len(thisean)!=13:
168                     return False
169                 sum=0
170                 for i in range(12):
171                     if not (i % 2):
172                         sum+=int(thisean[i])
173                     else:
174                         sum+=3*int(thisean[i])
175                 if math.ceil(sum/10.0)*10-sum!=int(thisean[12]):
176                     return False
177         return True
178
179 #   _constraints = [(_check_ean_key, 'Error: Invalid ean code', ['ean13'])]
180
181     def name_get(self, cr, uid, ids, context={}):
182         if not len(ids):
183             return []
184         if context.get('show_ref', False):
185             rec_name = 'ref'
186         else:
187             rec_name = 'name'
188
189         res = [(r['id'], r[rec_name]) for r in self.read(cr, uid, ids, [rec_name], context)]
190         return res
191
192     def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100):
193         if not args:
194             args=[]
195         if not context:
196             context={}
197         if name:
198             ids = self.search(cr, uid, [('ref', '=', name)] + args, limit=limit, context=context)
199             if not ids:
200                 ids = self.search(cr, uid, [('name', operator, name)] + args, limit=limit, context=context)
201         else:
202             ids = self.search(cr, uid, args, limit=limit, context=context)
203         return self.name_get(cr, uid, ids, context)
204
205     def _email_send(self, cr, uid, ids, email_from, subject, body, on_error=None):
206         partners = self.browse(cr, uid, ids)
207         for partner in partners:
208             if len(partner.address):
209                 if partner.address[0].email:
210                     tools.email_send(email_from, [partner.address[0].email], subject, body, on_error)
211         return True
212
213     def email_send(self, cr, uid, ids, email_from, subject, body, on_error=''):
214         while len(ids):
215             self.pool.get('ir.cron').create(cr, uid, {
216                 'name': 'Send Partner Emails',
217                 'user_id': uid,
218 #               'nextcall': False,
219                 'model': 'res.partner',
220                 'function': '_email_send',
221                 'args': repr([ids[:16], email_from, subject, body, on_error])
222             })
223             ids = ids[16:]
224         return True
225
226     def address_get(self, cr, uid, ids, adr_pref=['default']):
227         address_obj = self.pool.get('res.partner.address')
228         address_ids = address_obj.search(cr, uid, [('partner_id', '=', ids)])
229         address_rec = address_obj.read(cr, uid, address_ids, ['type'])
230         res = list(tuple(addr.values()) for addr in address_rec)
231         adr = dict(res)
232         # get the id of the (first) default address if there is one,
233         # otherwise get the id of the first address in the list
234         if res:
235             default_address = adr.get('default', res[0][1])
236         else:
237             default_address = False
238         result = {}
239         for a in adr_pref:
240             result[a] = adr.get(a, default_address)
241         return result
242
243     def gen_next_ref(self, cr, uid, ids):
244         if len(ids) != 1:
245             return True
246
247         # compute the next number ref
248         cr.execute("select ref from res_partner where ref is not null order by char_length(ref) desc, ref desc limit 1")
249         res = cr.dictfetchall()
250         ref = res and res[0]['ref'] or '0'
251         try:
252             nextref = int(ref)+1
253         except:
254             raise osv.except_osv(_('Warning'), _("Couldn't generate the next id because some partners have an alphabetic id !"))
255
256         # update the current partner
257         cr.execute("update res_partner set ref=%s where id=%s", (nextref, ids[0]))
258         return True
259
260     def view_header_get(self, cr, uid, view_id, view_type, context):
261         res = super(res_partner, self).view_header_get(cr, uid, view_id, view_type, context)
262         if res: return res
263         if (not context.get('category_id', False)):
264             return False
265         return _('Partners: ')+self.pool.get('res.partner.category').browse(cr, uid, context['category_id'], context).name
266     def main_partner(self, cr, uid):
267         ''' Return the id of the main partner
268         '''
269         model_data = self.pool.get('ir.model.data')
270         return model_data.browse(
271             cr, uid,
272             model_data.search(cr, uid, [('module','=','base'),
273                                         ('name','=','main_partner')])[0],
274             ).res_id
275 res_partner()
276
277 class res_partner_address(osv.osv):
278     _description ='Partner Addresses'
279     _name = 'res.partner.address'
280     _order = 'type, name'
281     _columns = {
282         'partner_id': fields.many2one('res.partner', 'Partner Name', ondelete='set null', select=True, help="Keep empty for a private address, not related to partner."),
283         '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."),
284         'function': fields.char('Function', size=64),
285         'title': fields.many2one('res.partner.title','Title'),
286         'name': fields.char('Contact Name', size=64, select=1),
287         'street': fields.char('Street', size=128),
288         'street2': fields.char('Street2', size=128),
289         'zip': fields.char('Zip', change_default=True, size=24),
290         'city': fields.char('City', size=128),
291         'state_id': fields.many2one("res.country.state", 'Fed. State', domain="[('country_id','=',country_id)]"),
292         'country_id': fields.many2one('res.country', 'Country'),
293         'email': fields.char('E-Mail', size=240),
294         'phone': fields.char('Phone', size=64),
295         'fax': fields.char('Fax', size=64),
296         'mobile': fields.char('Mobile', size=64),
297         'birthdate': fields.char('Birthdate', size=64),
298         'is_customer_add': fields.related('partner_id', 'customer', type='boolean', string='Customer'),
299         'is_supplier_add': fields.related('partner_id', 'supplier', type='boolean', string='Supplier'),
300         'active': fields.boolean('Active', help="Uncheck the active field to hide the contact."),
301 #        'company_id': fields.related('partner_id','company_id',type='many2one',relation='res.company',string='Company', store=True),
302         'company_id': fields.many2one('res.company', 'Company',select=1),
303         'color': fields.integer('Color Index'),
304     }
305     _defaults = {
306         'active': lambda *a: 1,
307         'company_id': lambda s,cr,uid,c: s.pool.get('res.company')._company_default_get(cr, uid, 'res.partner.address', context=c),
308     }
309
310     def name_get(self, cr, user, ids, context={}):
311         if not len(ids):
312             return []
313         res = []
314         for r in self.read(cr, user, ids, ['name','zip','country_id', 'city','partner_id', 'street']):
315             if context.get('contact_display', 'contact')=='partner' and r['partner_id']:
316                 res.append((r['id'], r['partner_id'][1]))
317             else:
318                 # make a comma-separated list with the following non-empty elements
319                 elems = [r['name'], r['country_id'] and r['country_id'][1], r['city'], r['street']]
320                 addr = ', '.join(filter(bool, elems))
321                 if (context.get('contact_display', 'contact')=='partner_address') and r['partner_id']:
322                     res.append((r['id'], "%s: %s" % (r['partner_id'][1], addr or '/')))
323                 else:
324                     res.append((r['id'], addr or '/'))
325         return res
326
327     def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=100):
328         if not args:
329             args=[]
330         if not context:
331             context={}
332         if context.get('contact_display', 'contact')=='partner ' or context.get('contact_display', 'contact')=='partner_address '  :
333             ids = self.search(cr, user, [('partner_id',operator,name)], limit=limit, context=context)
334         else:
335             if not name:
336                 ids = self.search(cr, user, args, 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
346     def get_city(self, cr, uid, id):
347         return self.browse(cr, uid, id).city
348
349 res_partner_address()
350
351 class res_partner_category(osv.osv):
352     _inherit = 'res.partner.category'
353     _columns = {
354         'partner_ids': fields.many2many('res.partner', 'res_partner_category_rel', 'category_id', 'partner_id', 'Partners'),
355     }
356
357 res_partner_category()
358
359 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
360