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

  1. from openerp.osv import fields, osv
  2. class py3o_fusion_filetype(osv.Model):
  3. _name = 'py3o.fusion.filetype'
  4. _rec_name = 'human_ext'
  5. _columns = {
  6. 'fusion_ext': fields.char(
  7. u"Fusion Extension",
  8. size=8,
  9. ),
  10. 'human_ext': fields.char(
  11. u"Human readble extension",
  12. size=8,
  13. ),
  14. }