mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-14 18:22:04 +00:00
20 lines
512 B
Python
20 lines
512 B
Python
# Copyright 2020 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
full_header_img = fields.Binary(
|
|
string="Full header image",
|
|
help="This image will replace all header.",
|
|
attachment=True,
|
|
)
|
|
full_footer_img = fields.Binary(
|
|
string="Full footer image",
|
|
help="This image will replace all footer.",
|
|
attachment=True,
|
|
)
|