Odoo18-Base/odoo/addons/test_inherit_depends/models.py
2025-01-06 10:57:38 +07:00

9 lines
225 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class PublishedFoo(models.Model):
_name = 'test_new_api.foo'
_inherit = ['test_new_api.foo', 'test_inherit.mixin']