[IMP] report_qweb_signer: Black python code

This commit is contained in:
Laurent-Corron
2021-06-29 10:10:17 +02:00
committed by Omar (Comunitea)
parent e9665dcfb3
commit b2b51f0e4c
13 changed files with 217 additions and 183 deletions

View File

@@ -1,13 +1,14 @@
# Copyright 2015 Tecnativa - Antonio Espinosa
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import models, fields
from odoo import fields, models
class ResCompany(models.Model):
_inherit = 'res.company'
_inherit = "res.company"
report_certificate_ids = fields.One2many(
string="PDF report certificates",
comodel_name='report.certificate',
inverse_name='company_id')
comodel_name="report.certificate",
inverse_name="company_id",
)