Launchpad automatic translations update.
[odoo/odoo.git] / addons / decimal_precision / decimal_precision.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from osv import osv, fields
23 import tools
24 import pooler
25 from openerp import SUPERUSER_ID
26
27 class decimal_precision(osv.osv):
28     _name = 'decimal.precision'
29     _columns = {
30         'name': fields.char('Usage', size=50, select=True, required=True),
31         'digits': fields.integer('Digits', required=True),
32     }
33     _defaults = {
34         'digits': 2,
35     }
36
37     _sql_constraints = [
38         ('name_uniq', 'unique (name)', """Only one value can be defined for each given usage!"""),
39     ]
40
41     @tools.ormcache(skiparg=3)
42     def precision_get(self, cr, uid, application):
43         cr.execute('select digits from decimal_precision where name=%s', (application,))
44         res = cr.fetchone()
45         return res[0] if res else 2
46
47     def write(self, cr, uid, ids, data, *args, **argv):
48         res = super(decimal_precision, self).write(cr, uid, ids, data, *args, **argv)
49         self.precision_get.clear_cache(self)
50         for obj in self.pool.obj_list():
51             for colname, col in self.pool.get(obj)._columns.items():
52                 if isinstance(col, (fields.float, fields.function)):
53                     col.digits_change(cr)
54         return res
55
56 decimal_precision()
57
58 def get_precision(application):
59     def change_digit(cr):
60         res = pooler.get_pool(cr.dbname).get('decimal.precision').precision_get(cr, SUPERUSER_ID, application)
61         return (16, res)
62     return change_digit
63
64 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: