Files
Enofirm-Temp/odoo/addons/test_inherit_depends/models.py
T
2026-09-18 13:55:25 +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']