[FIX] remove useless code

bzr revid: benoit.guillot@akretion.com.br-20120710195438-m7k2kkwbukzmc3bs
This commit is contained in:
Benoit Guillot 2012-07-10 21:54:38 +02:00
parent 0c82624467
commit dfa4806290
1 changed files with 0 additions and 9 deletions

View File

@ -96,15 +96,6 @@ class sale_configuration(osv.osv_memory):
'module_project_mrp': fields.boolean("Project MRP"),
'module_project': fields.boolean("Project"),
}
def _check_decimal(self, cr, uid, ids, context=None):
for decimal in self.browse(cr, uid, ids, context=context):
if decimal.decimal_precision > 20:
return False
return True
_constraints = [
(_check_decimal, 'Digits must be between 0 to 20 ', ['decimal_precision']),
]
def default_get(self, cr, uid, fields, context=None):
ir_model_data = self.pool.get('ir.model.data')