revert_bad_bugfix
[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 self._context:
367             context = context.copy()
368             context.update(self._context)
369         if not values:
370             values = {}
371         res = {}
372         for id in ids:
373             res[id] = []
374         ids2 = obj.pool.get(self._obj).search(cr, user, [(self._fields_id, 'in', ids)], limit=self._limit, context=context)
375         for r in obj.pool.get(self._obj).read(cr, user, ids2, [self._fields_id], context=context, load='_classic_write'):
376             if r[self._fields_id] in res:
377                 res[r[self._fields_id]].append(r['id'])
378         return res
379
380     def set_memory(self, cr, obj, id, field, values, user=None, context=None):
381         if not context:
382             context = {}
383         if self._context:
384             context = context.copy()
385         context.update(self._context)
386         if not values:
387             return
388         obj = obj.pool.get(self._obj)
389         for act in values:
390             if act[0] == 0:
391                 act[2][self._fields_id] = id
392                 obj.create(cr, user, act[2], context=context)
393             elif act[0] == 1:
394                 obj.write(cr, user, [act[1]], act[2], context=context)
395             elif act[0] == 2:
396                 obj.unlink(cr, user, [act[1]], context=context)
397             elif act[0] == 3:
398                 obj.datas[act[1]][self._fields_id] = False
399             elif act[0] == 4:
400                 obj.datas[act[1]] = id
401             elif act[0] == 5:
402                 for o in obj.datas.values():
403                     if o[self._fields_id] == id:
404                         o[self._fields_id] = False
405             elif act[0] == 6:
406                 for id2 in (act[2] or []):
407                     obj.datas[id2][self._fields_id] = id
408
409     def search_memory(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like', context=None):
410         raise _('Not Implemented')
411
412     def get(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
413         if not context:
414             context = {}
415         if self._context:
416             context = context.copy()
417         context.update(self._context)
418         if not values:
419             values = {}
420         res = {}
421         for id in ids:
422             res[id] = []
423         ids2 = obj.pool.get(self._obj).search(cr, user, [(self._fields_id, 'in', ids)], limit=self._limit, context=context)
424         for r in obj.pool.get(self._obj)._read_flat(cr, user, ids2, [self._fields_id], context=context, load='_classic_write'):
425             res[r[self._fields_id]].append(r['id'])
426         return res
427
428     def set(self, cr, obj, id, field, values, user=None, context=None):
429         if not context:
430             context = {}
431         if self._context:
432             context = context.copy()
433         context.update(self._context)
434         if not values:
435             return
436         _table = obj.pool.get(self._obj)._table
437         obj = obj.pool.get(self._obj)
438         for act in values:
439             if act[0] == 0:
440                 act[2][self._fields_id] = id
441                 obj.create(cr, user, act[2], context=context)
442             elif act[0] == 1:
443                 obj.write(cr, user, [act[1]], act[2], context=context)
444             elif act[0] == 2:
445                 obj.unlink(cr, user, [act[1]], context=context)
446             elif act[0] == 3:
447                 cr.execute('update '+_table+' set '+self._fields_id+'=null where id=%s', (act[1],))
448             elif act[0] == 4:
449                 cr.execute('update '+_table+' set '+self._fields_id+'=%s where id=%s', (id, act[1]))
450             elif act[0] == 5:
451                 cr.execute('update '+_table+' set '+self._fields_id+'=null where '+self._fields_id+'=%s', (id,))
452             elif act[0] == 6:
453                 if not act[2]:
454                     ids2 = [0]
455                 else:
456                     ids2 = act[2]
457                 cr.execute('update '+_table+' set '+self._fields_id+'=NULL where '+self._fields_id+'=%s and id not in ('+','.join(map(str, ids2))+')', (id,))
458                 if act[2]:
459                     cr.execute('update '+_table+' set '+self._fields_id+'=%s where id in ('+','.join(map(str, act[2]))+')', (id,))
460
461     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like'):
462         return obj.pool.get(self._obj).name_search(cr, uid, value, self._domain, offset, limit)
463
464
465 #
466 # Values: (0, 0,  { fields })    create
467 #         (1, ID, { fields })    modification
468 #         (2, ID)                remove
469 #         (3, ID)                unlink
470 #         (4, ID)                link
471 #         (5, ID)                unlink all
472 #         (6, ?, ids)            set a list of links
473 #
474 class many2many(_column):
475     _classic_read = False
476     _classic_write = False
477     _type = 'many2many'
478
479     def __init__(self, obj, rel, id1, id2, string='unknown', limit=None, **args):
480         _column.__init__(self, string=string, **args)
481         self._obj = obj
482         if '.' in rel:
483             raise Exception(_('The second argument of the many2many field %s must be a SQL table !'\
484                 'You used %s, which is not a valid SQL table name.')% (string,rel))
485         self._rel = rel
486         self._id1 = id1
487         self._id2 = id2
488         self._limit = limit
489
490     def get(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
491         if not context:
492             context = {}
493         if not values:
494             values = {}
495         res = {}
496         if not ids:
497             return res
498         for id in ids:
499             res[id] = []
500         ids_s = ','.join(map(str, ids))
501         limit_str = self._limit is not None and ' limit %d' % self._limit or ''
502         obj = obj.pool.get(self._obj)
503
504         d1, d2 = obj.pool.get('ir.rule').domain_get(cr, user, obj._name)
505         if d1:
506             d1 = ' and ' + d1
507
508         cr.execute('SELECT '+self._rel+'.'+self._id2+','+self._rel+'.'+self._id1+' \
509                 FROM '+self._rel+' , '+obj._table+' \
510                 WHERE '+self._rel+'.'+self._id1+' in ('+ids_s+') \
511                     AND '+self._rel+'.'+self._id2+' = '+obj._table+'.id '+d1
512                 +limit_str+' order by '+obj._table+'.'+obj._order+' offset %s',
513                 d2+[offset])
514         for r in cr.fetchall():
515             res[r[1]].append(r[0])
516         return res
517
518     def set(self, cr, obj, id, name, values, user=None, context=None):
519         if not context:
520             context = {}
521         if not values:
522             return
523         obj = obj.pool.get(self._obj)
524         for act in values:
525             if act[0] == 0:
526                 idnew = obj.create(cr, user, act[2])
527                 cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s,%s)', (id, idnew))
528             elif act[0] == 1:
529                 obj.write(cr, user, [act[1]], act[2], context=context)
530             elif act[0] == 2:
531                 obj.unlink(cr, user, [act[1]], context=context)
532             elif act[0] == 3:
533                 cr.execute('delete from '+self._rel+' where ' + self._id1 + '=%s and '+ self._id2 + '=%s', (id, act[1]))
534             elif act[0] == 4:
535                 cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s,%s)', (id, act[1]))
536             elif act[0] == 5:
537                 cr.execute('update '+self._rel+' set '+self._id2+'=null where '+self._id2+'=%s', (id,))
538             elif act[0] == 6:
539
540                 d1, d2 = obj.pool.get('ir.rule').domain_get(cr, user, obj._name)
541                 if d1:
542                     d1 = ' and ' + d1
543                 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)
544
545                 for act_nbr in act[2]:
546                     cr.execute('insert into '+self._rel+' ('+self._id1+','+self._id2+') values (%s, %s)', (id, act_nbr))
547
548     #
549     # TODO: use a name_search
550     #
551     def search(self, cr, obj, args, name, value, offset=0, limit=None, uid=None, operator='like'):
552         return obj.pool.get(self._obj).search(cr, uid, args+self._domain+[('name', operator, value)], offset, limit)
553
554     def get_memory(self, cr, obj, ids, name, user=None, offset=0, context=None, values=None):
555         result = {}
556         for id in ids:
557             result[id] = obj.datas[id].get(name, [])
558         return result
559
560     def set_memory(self, cr, obj, id, name, values, user=None, context=None):
561         if not values:
562             return
563         for act in values:
564             # TODO: use constants instead of these magic numbers
565             if act[0] == 0:
566                 raise _('Not Implemented')
567             elif act[0] == 1:
568                 raise _('Not Implemented')
569             elif act[0] == 2:
570                 raise _('Not Implemented')
571             elif act[0] == 3:
572                 raise _('Not Implemented')
573             elif act[0] == 4:
574                 raise _('Not Implemented')
575             elif act[0] == 5:
576                 raise _('Not Implemented')
577             elif act[0] == 6:
578                 obj.datas[id][name] = act[2]
579
580
581 # ---------------------------------------------------------
582 # Function fields
583 # ---------------------------------------------------------
584 class function(_column):
585     _classic_read = False
586     _classic_write = False
587     _type = 'function'
588     _properties = True
589
590 #
591 # multi: compute several fields in one call
592 #
593     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):
594         _column.__init__(self, **args)
595         self._obj = obj
596         self._method = method
597         self._fnct = fnct
598         self._fnct_inv = fnct_inv
599         self._arg = arg
600         self._multi = multi
601         if 'relation' in args:
602             self._obj = args['relation']
603         self._fnct_inv_arg = fnct_inv_arg
604         if not fnct_inv:
605             self.readonly = 1
606         self._type = type
607         self._fnct_search = fnct_search
608         self.store = store
609         if store:
610             self._classic_read = True
611             self._classic_write = True
612             if type=='binary':
613                 self._symbol_get=lambda x:x and str(x)
614
615         if type == 'float':
616             self._symbol_c = float._symbol_c
617             self._symbol_f = float._symbol_f
618             self._symbol_set = float._symbol_set
619
620     def search(self, cr, uid, obj, name, args):
621         if not self._fnct_search:
622             #CHECKME: should raise an exception
623             return []
624         return self._fnct_search(obj, cr, uid, obj, name, args)
625
626     def get(self, cr, obj, ids, name, user=None, context=None, values=None):
627         if not context:
628             context = {}
629         if not values:
630             values = {}
631         res = {}
632         if self._method:
633             res = self._fnct(obj, cr, user, ids, name, self._arg, context)
634         else:
635             res = self._fnct(cr, obj._table, ids, name, self._arg, context)
636
637         if self._type == 'binary' and context.get('bin_size', False):
638             # convert the data returned by the function with the size of that data...
639             res = dict(map(lambda (x, y): (x, tools.human_size(len(y or ''))), res.items()))
640         return res
641     get_memory = get
642
643     def set(self, cr, obj, id, name, value, user=None, context=None):
644         if not context:
645             context = {}
646         if self._fnct_inv:
647             self._fnct_inv(obj, cr, user, id, name, value, self._fnct_inv_arg, context)
648     set_memory = set
649
650 # ---------------------------------------------------------
651 # Related fields
652 # ---------------------------------------------------------
653
654 class related(function):
655
656     def _fnct_search(self, tobj, cr, uid, obj=None, name=None, domain=None, context={}):
657         self._field_get2(cr, uid, obj, context)
658         i = len(self._arg)-1
659         sarg = name
660         while i>0:
661             if type(sarg) in [type([]), type( (1,) )]:
662                 where = [(self._arg[i], 'in', sarg)]
663             else:
664                 where = [(self._arg[i], '=', sarg)]
665             if domain:
666                 where = map(lambda x: (self._arg[i],x[1], x[2]), domain)
667                 domain = []
668             sarg = obj.pool.get(self._relations[i]['object']).search(cr, uid, where, context=context)
669             i -= 1
670         return [(self._arg[0], 'in', sarg)]
671
672     def _fnct_write(self,obj,cr, uid, ids, field_name, values, args, context=None):
673         if values and field_name:
674             self._field_get2(cr, uid, obj, context)
675             relation = obj._name
676             res = {}
677             if type(ids) != type([]):
678                 ids=[ids]
679             objlst = obj.browse(cr, uid, ids)
680             for data in objlst:
681                 t_id=None
682                 t_data = data
683                 relation = obj._name
684                 for i in range(len(self.arg)):
685                     field_detail = self._relations[i]
686                     relation = field_detail['object']
687                     if not t_data[self.arg[i]]:
688                         t_data = False
689                         break
690                     if field_detail['type'] in ('one2many', 'many2many'):
691                         t_id=t_data.id
692                         t_data = t_data[self.arg[i]][0]
693                     else:
694                         t_id=t_data['id']
695                         t_data = t_data[self.arg[i]]
696                 if t_id:
697                     obj.pool.get(field_detail['object']).write(cr,uid,[t_id],{args[-1]:values})
698
699     def _fnct_read(self, obj, cr, uid, ids, field_name, args, context=None):
700         self._field_get2(cr, uid, obj, context)
701         if not ids: return {}
702         relation = obj._name
703         res = {}.fromkeys(ids, False)
704         objlst = obj.browse(cr, uid, ids)
705         for data in objlst:
706             if not data:
707                 continue
708             t_data = data
709             relation = obj._name
710             for i in range(len(self.arg)):
711                 field_detail = self._relations[i]
712                 relation = field_detail['object']
713                 try:
714                     if not t_data[self.arg[i]]:
715                         t_data = False
716                         break
717                 except:
718                     t_data = False
719                     break
720                 if field_detail['type'] in ('one2many', 'many2many'):
721                     t_data = t_data[self.arg[i]][0]
722                 else:
723                     t_data = t_data[self.arg[i]]
724             if type(t_data) == type(objlst[0]):
725                 res[data.id] = t_data.id
726             else:
727                 res[data.id] = t_data
728
729         if self._type=='many2one':
730             ids = filter(None, res.values())
731             if ids:
732                 ng = dict(obj.pool.get(self._obj).name_get(cr, uid, ids, context=context))
733                 for r in res:
734                     if res[r]:
735                         res[r] = (res[r], ng[res[r]])
736         return res
737
738     def __init__(self, *arg, **args):
739         self.arg = arg
740         self._relations = []
741         super(related, self).__init__(self._fnct_read, arg, self._fnct_write, fnct_inv_arg=arg, method=True, fnct_search=self._fnct_search, **args)
742
743     def _field_get2(self, cr, uid, obj, context={}):
744         if self._relations:
745             return
746         obj_name = obj._name
747         for i in range(len(self._arg)):
748             f = obj.pool.get(obj_name).fields_get(cr, uid, [self._arg[i]], context=context)[self._arg[i]]
749             self._relations.append({
750                 'object': obj_name,
751                 'type': f['type']
752
753             })
754             if f.get('relation',False):
755                 obj_name = f['relation']
756                 self._relations[-1]['relation'] = f['relation']
757
758 # ---------------------------------------------------------
759 # Serialized fields
760 # ---------------------------------------------------------
761 class serialized(_column):
762     def __init__(self, string='unknown', serialize_func=repr, deserialize_func=eval, type='text', **args):
763         self._serialize_func = serialize_func
764         self._deserialize_func = deserialize_func
765         self._type = type
766         self._symbol_set = (self._symbol_c, self._serialize_func)
767         self._symbol_get = self._deserialize_func
768         super(serialized, self).__init__(string=string, **args)
769
770
771 class property(function):
772
773     def _fnct_write(self, obj, cr, uid, id, prop, id_val, val, context=None):
774         if not context:
775             context = {}
776         (obj_dest,) = val
777         definition_id = self._field_get(cr, uid, obj._name, prop)
778
779         property = obj.pool.get('ir.property')
780         nid = property.search(cr, uid, [('fields_id', '=', definition_id),
781             ('res_id', '=', obj._name+','+str(id))])
782         while len(nid):
783             cr.execute('DELETE FROM ir_property WHERE id=%s', (nid.pop(),))
784
785         nid = property.search(cr, uid, [('fields_id', '=', definition_id),
786             ('res_id', '=', False)])
787         default_val = False
788         if nid:
789             default_val = property.browse(cr, uid, nid[0], context).value
790
791         company_id = obj.pool.get('res.users').company_get(cr, uid, uid)
792         res = False
793         newval = (id_val and obj_dest+','+str(id_val)) or False
794         if (newval != default_val) and newval:
795             propdef = obj.pool.get('ir.model.fields').browse(cr, uid,
796                     definition_id, context=context)
797             res = property.create(cr, uid, {
798                 'name': propdef.name,
799                 'value': newval,
800                 'res_id': obj._name+','+str(id),
801                 'company_id': company_id,
802                 'fields_id': definition_id
803             }, context=context)
804         return res
805
806     def _fnct_read(self, obj, cr, uid, ids, prop, val, context=None):
807         if not context:
808             context = {}
809         property = obj.pool.get('ir.property')
810         definition_id = self._field_get(cr, uid, obj._name, prop)
811
812         nid = property.search(cr, uid, [('fields_id', '=', definition_id),
813             ('res_id', '=', False)])
814         default_val = False
815         if nid:
816             d = property.browse(cr, uid, nid[0], context).value
817             default_val = (d and int(d.split(',')[1])) or False
818
819         vids = [obj._name + ',' + str(id) for id in  ids]
820         nids = property.search(cr, uid, [('fields_id', '=', definition_id),
821             ('res_id', 'in', vids)])
822
823         res = {}
824         for id in ids:
825             res[id] = default_val
826         for prop in property.browse(cr, uid, nids):
827             res[int(prop.res_id.split(',')[1])] = (prop.value and \
828                     int(prop.value.split(',')[1])) or False
829
830         obj = obj.pool.get(self._obj)
831         names = dict(obj.name_get(cr, uid, filter(None, res.values()), context))
832         for r in res.keys():
833             if res[r] and res[r] in names:
834                 res[r] = (res[r], names[res[r]])
835             else:
836                 res[r] = False
837         return res
838
839     def _field_get(self, cr, uid, model_name, prop):
840         if not self.field_id.get(cr.dbname):
841             cr.execute('SELECT id \
842                     FROM ir_model_fields \
843                     WHERE name=%s AND model=%s', (prop, model_name))
844             res = cr.fetchone()
845             self.field_id[cr.dbname] = res and res[0]
846         return self.field_id[cr.dbname]
847
848     def __init__(self, obj_prop, **args):
849         self.field_id = {}
850         function.__init__(self, self._fnct_read, False, self._fnct_write,
851                 (obj_prop, ), **args)
852
853     def restart(self):
854         self.field_id = {}
855
856
857 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
858