Files
reporting-engine/report_qweb_signer/models/res_company.py
Pedro M. Baeza 4ef450ae6b [MIG] report_qweb_signer: Migration to 10.0
OCA Transbot updated translations from Transifex
2021-08-30 13:26:38 +02:00

15 lines
408 B
Python

# -*- coding: utf-8 -*-
# © 2015 Antiun Ingenieria S.L. - Antonio Espinosa
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import models, fields
class ResCompany(models.Model):
_inherit = 'res.company'
report_certificate_ids = fields.One2many(
string="PDF report certificates",
comodel_name='report.certificate',
inverse_name='company_id')