bugfix_portal_access_rights
[odoo/odoo.git] / bin / osv / fields.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 # . Fields:
24 #      - simple
25 #      - relations (one2many, many2one, many2many)
26 #      - function
27 #
28 # Fields Attributes:
29 #   _classic_read: is a classic sql fields
30 #   _type   : field type
31 #   readonly
32 #   required
33 #   size
34 #
35 import string
36 import netsvc
37 import sys
38
39 from psycopg2 import Binary
40 import warnings
41
42 import tools
43
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     _properties = False
57     _type = 'unknown'
58     _obj = None
59     _multi = False
60     _symbol_c = '%s'
61     _symbol_f = _symbol_set
62     _symbol_set = (_symbol_c, _symbol_f)
63     _symbol_get = None
64
65     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):
66         self.states = states or {}
67         self.string = string
68         self.readonly = readonly
69         self.required = required
70         self.size = size
71         self.help = args.get('help', '')
72         self.priority = priority
73         self.change_default = change_default
74         self.ondelete = ondelete
75         self.translate = translate
76         self._domain = domain or []
77         self._context = context
78         self.write = False
79         self.read = False
80         self.view_load = 0
81         self.select = select
82         for a in args:
83             if args[a]:
84                 setattr(self, a, args[a])
85
86     def restart(self):
87         pass
88
89     def set(self, cr, obj, id, name, value, user=None, context=None):
90         cr.execute('update '+obj._table+' set '+name+'='+self._symbol_set[0]+' where id=%s', (self._symbol_set[1](value), id))
91
92     def set_memory(self, cr, obj, id, name, value, user=None, context=None):
93         raise Exception(_('Not implemented set_memory method !'))
94
95     def get_memory(self, cr, obj, ids, name, user=None, context=None, values=None):
96         raise Exception(_('Not implemented get_memory method !'))
97
98     def get(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
99         raise Exception(_('undefined get method !'))
100
101     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None):
102         ids = obj.search(cr, uid, args+self._domain+[(name, 'ilike', value)], offset, limit)
103         res = obj.read(cr, uid, ids, [name])
104         return [x[name] for x in res]
105
106     def search_memory(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, context=None):
107         raise Exception(_('Not implemented search_memory method !'))
108
109
110 # ---------------------------------------------------------
111 # Simple fields
112 # ---------------------------------------------------------
113 class boolean(_column):
114     _type = 'boolean'
115     _symbol_c = '%s'
116     _symbol_f = lambda x: x and 'True' or 'False'
117     _symbol_set = (_symbol_c, _symbol_f)
118
119
120 class integer_big(_column):
121     _type = 'integer_big'
122     _symbol_c = '%s'
123     _symbol_f = lambda x: int(x or 0)
124     _symbol_set = (_symbol_c, _symbol_f)
125
126 class integer(_column):
127     _type = 'integer'
128     _symbol_c = '%s'
129     _symbol_f = lambda x: int(x or 0)
130     _symbol_set = (_symbol_c, _symbol_f)
131
132
133 class reference(_column):
134     _type = 'reference'
135
136     def __init__(self, string, selection, size, **args):
137         _column.__init__(self, string=string, size=size, selection=selection, **args)
138
139
140 class char(_column):
141     _type = 'char'
142
143     def __init__(self, string, size, **args):
144         _column.__init__(self, string=string, size=size, **args)
145         self._symbol_set = (self._symbol_c, self._symbol_set_char)
146
147     # takes a string (encoded in utf8) and returns a string (encoded in utf8)
148     def _symbol_set_char(self, symb):
149         #TODO:
150         # * we need to remove the "symb==False" from the next line BUT
151         #   for now too many things rely on this broken behavior
152         # * the symb==None test should be common to all data types
153         if symb == None or symb == False:
154             return None
155
156         # we need to convert the string to a unicode object to be able
157         # to evaluate its length (and possibly truncate it) reliably
158         u_symb = tools.ustr(symb)
159
160         return u_symb[:self.size].encode('utf8')
161
162
163 class text(_column):
164     _type = 'text'
165
166 import __builtin__
167
168 class float(_column):
169     _type = 'float'
170     _symbol_c = '%s'
171     _symbol_f = lambda x: __builtin__.float(x or 0.0)
172     _symbol_set = (_symbol_c, _symbol_f)
173
174     def __init__(self, string='unknown', digits=None, **args):
175         _column.__init__(self, string=string, **args)
176         self.digits = digits
177
178
179 class date(_column):
180     _type = 'date'
181
182
183 class datetime(_column):
184     _type = 'datetime'
185
186
187 class time(_column):
188     _type = 'time'
189
190
191 class binary(_column):
192     _type = 'binary'
193     _symbol_c = '%s'
194     _symbol_f = lambda symb: symb and Binary(symb) or None
195     _symbol_set = (_symbol_c, _symbol_f)
196     _symbol_get = lambda self, x: x and str(x)
197
198     _classic_read = False
199
200     def __init__(self, string='unknown', filters=None, **args):
201         _column.__init__(self, string=string, **args)
202         self.filters = filters
203
204     def get_memory(self, cr, obj, ids, name, user=None, context=None, values=None):
205         if not context:
206             context = {}
207         if not values:
208             values = []
209         res = {}
210         for i in ids:
211             val = None
212             for v in values:
213                 if v['id'] == i:
214                     val = v[name]
215                     break
216             if context.get('bin_size', False) and val:
217                 res[i] = tools.human_size(long(val))
218             else:
219                 res[i] = val
220         return res
221
222     get = get_memory
223
224
225 class selection(_column):
226     _type = 'selection'
227
228     def __init__(self, selection, string='unknown', **args):
229         _column.__init__(self, string=string, **args)
230         self.selection = selection
231
232 # ---------------------------------------------------------
233 # Relationals fields
234 # ---------------------------------------------------------
235
236 #
237 # Values: (0, 0,  { fields })    create
238 #         (1, ID, { fields })    modification
239 #         (2, ID)                remove (delete)
240 #         (3, ID)                unlink one (target id or target of relation)
241 #         (4, ID)                link
242 #         (5)                    unlink all (only valid for one2many)
243 #
244 #CHECKME: dans la pratique c'est quoi la syntaxe utilisee pour le 5? (5) ou (5, 0)?
245 class one2one(_column):
246     _classic_read = False
247     _classic_write = True
248     _type = 'one2one'
249
250     def __init__(self, obj, string='unknown', **args):
251         warnings.warn("The one2one field doesn't work anymore", DeprecationWarning)
252         _column.__init__(self, string=string, **args)
253         self._obj = obj
254
255     def set(self, cr, obj_src, id, field, act, user=None, context=None):
256         if not context:
257             context = {}
258         obj = obj_src.pool.get(self._obj)
259         self._table = obj_src.pool.get(self._obj)._table
260         if act[0] == 0:
261             id_new = obj.create(cr, user, act[1])
262             cr.execute('update '+obj_src._table+' set '+field+'=%s where id=%s', (id_new, id))
263         else:
264             cr.execute('select '+field+' from '+obj_src._table+' where id=%s', (act[0],))
265             id = cr.fetchone()[0]
266             obj.write(cr, user, [id], act[1], context=context)
267
268     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None):
269         return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', 'like', value)], offset, limit)
270
271
272 class many2one(_column):
273     _classic_read = False
274     _classic_write = True
275     _type = 'many2one'
276     _symbol_c = '%s'
277     _symbol_f = lambda x: x or None
278     _symbol_set = (_symbol_c, _symbol_f)
279
280     def __init__(self, obj, string='unknown', **args):
281         _column.__init__(self, string=string, **args)
282         self._obj = obj
283
284     def set_memory(self, cr, obj, id, field, values, user=None, context=None):
285         obj.datas.setdefault(id, {})
286         obj.datas[id][field] = values
287
288     def get_memory(self, cr, obj, ids, name, user=None, context=None, values=None):
289         result = {}
290         for id in ids:
291             result[id] = obj.datas[id][name]
292         return result
293
294     def get(self, cr, obj, ids, name, user=None, context=None, values=None):
295         if not context:
296             context = {}
297         if not values:
298             values = {}
299         res = {}
300         for r in values:
301             res[r['id']] = r[name]
302         for id in ids:
303             res.setdefault(id, '')
304         obj = obj.pool.get(self._obj)
305         # build a dictionary of the form {'id_of_distant_resource': name_of_distant_resource}
306         from orm import except_orm
307         try:
308             names = dict(obj.name_get(cr, user, filter(None, res.values()), context))
309         except except_orm:
310             names = {}
311             iids = filter(None, res.values())
312             for iiid in iids:
313                 names[iiid] = '// Access Denied //'
314
315         for r in res.keys():
316             if res[r] and res[r] in names:
317                 res[r] = (res[r], names[res[r]])
318             else:
319                 res[r] = False
320         return res
321
322     def set(self, cr, obj_src, id, field, values, user=None, context=None):
323         if not context:
324             context = {}
325         obj = obj_src.pool.get(self._obj)
326         self._table = obj_src.pool.get(self._obj)._table
327         if type(values) == type([]):
328             for act in values:
329                 if act[0] == 0:
330                     id_new = obj.create(cr, act[2])
331                     cr.execute('update '+obj_src._table+' set '+field+'=%s where id=%s', (id_new, id))
332                 elif act[0] == 1:
333                     obj.write(cr, [act[1]], act[2], context=context)
334                 elif act[0] == 2:
335                     cr.execute('delete from '+self._table+' where id=%s', (act[1],))
336                 elif act[0] == 3 or act[0] == 5:
337                     cr.execute('update '+obj_src._table+' set '+field+'=null where id=%s', (id,))
338                 elif act[0] == 4:
339                     cr.execute('update '+obj_src._table+' set '+field+'=%s where id=%s', (act[1], id))
340         else:
341             if values:
342                 cr.execute('update '+obj_src._table+' set '+field+'=%s where id=%s', (values, id))
343             else:
344                 cr.execute('update '+obj_src._table+' set '+field+'=null where id=%s', (id,))
345
346     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None):
347         return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', 'like', value)], offset, limit)
348
349
350 class one2many(_column):
351     _classic_read = False
352     _classic_write = False
353     _type = 'one2many'
354
355     def __init__(self, obj, fields_id, string='unknown', limit=None, **args):
356         _column.__init__(self, string=string, **args)
357         self._obj = obj
358         self._fields_id = fields_id
359         self._limit = limit
360         #one2many can't be used as condition for defaults
361         assert(self.change_default != True)
362
363     def get_memory(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
364         if not context:
365             context = {}
366         if not values:
367             values = {}
368         res = {}
369         for id in ids:
370             res[id] = []
371         ids2 = obj.pool.get(self._obj).search(cr, user, [(self._fields_id, 'in', ids)], limit=self._limit)
372         for r in obj.pool.get(self._obj).read(cr, user, ids2, [self._fields_id], context=context, load='_classic_write'):
373             if r[self._fields_id] in res:
374                 res[r[self._fields_id]].append(r['id'])
375         return res
376
377     def set_memory(self, cr, obj, id, field, values, user=None, context=None):
378         if not context:
379             context = {}
380         if not values:
381             return
382         obj = obj.pool.get(self._obj)
383         for act in values:
384             if act[0] == 0:
385                 act[2][self._fields_id] = id
386                 obj.create(cr, user, act[2], context=context)
387             elif act[0] == 1:
388                 obj.write(cr, user, [act[1]], act[2], context=context)
389             elif act[0] == 2:
390                 obj.unlink(cr, user, [act[1]], context=context)
391             elif act[0] == 3:
392                 obj.datas[act[1]][self._fields_id] = False
393             elif act[0] == 4:
394                 obj.datas[act[1]] = id
395             elif act[0] == 5:
396                 for o in obj.datas.values():
397                     if o[self._fields_id] == id:
398                         o[self._fields_id] = False
399             elif act[0] == 6:
400                 for id2 in (act[2] or []):
401                     obj.datas[id2][self._fields_id] = id
402
403     def search_memory(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like', context=None):
404         raise _('Not Implemented')
405
406     def get(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
407         if not context:
408             context = {}
409         if not values:
410             values = {}
411         res = {}
412         for id in ids:
413             res[id] = []
414         ids2 = obj.pool.get(self._obj).search(cr, user, [(self._fields_id, 'in', ids)], limit=self._limit)
415         for r in obj.pool.get(self._obj)._read_flat(cr, user, ids2, [self._fields_id], context=context, load='_classic_write'):
416             res[r[self._fields_id]].append(r['id'])
417         return res
418
419     def set(self, cr, obj, id, field, values, user=None, context=None):
420         if not context:
421             context = {}
422         if not values:
423             return
424         _table = obj.pool.get(self._obj)._table
425         obj = obj.pool.get(self._obj)
426         for act in values:
427             if act[0] == 0:
428                 act[2][self._fields_id] = id
429                 obj.create(cr, user, act[2], context=context)
430             elif act[0] == 1:
431                 obj.write(cr, user, [act[1]], act[2], context=context)
432             elif act[0] == 2:
433                 obj.unlink(cr, user, [act[1]], context=context)
434             elif act[0] == 3:
435                 cr.execute('update '+_table+' set '+self._fields_id+'=null where id=%s', (act[1],))
436             elif act[0] == 4:
437                 cr.execute('update '+_table+' set '+self._fields_id+'=%s where id=%s', (id, act[1]))
438             elif act[0] == 5:
439                 cr.execute('update '+_table+' set '+self._fields_id+'=null where '+self._fields_id+'=%s', (id,))
440             elif act[0] == 6:
441                 if not act[2]:
442                     ids2 = [0]
443                 else:
444                     ids2 = act[2]
445                 cr.execute('update '+_table+' set '+self._fields_id+'=NULL where '+self._fields_id+'=%s and id not in ('+','.join(map(str, ids2))+')', (id,))
446                 if act[2]:
447                     cr.execute('update '+_table+' set '+self._fields_id+'=%s where id in ('+','.join(map(str, act[2]))+')', (id,))
448
449     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like'):
450         return obj.pool.get(self._obj).name_search(cr, uid, value, self._domain, offset, limit)
451
452
453 #
454 # Values: (0, 0,  { fields })    create
455 #         (1, ID, { fields })    modification
456 #         (2, ID)                remove
457 #         (3, ID)                unlink
458 #         (4, ID)                link
459 #         (5, ID)                unlink all
460 #         (6, ?, ids)            set a list of links
461 #
462 class many2many(_column):
463     _classic_read = False
464     _classic_write = False
465     _type = 'many2many'
466
467     def __init__(self, obj, rel, id1, id2, string='unknown', limit=None, **args):
468         _column.__init__(self, string=string, **args)
469         self._obj = obj
470         if '.' in rel:
471             raise Exception(_('The second argument of the many2many field %s must be a SQL table !'\
472                 'You used %s, which is not a valid SQL table name.')% (string,rel))
473         self._rel = rel
474         self._id1 = id1
475         self._id2 = id2
476         self._limit = limit
477
478     def get(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
479         if not context:
480             context = {}
481         if not values:
482             values = {}
483         res = {}
484         if not ids:
485             return res
486         for id in ids:
487             res[id] = []
488         ids_s = ','.join(map(str, ids))
489         limit_str = self._limit is not None and ' limit %d' % self._limit or ''
490         obj = obj.pool.get(self._obj)
491
492         d1, d2 = obj.pool.get('ir.rule').domain_get(cr, user, obj._name)
493         if d1:
494             d1 = ' and ' + d1
495
496         cr.execute('SELECT '+self._rel+'.'+self._id2+','+self._rel+'.'+self._id1+' \
497                 FROM '+self._rel+' , '+obj._table+' \
498                 WHERE '+self._rel+'.'+self._id1+' in ('+ids_s+') \
499                     AND '+self._rel+'.'+self._id2+' = '+obj._table+'.id '+d1
500                 +limit_str+' order by '+obj._table+'.'+obj._order+' offset %s',
501                 d2+[offset])
502         for r in cr.fetchall():
503             res[r[1]].append(r[0])
504         return res
505
506     def set(self, cr, obj, id, name, values, user=None, context=None):
507         if not context:
508             context = {}
509         if not values:
510             return
511         obj = obj.pool.get(self._obj)
512         for act in values:
513             if act[0] == 0:
514                 idnew = obj.create(cr, user, act[2])
515                 cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s,%s)', (id, idnew))
516             elif act[0] == 1:
517                 obj.write(cr, user, [act[1]], act[2], context=context)
518             elif act[0] == 2:
519                 obj.unlink(cr, user, [act[1]], context=context)
520             elif act[0] == 3:
521                 cr.execute('delete from '+self._rel+' where ' + self._id1 + '=%s and '+ self._id2 + '=%s', (id, act[1]))
522             elif act[0] == 4:
523                 cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s,%s)', (id, act[1]))
524             elif act[0] == 5:
525                 cr.execute('update '+self._rel+' set '+self._id2+'=null where '+self._id2+'=%s', (id,))
526             elif act[0] == 6:
527
528                 d1, d2 = obj.pool.get('ir.rule').domain_get(cr, user, obj._name)
529                 if d1:
530                     d1 = ' and ' + d1
531                 cr.execute('delete from '+self._rel+' where '+self._id1+'=%s AND '+self._id2+' IN (SELECT '+self._rel+'.'+self._id2+' FROM '+self._rel+', '+obj._table+' WHERE '+self._rel+'.'+self._id1+'=%s AND '+self._rel+'.'+self._id2+' = '+obj._table+'.id '+ d1 +')', [id, id]+d2)
532
533                 for act_nbr in act[2]:
534                     cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s, %s)', (id, act_nbr))
535
536     #
537     # TODO: use a name_search
538     #
539     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like'):
540         return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', operator, value)], offset, limit)
541
542     def get_memory(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
543         result = {}
544         for id in ids:
545             result[id] = obj.datas[id].get(name, [])
546         return result
547
548     def set_memory(self, cr, obj, id, name, values, user=None, context=None):
549         if not values:
550             return
551         for act in values:
552             # TODO: use constants instead of these magic numbers
553             if act[0] == 0:
554                 raise _('Not Implemented')
555             elif act[0] == 1:
556                 raise _('Not Implemented')
557             elif act[0] == 2:
558                 raise _('Not Implemented')
559             elif act[0] == 3:
560                 raise _('Not Implemented')
561             elif act[0] == 4:
562                 raise _('Not Implemented')
563             elif act[0] == 5:
564                 raise _('Not Implemented')
565             elif act[0] == 6:
566                 obj.datas[id][name] = act[2]
567
568
569 # ---------------------------------------------------------
570 # Function fields
571 # ---------------------------------------------------------
572 class function(_column):
573     _classic_read = False
574     _classic_write = False
575     _type = 'function'
576     _properties = True
577
578 #
579 # multi: compute several fields in one call
580 #
581     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):
582         _column.__init__(self, **args)
583         self._obj = obj
584         self._method = method
585         self._fnct = fnct
586         self._fnct_inv = fnct_inv
587         self._arg = arg
588         self._multi = multi
589         if 'relation' in args:
590             self._obj = args['relation']
591         self._fnct_inv_arg = fnct_inv_arg
592         if not fnct_inv:
593             self.readonly = 1
594         self._type = type
595         self._fnct_search = fnct_search
596         self.store = store
597         if store:
598             self._classic_read = True
599             self._classic_write = True
600             if type=='binary':
601                 self._symbol_get=lambda x:x and str(x)
602
603         if type == 'float':
604             self._symbol_c = float._symbol_c
605             self._symbol_f = float._symbol_f
606             self._symbol_set = float._symbol_set
607
608     def search(self, cr, uid, obj, name, args):
609         if not self._fnct_search:
610             #CHECKME: should raise an exception
611             return []
612         return self._fnct_search(obj, cr, uid, obj, name, args)
613
614     def get(self, cr, obj, ids, name, user=None, context=None, values=None):
615         if not context:
616             context = {}
617         if not values:
618             values = {}
619         res = {}
620         if self._method:
621             res = self._fnct(obj, cr, user, ids, name, self._arg, context)
622         else:
623             res = self._fnct(cr, obj._table, ids, name, self._arg, context)
624
625         if self._type == 'binary' and context.get('bin_size', False):
626             # convert the data returned by the function with the size of that data...
627             res = dict(map(lambda (x, y): (x, tools.human_size(len(y))), res.items()))
628         return res
629
630     def set(self, cr, obj, id, name, value, user=None, context=None):
631         if not context:
632             context = {}
633         if self._fnct_inv:
634             self._fnct_inv(obj, cr, user, id, name, value, self._fnct_inv_arg, context)
635
636 # ---------------------------------------------------------
637 # Related fields
638 # ---------------------------------------------------------
639
640 class related(function):
641
642     def _fnct_search(self, tobj, cr, uid, obj=None, name=None, domain=None, context={}):
643         self._field_get2(cr, uid, obj, context)
644         i = len(self._arg)-1
645         sarg = name
646         while i>0:
647             if type(sarg) in [type([]), type( (1,) )]:
648                 where = [(self._arg[i], 'in', sarg)]
649             else:
650                 where = [(self._arg[i], '=', sarg)]
651             if domain:
652                 where = map(lambda x: (self._arg[i],x[1], x[2]), domain)
653                 domain = []
654             sarg = obj.pool.get(self._relations[i]['object']).search(cr, uid, where, context=context)
655             i -= 1
656         return [(self._arg[0], 'in', sarg)]
657
658     def _fnct_write(self,obj,cr, uid, ids, field_name, values, args, context=None):
659         if values and field_name:
660             self._field_get2(cr, uid, obj, context)
661             relation = obj._name
662             res = {}
663             if type(ids) != type([]):
664                 ids=[ids]
665             objlst = obj.browse(cr, uid, ids)
666             for data in objlst:
667                 t_id=None
668                 t_data = data
669                 relation = obj._name
670                 for i in range(len(self.arg)):
671                     field_detail = self._relations[i]
672                     relation = field_detail['object']
673                     if not t_data[self.arg[i]]:
674                         t_data = False
675                         break
676                     if field_detail['type'] in ('one2many', 'many2many'):
677                         t_id=t_data.id
678                         t_data = t_data[self.arg[i]][0]
679                     else:
680                         t_id=t_data['id']
681                         t_data = t_data[self.arg[i]]
682                 if t_id:
683                     obj.pool.get(field_detail['object']).write(cr,uid,[t_id],{args[-1]:values})
684
685     def _fnct_read(self, obj, cr, uid, ids, field_name, args, context=None):
686         self._field_get2(cr, uid, obj, context)
687         if not ids: return {}
688         relation = obj._name
689         res = {}.fromkeys(ids, False)
690         objlst = obj.browse(cr, uid, ids)
691         for data in objlst:
692             if not data:
693                 continue
694             t_data = data
695             relation = obj._name
696             for i in range(len(self.arg)):
697                 field_detail = self._relations[i]
698                 relation = field_detail['object']
699                 try:
700                     if not t_data[self.arg[i]]:
701                         t_data = False
702                         break
703                 except:
704                     t_data = False
705                     break
706                 if field_detail['type'] in ('one2many', 'many2many'):
707                     t_data = t_data[self.arg[i]][0]
708                 else:
709                     t_data = t_data[self.arg[i]]
710             if type(t_data) == type(objlst[0]):
711                 res[data.id] = t_data.id
712             else:
713                 res[data.id] = t_data
714
715         if self._type=='many2one':
716             ids = filter(None, res.values())
717             if ids:
718                 ng = dict(obj.pool.get(self._obj).name_get(cr, uid, ids, context=context))
719                 for r in res:
720                     if res[r]:
721                         res[r] = (res[r], ng[res[r]])
722         return res
723
724     def __init__(self, *arg, **args):
725         self.arg = arg
726         self._relations = []
727         super(related, self).__init__(self._fnct_read, arg, self._fnct_write, fnct_inv_arg=arg, method=True, fnct_search=self._fnct_search, **args)
728
729     def _field_get2(self, cr, uid, obj, context={}):
730         if self._relations:
731             return
732         obj_name = obj._name
733         for i in range(len(self._arg)):
734             f = obj.pool.get(obj_name).fields_get(cr, uid, [self._arg[i]], context=context)[self._arg[i]]
735             self._relations.append({
736                 'object': obj_name,
737                 'type': f['type']
738
739             })
740             if f.get('relation',False):
741                 obj_name = f['relation']
742                 self._relations[-1]['relation'] = f['relation']
743
744 # ---------------------------------------------------------
745 # Serialized fields
746 # ---------------------------------------------------------
747 class serialized(_column):
748     def __init__(self, string='unknown', serialize_func=repr, deserialize_func=eval, type='text', **args):
749         self._serialize_func = serialize_func
750         self._deserialize_func = deserialize_func
751         self._type = type
752         self._symbol_set = (self._symbol_c, self._serialize_func)
753         self._symbol_get = self._deserialize_func
754         super(serialized, self).__init__(string=string, **args)
755
756
757 class property(function):
758
759     def _fnct_write(self, obj, cr, uid, id, prop, id_val, val, context=None):
760         if not context:
761             context = {}
762         (obj_dest,) = val
763         definition_id = self._field_get(cr, uid, obj._name, prop)
764
765         property = obj.pool.get('ir.property')
766         nid = property.search(cr, uid, [('fields_id', '=', definition_id),
767             ('res_id', '=', obj._name+','+str(id))])
768         while len(nid):
769             cr.execute('DELETE FROM ir_property WHERE id=%s', (nid.pop(),))
770
771         nid = property.search(cr, uid, [('fields_id', '=', definition_id),
772             ('res_id', '=', False)])
773         default_val = False
774         if nid:
775             default_val = property.browse(cr, uid, nid[0], context).value
776
777         company_id = obj.pool.get('res.users').company_get(cr, uid, uid)
778         res = False
779         newval = (id_val and obj_dest+','+str(id_val)) or False
780         if (newval != default_val) and newval:
781             propdef = obj.pool.get('ir.model.fields').browse(cr, uid,
782                     definition_id, context=context)
783             res = property.create(cr, uid, {
784                 'name': propdef.name,
785                 'value': newval,
786                 'res_id': obj._name+','+str(id),
787                 'company_id': company_id,
788                 'fields_id': definition_id
789             }, context=context)
790         return res
791
792     def _fnct_read(self, obj, cr, uid, ids, prop, val, context=None):
793         if not context:
794             context = {}
795         property = obj.pool.get('ir.property')
796         definition_id = self._field_get(cr, uid, obj._name, prop)
797
798         nid = property.search(cr, uid, [('fields_id', '=', definition_id),
799             ('res_id', '=', False)])
800         default_val = False
801         if nid:
802             d = property.browse(cr, uid, nid[0], context).value
803             default_val = (d and int(d.split(',')[1])) or False
804
805         vids = [obj._name + ',' + str(id) for id in  ids]
806         nids = property.search(cr, uid, [('fields_id', '=', definition_id),
807             ('res_id', 'in', vids)])
808
809         res = {}
810         for id in ids:
811             res[id] = default_val
812         for prop in property.browse(cr, uid, nids):
813             res[int(prop.res_id.split(',')[1])] = (prop.value and \
814                     int(prop.value.split(',')[1])) or False
815
816         obj = obj.pool.get(self._obj)
817         names = dict(obj.name_get(cr, uid, filter(None, res.values()), context))
818         for r in res.keys():
819             if res[r] and res[r] in names:
820                 res[r] = (res[r], names[res[r]])
821             else:
822                 res[r] = False
823         return res
824
825     def _field_get(self, cr, uid, model_name, prop):
826         if not self.field_id.get(cr.dbname):
827             cr.execute('SELECT id \
828                     FROM ir_model_fields \
829                     WHERE name=%s AND model=%s', (prop, model_name))
830             res = cr.fetchone()
831             self.field_id[cr.dbname] = res and res[0]
832         return self.field_id[cr.dbname]
833
834     def __init__(self, obj_prop, **args):
835         self.field_id = {}
836         function.__init__(self, self._fnct_read, False, self._fnct_write,
837                 (obj_prop, ), **args)
838
839     def restart(self):
840         self.field_id = {}
841
842
843 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
844