# -*- encoding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # ############################################################################## from osv import osv,fields import pickle from tools.translate import _ class ir_values(osv.osv): _name = 'ir.values' def _value_unpickle(self, cursor, user, ids, name, arg, context=None): res = {} for report in self.browse(cursor, user, ids, context=context): value = report[name[:-9]] if not report.object and value: try: value = str(pickle.loads(value)) except: pass res[report.id] = value return res def _value_pickle(self, cursor, user, id, name, value, arg, context=None): if context is None: context = {} ctx = context.copy() if 'read_delta' in ctx: del ctx['read_delta'] if not self.browse(cursor, user, id, context=context).object: value = pickle.dumps(eval(value)) self.write(cursor, user, id, {name[:-9]: value}, context=ctx) def onchange_object_id(self, cr, uid, ids, object_id, context={}): if not object_id: return {} act = self.pool.get('ir.model').browse(cr, uid, object_id, context=context) return { 'value': {'model': act.model} } def onchange_action_id(self, cr, uid, ids, action_id, context={}): if not action_id: return {} act = self.pool.get('ir.actions.actions').browse(cr, uid, action_id, context=context) return { 'value': {'value_unpickle': act.type+','+str(act.id)} } _columns = { 'name': fields.char('Name', size=128), 'model_id': fields.many2one('ir.model', 'Object', size=128, help="This field is not used, it only helps you to select a good model."), 'model': fields.char('Object Name', size=128), 'action_id': fields.many2one('ir.actions.actions', 'Action', help="This field is not used, it only helps you to select the right action."), 'value': fields.text('Value'), 'value_unpickle': fields.function(_value_unpickle, fnct_inv=_value_pickle, method=True, type='text', string='Value'), 'object': fields.boolean('Is Object'), 'key': fields.selection([('action','Action'),('default','Default')], 'Type', size=128), 'key2': fields.selection([ ('client_action_multi', 'Wizard in Forms'), ('client_action_relate', 'Relate on Object'), ('client_print_multi', 'Print'), ('tree_but_action', 'Wizard in Tree'), ('tree_but_open', 'Open on Tree'), ('','/') ], string='Event Type', size=256, help="The kind of action or button in the client side that will trigger the action."), 'meta': fields.text('Meta Datas'), 'meta_unpickle': fields.function(_value_unpickle, fnct_inv=_value_pickle, method=True, type='text', string='Meta Datas'), 'res_id': fields.integer('Object ID', help="Keep 0 if the action must appear on all resources."), 'user_id': fields.many2one('res.users', 'User', ondelete='cascade'), 'company_id': fields.many2one('res.company', 'Company') } _defaults = { 'key': lambda *a: 'action', 'key2': lambda *a: 'tree_but_open', 'company_id': lambda *a: False } def _auto_init(self, cr, context={}): super(ir_values, self)._auto_init(cr, context) cr.execute('SELECT indexname FROM pg_indexes WHERE indexname = \'ir_values_key_model_key2_index\'') if not cr.fetchone(): cr.execute('CREATE INDEX ir_values_key_model_key2_index ON ir_values (key, model, key2)') cr.commit() def set(self, cr, uid, key, key2, name, models, value, replace=True, isobject=False, meta=False, preserve_user=False, company=False): if type(value)==type(u''): value = value.encode('utf8') if not isobject: value = pickle.dumps(value) if meta: meta = pickle.dumps(meta) ids_res = [] for model in models: if type(model)==type([]) or type(model)==type(()): model,res_id = model else: res_id=False if replace: if key in ('meta', 'default'): ids = self.search(cr, uid, [ ('key', '=', key), ('key2', '=', key2), ('name', '=', name), ('model', '=', model), ('res_id', '=', res_id), ('user_id', '=', preserve_user and uid) ]) else: ids = self.search(cr, uid, [ ('key', '=', key), ('key2', '=', key2), ('value', '=', value), ('model', '=', model), ('res_id', '=', res_id), ('user_id', '=', preserve_user and uid) ]) self.unlink(cr, uid, ids) vals = { 'name': name, 'value': value, 'model': model, 'object': isobject, 'key': key, 'key2': key2 and key2[:200], 'meta': meta, 'user_id': preserve_user and uid, } if company: cid = self.pool.get('res.users').browse(cr, uid, uid, context={}).company_id.id vals['company_id']=cid if res_id: vals['res_id']= res_id ids_res.append(self.create(cr, uid, vals)) return ids_res def get(self, cr, uid, key, key2, models, meta=False, context={}, res_id_req=False, without_user=True, key2_req=True): result = [] for m in models: if type(m)==type([]) or type(m)==type(()): m,res_id = m else: res_id=False where1 = ['key=%s','model=%s'] where2 = [key,str(m)] where_opt = [] if key2: where1.append('key2=%s') where2.append(key2[:200]) else: dest = where1 if not key2_req or meta: dest=where_opt dest.append('key2 is null') if res_id_req and (models[-1][0]==m): if res_id: where1.append('res_id=%d' % (res_id,)) else: where1.append('(res_id is NULL)') elif res_id: if (models[-1][0]==m): where1.append('(res_id=%d or (res_id is null))' % (res_id,)) where_opt.append('res_id=%d' % (res_id,)) else: where1.append('res_id=%d' % (res_id,)) # if not without_user: where_opt.append('user_id=%d' % (uid,)) result = [] ok = True result_ids = {} while ok: if not where_opt: cr.execute('select id,name,value,object,meta, key from ir_values where ' +\ ' and '.join(where1)+' and user_id is null', where2) else: cr.execute('select id,name,value,object,meta, key from ir_values where ' +\ ' and '.join(where1+where_opt), where2) for rec in cr.fetchall(): if rec[0] in result_ids: continue result.append(rec) result_ids[rec[0]] = True if len(where_opt): where_opt.pop() else: ok = False if result: break if not result: return [] def _result_get(x, keys): if x[1] in keys: return False keys.append(x[1]) if x[3]: model,id = x[2].split(',') id = int(id) fields = self.pool.get(model).fields_get_keys(cr, uid) pos = 0 while pos 0: group_ids = ','.join([ str(x) for x in r[2]['groups_id']]) cr.execute("select count(*) from res_groups_users_rel where gid in (%s) and uid='%s'" % (group_ids, uid)) gr_ids = cr.fetchall() if not gr_ids[0][0] > 0: res2.remove(r) if r[1]=='Menuitem' and not res2: raise osv.except_osv('Error !','You do not have the permission to perform this operation !!!') # else: # #raise osv.except_osv('Error !','You have not permission to perform operation !!!') # res2.remove(r) return res2 ir_values() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: