1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/odoo/addons/test_inherit_depends/models.py
2024-12-10 09:04:09 +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']