Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions edi_exchange_type_auto/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
wait for the bot
1 change: 1 addition & 0 deletions edi_exchange_type_auto/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
20 changes: 20 additions & 0 deletions edi_exchange_type_auto/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2022 Camptocamp SA
# @author: Simone Orsi <simahawk@gmail.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "EDI Exchange type automation",
"summary": """
Ease automation of EDI exchange types within the EDI framework.
""",
"version": "14.0.1.0.0",
"development_status": "Alpha",
"license": "AGPL-3",
"website": "https://github.com/OCA/edi-framework",
"author": "Camptocamp,Odoo Community Association (OCA)",
"maintainers": ["simahawk"],
"depends": ["edi_oca"],
"data": [
"views/edi_exchange_type_rule.xml",
],
}
2 changes: 2 additions & 0 deletions edi_exchange_type_auto/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import edi_auto_exchange_consumer_mixin
from . import edi_exchange_type_rule
Loading