I have a float field in a wizard.
In the wizard .py:
_columns = {'p1': fields.float('P1', digits=(16, 2))}
When I open the wizard, I can see 0,00 into the input field, but when I read data from the wizard, I get "False":
x = self.datas[1]['p1'] # Returns False, not 0.0
wiz = self.browse(cursor, uid, ids[0], context)
x = wiz.p1 # Also returns False