Compare commits
8 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
dc9b7f4ddf | ||
![]() |
b7d6e00390 | ||
![]() |
f42cf06662 | ||
![]() |
e688664c55 | ||
![]() |
592405e2fc | ||
![]() |
df9ff9c47c | ||
![]() |
3711df3a8f | ||
![]() |
f6d110081c |
6 changed files with 37 additions and 9 deletions
|
@ -1,5 +1,6 @@
|
||||||
Copyright (C) 2024-2025 martin-data services.
|
Copyright (C) 2015-2025 Cédric Krier.
|
||||||
Copyright (C) 2025 Mathias Behrle <mathiasb@m9s.biz>
|
Copyright (C) 2015-2025 B2CK SPRL.
|
||||||
|
Copyright (C) 2021-2025 martin-data services.
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
|
19
README.rst
19
README.rst
|
@ -9,12 +9,25 @@ 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.4 - 29.01.2025*
|
||||||
|
|
||||||
- init
|
- 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
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -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']
|
||||||
|
@ -85,8 +85,6 @@ setup(
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
'Programming Language :: Python :: 3.9',
|
'Programming Language :: Python :: 3.9',
|
||||||
'Programming Language :: Python :: 3.10',
|
'Programming Language :: Python :: 3.10',
|
||||||
'Programming Language :: Python :: 3.11',
|
|
||||||
'Programming Language :: Python :: 3.12',
|
|
||||||
],
|
],
|
||||||
|
|
||||||
keywords='tryton account invoice xrechnung edocument incoming',
|
keywords='tryton account invoice xrechnung edocument incoming',
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=7.0.0
|
version=6.0.4
|
||||||
depends:
|
depends:
|
||||||
document_incoming_invoice
|
document_incoming_invoice
|
||||||
edocument_unece
|
edocument_unece
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
document_incoming_invoice;6.0.0;6.0.999;mds
|
Loading…
Reference in a new issue