# -*- 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')