mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-14 18:22:04 +00:00
25 lines
795 B
Python
25 lines
795 B
Python
# Copyright 2013 XCG Consulting (http://flectra.consulting)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from flectra import fields, models
|
|
|
|
|
|
class Py3oTemplate(models.Model):
|
|
_name = "py3o.template"
|
|
_description = "Py3o template"
|
|
|
|
name = fields.Char(required=True)
|
|
py3o_template_data = fields.Binary("LibreOffice Template")
|
|
filetype = fields.Selection(
|
|
selection=[
|
|
("odt", "ODF Text Document"),
|
|
("ods", "ODF Spreadsheet"),
|
|
("odp", "ODF Presentation"),
|
|
("fodt", "ODF Text Document (Flat)"),
|
|
("fods", "ODF Spreadsheet (Flat)"),
|
|
("fodp", "ODF Presentation (Flat)"),
|
|
],
|
|
string="LibreOffice Template File Type",
|
|
required=True,
|
|
default="odt",
|
|
)
|