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

10 lines
220 B
Python

# -*- coding: utf-8 -*-
from odoo import models, fields
class Company(models.Model):
_inherit = 'res.company'
external_report_layout = fields.Selection(selection_add=[("custom", "Custom")], default='custom')