mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
15 lines
384 B
Python
15 lines
384 B
Python
# Copyright 2015 Tecnativa - Antonio Espinosa
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo 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",
|
|
)
|