mirror of
https://github.com/OCA/intrastat-extrastat.git
synced 2025-02-16 17:13:41 +02:00
10 lines
282 B
Python
10 lines
282 B
Python
# Copyright 2021 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class IntrastatDeclarationTest(models.Model):
|
|
_inherit = ["mail.thread", "mail.activity.mixin", "intrastat.common"]
|
|
_name = "intrastat.declaration.test"
|