Laurent Mignon
8 years ago
committed by
Laurent Mignon (ACSONE)
8 changed files with 63 additions and 66 deletions
-
5report_py3o/__openerp__.py
-
6report_py3o/data/py3o.fusion.filetype.csv
-
1report_py3o/models/__init__.py
-
37report_py3o/models/ir_report.py
-
13report_py3o/models/py3o_fusion_filetype.py
-
47report_py3o/py3o_parser.py
-
2report_py3o/views/ir_report.xml
@ -1,6 +0,0 @@ |
|||||
id,fusion_ext,human_ext |
|
||||
py3o_fusion_filetype_odt,odt,odt |
|
||||
py3o_fusion_filetype_ods,ods,ods |
|
||||
py3o_fusion_filetype_doc,doc,doc |
|
||||
py3o_fusion_filetype_docx,docx,docx |
|
||||
py3o_fusion_filetype_pdf,pdf,pdf |
|
@ -1,4 +1,3 @@ |
|||||
from . import ir_report |
from . import ir_report |
||||
from . import py3o_fusion_filetype |
|
||||
from . import py3o_template |
from . import py3o_template |
||||
from . import py3o_server |
from . import py3o_server |
@ -1,13 +0,0 @@ |
|||||
# -*- coding: utf-8 -*- |
|
||||
# Copyright 2013 XCG Consulting (http://odoo.consulting) |
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|
||||
from openerp import fields, models |
|
||||
|
|
||||
|
|
||||
class Py3oFusionFiletype(models.Model): |
|
||||
_name = 'py3o.fusion.filetype' |
|
||||
|
|
||||
_rec_name = 'human_ext' |
|
||||
|
|
||||
fusion_ext = fields.Char("Fusion Extension", siez=8) |
|
||||
human_ext = fields.Char("Human readble extension", size=8) |
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue