[FIX] account_voucher: do not allow user to change journal when number is non empty
[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 from tools import cache
24 import pooler
25
26 class decimal_precision(osv.osv):
27     _name = 'decimal.precision'
28     _columns = {
29         'name': fields.char('Usage', size=50, select=True, required=True),
30         'digits': fields.integer('Digits', required=True),
31     }
32     _defaults = {
33         'digits': 2,
34     }
35
36     _sql_constraints = [
37         ('name_uniq', 'unique (name)', """Only one value can be defined for each given usage!"""),
38     ]
39
40     @cache(skiparg=3)
41     def precision_get(self, cr, uid, application):
42         cr.execute('select digits from decimal_precision where name=%s', (application,))
43         res = cr.fetchone()
44         return res[0] if res else 2
45
46     def write(self, cr, uid, ids, data, *args, **argv):
47         res = super(decimal_precision, self).write(cr, uid, ids, data, *args, **argv)
48         self.precision_get.clear_cache(cr.dbname)
49         for obj in self.pool.obj_list():
50             for colname, col in self.pool.get(obj)._columns.items():
51                 if isinstance(col, (fields.float, fields.function)):
52                     col.digits_change(cr)
53         return res
54
55 decimal_precision()
56
57 def get_precision(application):
58     def change_digit(cr):
59         res = pooler.get_pool(cr.dbname).get('decimal.precision').precision_get(cr, 1, application)
60         return (16, res)
61     return change_digit
62
63 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: