[FIX] ir_property: type (missing comma in dict).

bzr revid: vmt@openerp.com-20120322165837-9onm0e3o4rm3zc6u
This commit is contained in:
Vo Minh Thu 2012-03-22 17:58:37 +01:00
parent 05422654b6
commit 2c56c6fd4b
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class ir_property(osv.osv):
'fields_id': fields.many2one('ir.model.fields', 'Field', ondelete='cascade', required=True, select=1),
'value_float' : fields.float('Value'),
'value_integer' : fields.integer('Value')
'value_integer' : fields.integer('Value'),
'value_text' : fields.text('Value'), # will contain (char, text)
'value_binary' : fields.binary('Value'),
'value_reference': fields.reference('Value', selection=_models_get2, size=128),