Compare commits

...

10 commits
main ... 6.0

Author SHA1 Message Date
Frederik Jaeckel
fdd51508fa Version 6.0.5 2025-05-02 14:46:05 +02:00
Frederik Jaeckel
be33627168 Merge branch 'main' into 6.0 2025-05-02 14:45:21 +02:00
Frederik Jaeckel
dc9b7f4ddf Version 6.0.4 2025-01-29 11:05:53 +01:00
Frederik Jaeckel
b7d6e00390 Merge branch 'main' into 6.0 2025-01-29 11:03:25 +01:00
Frederik Jaeckel
f42cf06662 Version 6.0.3 2025-01-27 16:33:45 +01:00
Frederik Jaeckel
e688664c55 Merge branch 'main' into 6.0 2025-01-27 16:30:03 +01:00
Frederik Jaeckel
592405e2fc Version 6.0.2 2025-01-24 09:36:12 +01:00
Frederik Jaeckel
df9ff9c47c Merge branch 'main' into 6.0 2025-01-24 09:32:12 +01:00
Frederik Jaeckel
3711df3a8f Version 6.0.1 2025-01-23 17:28:17 +01:00
Frederik Jaeckel
f6d110081c compatibility to Tryton 6.0 2025-01-23 17:27:20 +01:00
5 changed files with 38 additions and 5 deletions

View file

@ -9,12 +9,29 @@ pip install mds-document-incoming-invoice-xml
Requires Requires
======== ========
- Tryton 7.0 - Tryton 6.0
Changes Changes
======= =======
*7.0.0 - 19.12.2024* *6.0.5 - 02.05.2025*
- init - update copyright
*6.0.4 - 29.01.2025*
- add: Round unit_price + quantity to match the decimal places of the fields.
*6.0.3 - 27.01.2025*
- filter product-categories in configuration
*6.0.2 - 24.01.2025*
- fix: limit content-check to supplier-invoices
*6.0.1 - 23.01.2025*
- import of Factur-X (Basic, EN16931, Extended), CrossIndustryInvoice-D22
- with/without PDF-Container

View file

@ -34,7 +34,7 @@ with open(path.join(here, 'versiondep.txt'), encoding='utf-8') as f:
modversion[l2[0]] = {'min': l2[1], 'max': l2[2], 'prefix': l2[3]} modversion[l2[0]] = {'min': l2[1], 'max': l2[2], 'prefix': l2[3]}
# tryton-version # tryton-version
major_version = 7 major_version = 6
minor_version = 0 minor_version = 0
requires = ['pypdf', 'factur-x', 'lxml'] requires = ['pypdf', 'factur-x', 'lxml']

View file

@ -2,3 +2,18 @@
# This file is part of the document-incoming-invoice-xml-module # This file is part of the document-incoming-invoice-xml-module
# from m-ds for Tryton. The COPYRIGHT file at the top level of # from m-ds for Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms. # this repository contains the full copyright notices and license terms.
import trytond.tests.test_tryton
import unittest
from .test_module import XmlIncomingTestCase
__all__ = ['suite']
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
XmlIncomingTestCase))
return suite

View file

@ -1,5 +1,5 @@
[tryton] [tryton]
version=7.0.0 version=6.0.5
depends: depends:
document_incoming_invoice document_incoming_invoice
edocument_unece edocument_unece

View file

@ -0,0 +1 @@
document_incoming_invoice;6.0.0;6.0.999;mds