Merge branch 'master' of openobject-server into mdv-gpl3-py26
[odoo/odoo.git] / bin / addons / base / ir / ir_default.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 from osv import fields,osv
24
25 class ir_default(osv.osv):
26     _name = 'ir.default'
27     _columns = {
28         'field_tbl': fields.char('Object',size=64),
29         'field_name': fields.char('Object Field',size=64),
30         'value': fields.char('Default Value',size=64),
31         'uid': fields.many2one('res.users', 'Users'),
32         'page': fields.char('View',size=64),
33         'ref_table': fields.char('Table Ref.',size=64),
34         'ref_id': fields.integer('ID Ref.',size=64),
35         'company_id': fields.many2one('res.company','Company')
36     }
37
38     def _get_company_id(self, cr, uid, context={}):
39         res = self.pool.get('res.users').read(cr, uid, [uid], ['company_id'], context=context)
40         if res and res[0]['company_id']:
41             return res[0]['company_id'][0]
42         return False
43
44     _defaults = {
45         'company_id': _get_company_id,
46     }
47 ir_default()
48