OCA reporting engine fork for dev and update.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
369 B

from openerp.osv import fields, osv
class py3o_fusion_filetype(osv.Model):
_name = 'py3o.fusion.filetype'
_rec_name = 'human_ext'
_columns = {
'fusion_ext': fields.char(
u"Fusion Extension",
size=8,
),
'human_ext': fields.char(
u"Human readble extension",
size=8,
),
}