mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-14 18:22:04 +00:00
15 lines
387 B
Python
15 lines
387 B
Python
# Copyright 2015 Tecnativa - Antonio Espinosa
|
|
# 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"
|
|
|
|
report_certificate_ids = fields.One2many(
|
|
string="PDF report certificates",
|
|
comodel_name="report.certificate",
|
|
inverse_name="company_id",
|
|
)
|