odoo/ext/custom-addons/dp_reports/models/res_company.py

10 lines
184 B
Python

from odoo import models, fields, api
class Company(models.Model):
_inherit = 'res.company'
external_report_layout = fields.Selection(selection_add=[("custom", "Custom")])