[FIX] orm/fields.function: function/related fields with type=m2o must properly return...
[odoo/odoo.git] / bin / osv / fields.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 # . Fields:
23 #      - simple
24 #      - relations (one2many, many2one, many2many)
25 #      - function
26 #
27 # Fields Attributes:
28 #   _classic_read: is a classic sql fields
29 #   _type   : field type
30 #   readonly
31 #   required
32 #   size
33 #
34 from collections import defaultdict
35 import string
36 import netsvc
37 import sys
38
39 from psycopg2 import Binary
40 import warnings
41
42 import tools
43 from tools.translate import _
44
45 def _symbol_set(symb):
46     if symb == None or symb == False:
47         return None
48     elif isinstance(symb, unicode):
49         return symb.encode('utf-8')
50     return str(symb)
51
52
53 class _column(object):
54     _classic_read = True
55     _classic_write = True
56     _prefetch = True
57     _properties = False
58     _type = 'unknown'
59     _obj = None
60     _multi = False
61     _symbol_c = '%s'
62     _symbol_f = _symbol_set
63     _symbol_set = (_symbol_c, _symbol_f)
64     _symbol_get = None
65
66     def __init__(self, string='unknown', required=False, readonly=False, domain=None, context={}, states=None, priority=0, change_default=False, size=None, ondelete="set null", translate=False, select=False, **args):
67         self.states = states or {}
68         self.string = string
69         self.readonly = readonly
70         self.required = required
71         self.size = size
72         self.help = args.get('help', '')
73         self.priority = priority
74         self.change_default = change_default
75         self.ondelete = ondelete
76         self.translate = translate
77         self._domain = domain or []
78         self._context = context
79         self.write = False
80         self.read = False
81         self.view_load = 0
82         self.select = select
83         self.selectable = True
84         self.group_operator = args.get('group_operator', False)
85         for a in args:
86             if args[a]:
87                 setattr(self, a, args[a])
88
89     def restart(self):
90         pass
91
92     def set(self, cr, obj, id, name, value, user=None, context=None):
93         cr.execute('update '+obj._table+' set '+name+'='+self._symbol_set[0]+' where id=%s', (self._symbol_set[1](value), id))
94
95     def set_memory(self, cr, obj, id, name, value, user=None, context=None):
96         raise Exception(_('Not implemented set_memory method !'))
97
98     def get_memory(self, cr, obj, ids, name, user=None, context=None, values=None):
99         raise Exception(_('Not implemented get_memory method !'))
100
101     def get(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
102         raise Exception(_('undefined get method !'))
103
104     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, context=None):
105         ids = obj.search(cr, uid, args+self._domain+[(name, 'ilike', value)], offset, limit, context=context)
106         res = obj.read(cr, uid, ids, [name], context=context)
107         return [x[name] for x in res]
108
109     def search_memory(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, context=None):
110         raise Exception(_('Not implemented search_memory method !'))
111
112
113 # ---------------------------------------------------------
114 # Simple fields
115 # ---------------------------------------------------------
116 class boolean(_column):
117     _type = 'boolean'
118     _symbol_c = '%s'
119     _symbol_f = lambda x: x and 'True' or 'False'
120     _symbol_set = (_symbol_c, _symbol_f)
121
122 class integer_big(_column):
123     _type = 'integer_big'
124     _symbol_c = '%s'
125     _symbol_f = lambda x: int(x or 0)
126     _symbol_set = (_symbol_c, _symbol_f)
127     _symbol_get = lambda self,x: x or 0
128
129 class integer(_column):
130     _type = 'integer'
131     _symbol_c = '%s'
132     _symbol_f = lambda x: int(x or 0)
133     _symbol_set = (_symbol_c, _symbol_f)
134     _symbol_get = lambda self,x: x or 0
135
136
137 class reference(_column):
138     _type = 'reference'
139     def __init__(self, string, selection, size, **args):
140         _column.__init__(self, string=string, size=size, selection=selection, **args)
141
142
143 class char(_column):
144     _type = 'char'
145
146     def __init__(self, string, size, **args):
147         _column.__init__(self, string=string, size=size, **args)
148         self._symbol_set = (self._symbol_c, self._symbol_set_char)
149
150     # takes a string (encoded in utf8) and returns a string (encoded in utf8)
151     def _symbol_set_char(self, symb):
152         #TODO:
153         # * we need to remove the "symb==False" from the next line BUT
154         #   for now too many things rely on this broken behavior
155         # * the symb==None test should be common to all data types
156         if symb == None or symb == False:
157             return None
158
159         # we need to convert the string to a unicode object to be able
160         # to evaluate its length (and possibly truncate it) reliably
161         u_symb = tools.ustr(symb)
162
163         return u_symb[:self.size].encode('utf8')
164
165
166 class text(_column):
167     _type = 'text'
168
169 import __builtin__
170
171 class float(_column):
172     _type = 'float'
173     _symbol_c = '%s'
174     _symbol_f = lambda x: __builtin__.float(x or 0.0)
175     _symbol_set = (_symbol_c, _symbol_f)
176     _symbol_get = lambda self,x: x or 0.0
177
178     def __init__(self, string='unknown', digits=None, digits_compute=None, **args):
179         _column.__init__(self, string=string, **args)
180         self.digits = digits
181         self.digits_compute = digits_compute
182
183
184     def digits_change(self, cr):
185         if self.digits_compute:
186             t = self.digits_compute(cr)
187             self._symbol_set=('%s', lambda x: ('%.'+str(t[1])+'f') % (__builtin__.float(x or 0.0),))
188             self.digits = t
189
190 class date(_column):
191     _type = 'date'
192
193
194 class datetime(_column):
195     _type = 'datetime'
196
197
198 class time(_column):
199     _type = 'time'
200
201 class binary(_column):
202     _type = 'binary'
203     _symbol_c = '%s'
204     _symbol_f = lambda symb: symb and Binary(symb) or None
205     _symbol_set = (_symbol_c, _symbol_f)
206     _symbol_get = lambda self, x: x and str(x)
207
208     _classic_read = False
209     _prefetch = False
210
211     def __init__(self, string='unknown', filters=None, **args):
212         _column.__init__(self, string=string, **args)
213         self.filters = filters
214
215     def get_memory(self, cr, obj, ids, name, user=None, context=None, values=None):
216         if not context:
217             context = {}
218         if not values:
219             values = []
220         res = {}
221         for i in ids:
222             val = None
223             for v in values:
224                 if v['id'] == i:
225                     val = v[name]
226                     break
227             if context.get('bin_size', False) and val:
228                 res[i] = tools.human_size(long(val))
229             else:
230                 res[i] = val
231         return res
232
233     get = get_memory
234
235
236 class selection(_column):
237     _type = 'selection'
238
239     def __init__(self, selection, string='unknown', **args):
240         _column.__init__(self, string=string, **args)
241         self.selection = selection
242
243 # ---------------------------------------------------------
244 # Relationals fields
245 # ---------------------------------------------------------
246
247 #
248 # Values: (0, 0,  { fields })    create
249 #         (1, ID, { fields })    update
250 #         (2, ID)                remove (delete)
251 #         (3, ID)                unlink one (target id or target of relation)
252 #         (4, ID)                link
253 #         (5)                    unlink all (only valid for one2many)
254 #
255 #CHECKME: dans la pratique c'est quoi la syntaxe utilisee pour le 5? (5) ou (5, 0)?
256 class one2one(_column):
257     _classic_read = False
258     _classic_write = True
259     _type = 'one2one'
260
261     def __init__(self, obj, string='unknown', **args):
262         warnings.warn("The one2one field doesn't work anymore", DeprecationWarning)
263         _column.__init__(self, string=string, **args)
264         self._obj = obj
265
266     def set(self, cr, obj_src, id, field, act, user=None, context=None):
267         if not context:
268             context = {}
269         obj = obj_src.pool.get(self._obj)
270         self._table = obj_src.pool.get(self._obj)._table
271         if act[0] == 0:
272             id_new = obj.create(cr, user, act[1])
273             cr.execute('update '+obj_src._table+' set '+field+'=%s where id=%s', (id_new, id))
274         else:
275             cr.execute('select '+field+' from '+obj_src._table+' where id=%s', (act[0],))
276             id = cr.fetchone()[0]
277             obj.write(cr, user, [id], act[1], context=context)
278
279     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, context=None):
280         return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', 'like', value)], offset, limit, context=context)
281
282
283 class many2one(_column):
284     _classic_read = False
285     _classic_write = True
286     _type = 'many2one'
287     _symbol_c = '%s'
288     _symbol_f = lambda x: x or None
289     _symbol_set = (_symbol_c, _symbol_f)
290
291     def __init__(self, obj, string='unknown', **args):
292         _column.__init__(self, string=string, **args)
293         self._obj = obj
294
295     def set_memory(self, cr, obj, id, field, values, user=None, context=None):
296         obj.datas.setdefault(id, {})
297         obj.datas[id][field] = values
298
299     def get_memory(self, cr, obj, ids, name, user=None, context=None, values=None):
300         result = {}
301         for id in ids:
302             result[id] = obj.datas[id][name]
303         return result
304
305     def get(self, cr, obj, ids, name, user=None, context=None, values=None):
306         if not context:
307             context = {}
308         if not values:
309             values = {}
310         res = {}
311         for r in values:
312             res[r['id']] = r[name]
313         for id in ids:
314             res.setdefault(id, '')
315         obj = obj.pool.get(self._obj)
316
317         # build a dictionary of the form {'id_of_distant_resource': name_of_distant_resource}
318         from orm import except_orm
319         names = {}
320         for record in list(set(filter(None, res.values()))):
321             try:
322                 record_name = dict(obj.name_get(cr, user, [record], context))
323             except except_orm:
324                 record_name = {}
325                 record_name[record] = '// Access Denied //'
326             names.update(record_name)
327
328         for r in res.keys():
329             if res[r] and res[r] in names:
330                 res[r] = (res[r], names[res[r]])
331             else:
332                 res[r] = False
333         return res
334
335     def set(self, cr, obj_src, id, field, values, user=None, context=None):
336         if not context:
337             context = {}
338         obj = obj_src.pool.get(self._obj)
339         self._table = obj_src.pool.get(self._obj)._table
340         if type(values) == type([]):
341             for act in values:
342                 if act[0] == 0:
343                     id_new = obj.create(cr, act[2])
344                     cr.execute('update '+obj_src._table+' set '+field+'=%s where id=%s', (id_new, id))
345                 elif act[0] == 1:
346                     obj.write(cr, [act[1]], act[2], context=context)
347                 elif act[0] == 2:
348                     cr.execute('delete from '+self._table+' where id=%s', (act[1],))
349                 elif act[0] == 3 or act[0] == 5:
350                     cr.execute('update '+obj_src._table+' set '+field+'=null where id=%s', (id,))
351                 elif act[0] == 4:
352                     cr.execute('update '+obj_src._table+' set '+field+'=%s where id=%s', (act[1], id))
353         else:
354             if values:
355                 cr.execute('update '+obj_src._table+' set '+field+'=%s where id=%s', (values, id))
356             else:
357                 cr.execute('update '+obj_src._table+' set '+field+'=null where id=%s', (id,))
358
359     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, context=None):
360         return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', 'like', value)], offset, limit, context=context)
361
362
363 class one2many(_column):
364     _classic_read = False
365     _classic_write = False
366     _prefetch = False
367     _type = 'one2many'
368
369     def __init__(self, obj, fields_id, string='unknown', limit=None, **args):
370         _column.__init__(self, string=string, **args)
371         self._obj = obj
372         self._fields_id = fields_id
373         self._limit = limit
374         #one2many can't be used as condition for defaults
375         assert(self.change_default != True)
376
377     def get_memory(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
378         if not context:
379             context = {}
380         if self._context:
381             context = context.copy()
382             context.update(self._context)
383         if not values:
384             values = {}
385         res = {}
386         for id in ids:
387             res[id] = []
388         ids2 = obj.pool.get(self._obj).search(cr, user, [(self._fields_id, 'in', ids)], limit=self._limit, context=context)
389         for r in obj.pool.get(self._obj).read(cr, user, ids2, [self._fields_id], context=context, load='_classic_write'):
390             if r[self._fields_id] in res:
391                 res[r[self._fields_id]].append(r['id'])
392         return res
393
394     def set_memory(self, cr, obj, id, field, values, user=None, context=None):
395         if not context:
396             context = {}
397         if self._context:
398             context = context.copy()
399         context.update(self._context)
400         if not values:
401             return
402         obj = obj.pool.get(self._obj)
403         for act in values:
404             if act[0] == 0:
405                 act[2][self._fields_id] = id
406                 obj.create(cr, user, act[2], context=context)
407             elif act[0] == 1:
408                 obj.write(cr, user, [act[1]], act[2], context=context)
409             elif act[0] == 2:
410                 obj.unlink(cr, user, [act[1]], context=context)
411             elif act[0] == 3:
412                 obj.datas[act[1]][self._fields_id] = False
413             elif act[0] == 4:
414                 obj.datas[act[1]] = id
415             elif act[0] == 5:
416                 for o in obj.datas.values():
417                     if o[self._fields_id] == id:
418                         o[self._fields_id] = False
419             elif act[0] == 6:
420                 for id2 in (act[2] or []):
421                     obj.datas[id2][self._fields_id] = id
422
423     def search_memory(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like', context=None):
424         raise _('Not Implemented')
425
426     def get(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
427         if not context:
428             context = {}
429         if self._context:
430             context = context.copy()
431         context.update(self._context)
432         if not values:
433             values = {}
434
435         res = defaultdict(list)
436
437         ids2 = obj.pool.get(self._obj).search(cr, user, self._domain + [(self._fields_id, 'in', ids)], limit=self._limit, context=context)
438         for r in obj.pool.get(self._obj)._read_flat(cr, user, ids2, [self._fields_id], context=context, load='_classic_write'):
439             res[r[self._fields_id]].append(r['id'])
440         return res
441
442     def set(self, cr, obj, id, field, values, user=None, context=None):
443         result = []
444         if not context:
445             context = {}
446         if self._context:
447             context = context.copy()
448         context.update(self._context)
449         context['no_store_function'] = True
450         if not values:
451             return
452         _table = obj.pool.get(self._obj)._table
453         obj = obj.pool.get(self._obj)
454         for act in values:
455             if act[0] == 0:
456                 act[2][self._fields_id] = id
457                 id_new = obj.create(cr, user, act[2], context=context)
458                 result += obj._store_get_values(cr, user, [id_new], act[2].keys(), context)
459             elif act[0] == 1:
460                 obj.write(cr, user, [act[1]], act[2], context=context)
461             elif act[0] == 2:
462                 obj.unlink(cr, user, [act[1]], context=context)
463             elif act[0] == 3:
464                 cr.execute('update '+_table+' set '+self._fields_id+'=null where id=%s', (act[1],))
465             elif act[0] == 4:
466                 cr.execute('update '+_table+' set '+self._fields_id+'=%s where id=%s', (id, act[1]))
467             elif act[0] == 5:
468                 cr.execute('update '+_table+' set '+self._fields_id+'=null where '+self._fields_id+'=%s', (id,))
469             elif act[0] == 6:
470                 obj.write(cr, user, act[2], {self._fields_id:id}, context=context or {})
471                 ids2 = act[2] or [0]
472                 cr.execute('select id from '+_table+' where '+self._fields_id+'=%s and id <> ALL (%s)', (id,ids2))
473                 ids3 = map(lambda x:x[0], cr.fetchall())
474                 obj.write(cr, user, ids3, {self._fields_id:False}, context=context or {})
475         return result
476
477     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like', context=None):
478         return obj.pool.get(self._obj).name_search(cr, uid, value, self._domain, operator, context=context,limit=limit)
479
480
481 #
482 # Values: (0, 0,  { fields })    create
483 #         (1, ID, { fields })    update (write fields to ID)
484 #         (2, ID)                remove (calls unlink on ID, that will also delete the relationship because of the ondelete)
485 #         (3, ID)                unlink (delete the relationship between the two objects but does not delete ID)
486 #         (4, ID)                link (add a relationship)
487 #         (5, ID)                unlink all
488 #         (6, ?, ids)            set a list of links
489 #
490 class many2many(_column):
491     _classic_read = False
492     _classic_write = False
493     _prefetch = False
494     _type = 'many2many'
495     def __init__(self, obj, rel, id1, id2, string='unknown', limit=None, **args):
496         _column.__init__(self, string=string, **args)
497         self._obj = obj
498         if '.' in rel:
499             raise Exception(_('The second argument of the many2many field %s must be a SQL table !'\
500                 'You used %s, which is not a valid SQL table name.')% (string,rel))
501         self._rel = rel
502         self._id1 = id1
503         self._id2 = id2
504         self._limit = limit
505
506     def get(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
507         if not context:
508             context = {}
509         if not values:
510             values = {}
511         res = {}
512         if not ids:
513             return res
514         for id in ids:
515             res[id] = []
516         limit_str = self._limit is not None and ' limit %d' % self._limit or ''
517         obj = obj.pool.get(self._obj)
518
519         d1, d2, tables = obj.pool.get('ir.rule').domain_get(cr, user, obj._name, context=context)
520         if d1:
521             d1 = ' and ' + ' and '.join(d1)
522         else: d1 = ''
523         query = 'SELECT %(rel)s.%(id2)s, %(rel)s.%(id1)s \
524                    FROM %(rel)s, %(tbl)s \
525                   WHERE %(rel)s.%(id1)s in %%s \
526                     AND %(rel)s.%(id2)s = %(tbl)s.id \
527                  %(d1)s  \
528                  %(limit)s \
529                   ORDER BY %(tbl)s.%(order)s \
530                  OFFSET %(offset)d' \
531             % {'rel': self._rel,
532                'tbl': obj._table,
533                'id1': self._id1,
534                'id2': self._id2,
535                'd1': d1,
536                'limit': limit_str,
537                'order': obj._order,
538                'offset': offset,
539               }
540         cr.execute(query, [tuple(ids)] + d2)
541         for r in cr.fetchall():
542             res[r[1]].append(r[0])
543         return res
544
545     def set(self, cr, obj, id, name, values, user=None, context=None):
546         if not context:
547             context = {}
548         if not values:
549             return
550         obj = obj.pool.get(self._obj)
551         for act in values:
552             if not (isinstance(act, list) or isinstance(act, tuple)) or not act:
553                 continue
554             if act[0] == 0:
555                 idnew = obj.create(cr, user, act[2])
556                 cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s,%s)', (id, idnew))
557             elif act[0] == 1:
558                 obj.write(cr, user, [act[1]], act[2], context=context)
559             elif act[0] == 2:
560                 obj.unlink(cr, user, [act[1]], context=context)
561             elif act[0] == 3:
562                 cr.execute('delete from '+self._rel+' where ' + self._id1 + '=%s and '+ self._id2 + '=%s', (id, act[1]))
563             elif act[0] == 4:
564                 cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s,%s)', (id, act[1]))
565             elif act[0] == 5:
566                 cr.execute('update '+self._rel+' set '+self._id2+'=null where '+self._id2+'=%s', (id,))
567             elif act[0] == 6:
568
569                 d1, d2,tables = obj.pool.get('ir.rule').domain_get(cr, user, obj._name, context=context)
570                 if d1:
571                     d1 = ' and ' + ' and '.join(d1)
572                 else:
573                     d1 = ''
574                 cr.execute('delete from '+self._rel+' where '+self._id1+'=%s AND '+self._id2+' IN (SELECT '+self._rel+'.'+self._id2+' FROM '+self._rel+', '+','.join(tables)+' WHERE '+self._rel+'.'+self._id1+'=%s AND '+self._rel+'.'+self._id2+' = '+obj._table+'.id '+ d1 +')', [id, id]+d2)
575
576                 for act_nbr in act[2]:
577                     cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s, %s)', (id, act_nbr))
578
579     #
580     # TODO: use a name_search
581     #
582     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like', context=None):
583         return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', operator, value)], offset, limit, context=context)
584
585     def get_memory(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
586         result = {}
587         for id in ids:
588             result[id] = obj.datas[id].get(name, [])
589         return result
590
591     def set_memory(self, cr, obj, id, name, values, user=None, context=None):
592         if not values:
593             return
594         for act in values:
595             # TODO: use constants instead of these magic numbers
596             if act[0] == 0:
597                 raise _('Not Implemented')
598             elif act[0] == 1:
599                 raise _('Not Implemented')
600             elif act[0] == 2:
601                 raise _('Not Implemented')
602             elif act[0] == 3:
603                 raise _('Not Implemented')
604             elif act[0] == 4:
605                 raise _('Not Implemented')
606             elif act[0] == 5:
607                 raise _('Not Implemented')
608             elif act[0] == 6:
609                 obj.datas[id][name] = act[2]
610
611
612 def get_nice_size(a):
613     (x,y) = a
614     if isinstance(y, (int,long)):
615         size = y
616     elif y:
617         size = len(y)
618     else:
619         size = 0
620     return (x, tools.human_size(size))
621
622 # ---------------------------------------------------------
623 # Function fields
624 # ---------------------------------------------------------
625 class function(_column):
626     _classic_read = False
627     _classic_write = False
628     _prefetch = False
629     _type = 'function'
630     _properties = True
631
632 #
633 # multi: compute several fields in one call
634 #
635     def __init__(self, fnct, arg=None, fnct_inv=None, fnct_inv_arg=None, type='float', fnct_search=None, obj=None, method=False, store=False, multi=False, **args):
636         _column.__init__(self, **args)
637         self._obj = obj
638         self._method = method
639         self._fnct = fnct
640         self._fnct_inv = fnct_inv
641         self._arg = arg
642         self._multi = multi
643         if 'relation' in args:
644             self._obj = args['relation']
645
646         self.digits = args.get('digits', (16,2))
647         self.digits_compute = args.get('digits_compute', None)
648
649         self._fnct_inv_arg = fnct_inv_arg
650         if not fnct_inv:
651             self.readonly = 1
652         self._type = type
653         self._fnct_search = fnct_search
654         self.store = store
655
656         if not fnct_search and not store:
657             self.selectable = False
658
659         if store:
660             if self._type != 'many2one':
661                 # m2o fields need to return tuples with name_get, not just foreign keys
662                 self._classic_read = True
663             self._classic_write = True
664             if type=='binary':
665                 self._symbol_get=lambda x:x and str(x)
666
667         if type == 'float':
668             self._symbol_c = float._symbol_c
669             self._symbol_f = float._symbol_f
670             self._symbol_set = float._symbol_set
671
672         if type == 'boolean':
673             self._symbol_c = boolean._symbol_c
674             self._symbol_f = boolean._symbol_f
675             self._symbol_set = boolean._symbol_set
676
677     def digits_change(self, cr):
678         if self.digits_compute:
679             t = self.digits_compute(cr)
680             self._symbol_set=('%s', lambda x: ('%.'+str(t[1])+'f') % (__builtin__.float(x or 0.0),))
681             self.digits = t
682
683
684     def search(self, cr, uid, obj, name, args, context=None):
685         if not self._fnct_search:
686             #CHECKME: should raise an exception
687             return []
688         return self._fnct_search(obj, cr, uid, obj, name, args, context=context)
689
690     def get(self, cr, obj, ids, name, user=None, context=None, values=None):
691         if not context:
692             context = {}
693         if not values:
694             values = {}
695         res = {}
696         if self._method:
697             res = self._fnct(obj, cr, user, ids, name, self._arg, context)
698         else:
699             res = self._fnct(cr, obj._table, ids, name, self._arg, context)
700
701         if self._type == "many2one" :
702             # Filtering only integer/long values if passed
703             res_ids = [x for x in res.values() if x and isinstance(x, (int,long))]
704
705             if res_ids:
706                 obj_model = obj.pool.get(self._obj)
707                 dict_names = dict(obj_model.name_get(cr, user, res_ids, context))
708                 for r in res.keys():
709                     if res[r] and res[r] in dict_names:
710                         res[r] = (res[r], dict_names[res[r]])
711
712         if self._type == 'binary' and context.get('bin_size', False):
713             # convert the data returned by the function with the size of that data...
714             res = dict(map( get_nice_size, res.items()))
715         if self._type == "integer":
716             for r in res.keys():
717                 # Converting value into string so that it does not affect XML-RPC Limits
718                 if isinstance(res[r],dict): # To treat integer values with _multi attribute
719                     for record in res[r].keys():
720                         res[r][record] = str(res[r][record])
721                 else:
722                     res[r] = str(res[r])
723         return res
724     get_memory = get
725
726     def set(self, cr, obj, id, name, value, user=None, context=None):
727         if not context:
728             context = {}
729         if self._fnct_inv:
730             self._fnct_inv(obj, cr, user, id, name, value, self._fnct_inv_arg, context)
731     set_memory = set
732
733 # ---------------------------------------------------------
734 # Related fields
735 # ---------------------------------------------------------
736
737 class related(function):
738
739     def _fnct_search(self, tobj, cr, uid, obj=None, name=None, domain=None, context={}):
740         self._field_get2(cr, uid, obj, context)
741         i = len(self._arg)-1
742         sarg = name
743         while i>0:
744             if type(sarg) in [type([]), type( (1,) )]:
745                 where = [(self._arg[i], 'in', sarg)]
746             else:
747                 where = [(self._arg[i], '=', sarg)]
748             if domain:
749                 where = map(lambda x: (self._arg[i],x[1], x[2]), domain)
750                 domain = []
751             sarg = obj.pool.get(self._relations[i]['object']).search(cr, uid, where, context=context)
752             i -= 1
753         return [(self._arg[0], 'in', sarg)]
754
755     def _fnct_write(self,obj,cr, uid, ids, field_name, values, args, context=None):
756         self._field_get2(cr, uid, obj, context)
757         if type(ids) != type([]):
758             ids=[ids]
759         objlst = obj.browse(cr, uid, ids)
760         for data in objlst:
761             t_id = data.id
762             t_data = data
763             for i in range(len(self.arg)):
764                 if not t_data: break
765                 field_detail = self._relations[i]
766                 if not t_data[self.arg[i]]:
767                     if self._type not in ('one2many', 'many2many'):
768                         t_id = t_data['id']
769                     t_data = False
770                 elif field_detail['type'] in ('one2many', 'many2many'):
771                     if self._type != "many2one":
772                         t_id = t_data.id
773                         t_data = t_data[self.arg[i]][0]
774                     else:
775                         t_data = False
776                 else:
777                     t_id = t_data['id']
778                     t_data = t_data[self.arg[i]]
779             else:
780                 model = obj.pool.get(self._relations[-1]['object'])
781                 model.write(cr, uid, [t_id], {args[-1]: values}, context=context)
782
783     def _fnct_read(self, obj, cr, uid, ids, field_name, args, context=None):
784         self._field_get2(cr, uid, obj, context)
785         if not ids: return {}
786         relation = obj._name
787         if self._type in ('one2many', 'many2many'):
788             res = {}.fromkeys(ids, [])
789         else:
790             res = {}.fromkeys(ids, False)
791
792         objlst = obj.browse(cr, 1, ids, context=context)
793         for data in objlst:
794             if not data:
795                 continue
796             t_data = data
797             relation = obj._name
798             for i in range(len(self.arg)):
799                 field_detail = self._relations[i]
800                 relation = field_detail['object']
801                 try:
802                     if not t_data[self.arg[i]]:
803                         t_data = False
804                         break
805                 except:
806                     t_data = False
807                     break
808                 if field_detail['type'] in ('one2many', 'many2many') and i != len(self.arg) - 1:
809                     t_data = t_data[self.arg[i]][0]
810                 elif t_data:
811                     t_data = t_data[self.arg[i]]
812             if type(t_data) == type(objlst[0]):
813                 res[data.id] = t_data.id
814             elif t_data:
815                 res[data.id] = t_data
816         if self._type=='many2one':
817             ids = filter(None, res.values())
818             if ids:
819                 ng = dict(obj.pool.get(self._obj).name_get(cr, 1, ids, context=context))
820                 for r in res:
821                     if res[r]:
822                         res[r] = (res[r], ng[res[r]])
823         elif self._type in ('one2many', 'many2many'):
824             for r in res:
825                 if res[r]:
826                     res[r] = [x.id for x in res[r]]
827         return res
828
829     def __init__(self, *arg, **args):
830         self.arg = arg
831         self._relations = []
832         super(related, self).__init__(self._fnct_read, arg, self._fnct_write, fnct_inv_arg=arg, method=True, fnct_search=self._fnct_search, **args)
833         if self.store is True:
834             # TODO: improve here to change self.store = {...} according to related objects
835             pass
836
837     def _field_get2(self, cr, uid, obj, context={}):
838         if self._relations:
839             return
840         obj_name = obj._name
841         for i in range(len(self._arg)):
842             f = obj.pool.get(obj_name).fields_get(cr, uid, [self._arg[i]], context=context)[self._arg[i]]
843             self._relations.append({
844                 'object': obj_name,
845                 'type': f['type']
846
847             })
848             if f.get('relation',False):
849                 obj_name = f['relation']
850                 self._relations[-1]['relation'] = f['relation']
851
852 # ---------------------------------------------------------
853 # Dummy fields
854 # ---------------------------------------------------------
855
856 class dummy(function):
857     def _fnct_search(self, tobj, cr, uid, obj=None, name=None, domain=None, context={}):
858         return []
859
860     def _fnct_write(self,obj,cr, uid, ids, field_name, values, args, context=None):
861         return False
862
863     def _fnct_read(self, obj, cr, uid, ids, field_name, args, context=None):
864         return {}
865
866     def __init__(self, *arg, **args):
867         self.arg = arg
868         self._relations = []
869         super(dummy, self).__init__(self._fnct_read, arg, self._fnct_write, fnct_inv_arg=arg, method=True, fnct_search=None, **args)
870
871 # ---------------------------------------------------------
872 # Serialized fields
873 # ---------------------------------------------------------
874 class serialized(_column):
875     def __init__(self, string='unknown', serialize_func=repr, deserialize_func=eval, type='text', **args):
876         self._serialize_func = serialize_func
877         self._deserialize_func = deserialize_func
878         self._type = type
879         self._symbol_set = (self._symbol_c, self._serialize_func)
880         self._symbol_get = self._deserialize_func
881         super(serialized, self).__init__(string=string, **args)
882
883
884 class property(function):
885
886     def _get_default(self, obj, cr, uid, prop_name, context=None):
887         from orm import browse_record
888         prop = obj.pool.get('ir.property')
889         domain = prop._get_domain_default(cr, uid, prop_name, obj._name, context)
890         ids = prop.search(cr, uid, domain, order='company_id', context=context)
891         if not ids:
892             return False
893
894         default_value = prop.get_by_id(cr, uid, ids, context=context)
895         if isinstance(default_value, browse_record):
896             return default_value.id
897         return default_value or False
898
899     def _get_by_id(self, obj, cr, uid, prop_name, ids, context=None):
900         prop = obj.pool.get('ir.property')
901         vids = [obj._name + ',' + str(oid) for oid in  ids]
902
903         domain = prop._get_domain(cr, uid, prop_name, obj._name, context)
904         if domain is not None:
905             domain = [('res_id', 'in', vids)] + domain
906             return prop.search(cr, uid, domain, context=context)
907         else:
908             return []
909
910
911     def _fnct_write(self, obj, cr, uid, id, prop_name, id_val, obj_dest, context=None):
912         if context is None:
913             context = {}
914
915         nids = self._get_by_id(obj, cr, uid, prop_name, [id], context)
916         if nids:
917             cr.execute('DELETE FROM ir_property WHERE id IN %s', (tuple(nids),))
918
919         default_val = self._get_default(obj, cr, uid, prop_name, context)
920
921         if id_val is not default_val:
922             def_id = self._field_get(cr, uid, obj._name, prop_name)
923             company = obj.pool.get('res.company')
924             cid = company._company_default_get(cr, uid, obj._name, def_id,
925                                                context=context)
926             propdef = obj.pool.get('ir.model.fields').browse(cr, uid, def_id,
927                                                              context=context)
928             prop = obj.pool.get('ir.property')
929             return prop.create(cr, uid, {
930                 'name': propdef.name,
931                 'value': id_val,
932                 'res_id': obj._name+','+str(id),
933                 'company_id': cid,
934                 'fields_id': def_id,
935                 'type': self._type,
936                 }, context=context)
937         return False
938
939
940     def _fnct_read(self, obj, cr, uid, ids, prop_name, obj_dest, context=None):
941         from orm import browse_record
942         properties = obj.pool.get('ir.property')
943
944         default_val = self._get_default(obj, cr, uid, prop_name, context)
945
946         nids = self._get_by_id(obj, cr, uid, prop_name, ids, context)
947
948         res = {}
949         for id in ids:
950             res[id] = default_val
951         for prop in properties.browse(cr, uid, nids):
952             value = prop.get_by_id(context=context)
953             if isinstance(value, browse_record):
954                 if not value.exists():
955                     cr.execute('DELETE FROM ir_property WHERE id=%s', (prop.id,))
956                     continue
957                 value = value.id
958             res[prop.res_id.id] = value or False
959         return res
960
961
962     def _field_get(self, cr, uid, model_name, prop):
963         if not self.field_id.get(cr.dbname):
964             cr.execute('SELECT id \
965                     FROM ir_model_fields \
966                     WHERE name=%s AND model=%s', (prop, model_name))
967             res = cr.fetchone()
968             self.field_id[cr.dbname] = res and res[0]
969         return self.field_id[cr.dbname]
970
971     def __init__(self, obj_prop, **args):
972         # TODO remove obj_prop parameter (use many2one type)
973         self.field_id = {}
974         function.__init__(self, self._fnct_read, False, self._fnct_write,
975                           obj_prop, **args)
976
977     def restart(self):
978         self.field_id = {}
979
980
981 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
982