Files
reporting-engine/report_py3o/models/py3o_template.py
2020-10-21 19:13:32 +03:00

20 lines
589 B
Python

# -*- 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 Py3oTemplate(models.Model):
_name = 'py3o.template'
name = fields.Char(required=True)
py3o_template_data = fields.Binary("LibreOffice template")
filetype = fields.Selection(
selection=[
('odt', u"ODF Text Document"),
('ods', u"ODF Spreadsheet"),
],
string="LibreOffice Template File Type",
required=True,
default='odt')