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