-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] account_invoice_import_facturx to v12
Update technical name of module to remove '-' Up-port PR OCA#78 Auto-creation of bank accounts upon invoice import is now optional Fix returned action when using the import wizard
- Loading branch information
1 parent
4edb6de
commit 80b848f
Showing
39 changed files
with
92 additions
and
352 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
234 changes: 0 additions & 234 deletions
234
account_invoice_import_factur-x/tests/files/Factur-X_BASIC-1.xml
This file was deleted.
Oops, something went wrong.
54 changes: 0 additions & 54 deletions
54
account_invoice_import_factur-x/tests/files/Factur-X_MINIMUM-1.xml
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import wizard |
14 changes: 7 additions & 7 deletions
14
...t_invoice_import_factur-x/__manifest__.py → ...nt_invoice_import_facturx/__manifest__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
# © 2015-2017 Akretion (Alexis de Lattre <[email protected]>) | ||
# Copyright 2015-2020 Akretion France (http://www.akretion.com/) | ||
# @author: Alexis de Lattre <[email protected]> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
'name': 'Account Invoice Import Factur-X', | ||
'version': '10.0.1.0.0', | ||
'category': 'Accounting & Finance', | ||
'version': '12.0.1.0.0', | ||
'category': 'Invoicing Management', | ||
'license': 'AGPL-3', | ||
'summary': 'Import ZUGFeRD and Factur-X supplier invoices/refunds', | ||
'summary': 'Import Factur-X/ZUGFeRD supplier invoices/refunds', | ||
'author': 'Akretion,Odoo Community Association (OCA)', | ||
'website': 'http://www.akretion.com', | ||
'depends': ['account_invoice_import', 'base_zugferd'], | ||
'website': 'https://github.com/OCA/edi', | ||
'depends': ['account_invoice_import', 'base_facturx'], | ||
'external_dependencies': {'python': ['facturx']}, | ||
'data': ['wizard/account_invoice_import_view.xml'], | ||
'demo': ['demo/demo_data.xml'], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* Alexis de Lattre <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This module is an extension of the module *account_invoice_import*: it adds the ability to import Factur-X 1.0 (i.e. ZUGFeRD 2.0) and older ZUGFeRD 1.0 invoices. The `Factur-X <http://fnfe-mpe.org/factur-x/>`_ standard is based on `CII <http://tfig.unece.org/contents/cross-industry-invoice-cii.htm>`_ (Cross-Industry Invoice) for electronic invoicing. A Factur-X invoice is a PDF invoice with an embedded XML file in CII format that carries structured information about the invoice. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
This module requires the Python library `factur-x <https://github.com/akretion/factur-x>`_ developped by Akretion. To install it, run: | ||
|
||
.. code:: | ||
sudo pip3 install --upgrade factur-x |
File renamed without changes
2 changes: 0 additions & 2 deletions
2
...invoice_import_factur-x/tests/__init__.py → ..._invoice_import_facturx/tests/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from . import test_facturx |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.