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.

13 lines
407 B

  1. # -*- coding: utf-8 -*-
  2. # Copyright 2013 XCG Consulting (http://odoo.consulting)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. from openerp import fields, models
  5. class Py3oFusionFiletype(models.Model):
  6. _name = 'py3o.fusion.filetype'
  7. _rec_name = 'human_ext'
  8. fusion_ext = fields.Char("Fusion Extension", siez=8)
  9. human_ext = fields.Char("Human readble extension", size=8)