mirror of
https://github.com/bringout/oca-edi.git
synced 2026-04-19 03:32:03 +02:00
13 lines
481 B
Python
13 lines
481 B
Python
# Copyright 2017-2022 Akretion France
|
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class BaseFacturX(models.AbstractModel):
|
|
_name = "base.facturx"
|
|
_description = "Common methods to generate and parse Factur-X and Order-X"
|
|
|
|
# This class will certainly start to be used with the implementation
|
|
# of Order-X sooner or later: http://fnfe-mpe.org/factur-x/order-x/
|