mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
11 lines
272 B
Python
11 lines
272 B
Python
# Copyright 2023 Quartile Limited
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class IrModel(models.Model):
|
|
_inherit = "ir.model"
|
|
|
|
add_open_tab_field = fields.Boolean(help="Adds open-tab field in list views.")
|