Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
![]() |
01616c6c4b |
5 changed files with 10 additions and 25 deletions
|
@ -1,6 +1,5 @@
|
|||
Copyright (C) 2015-2025 Cédric Krier.
|
||||
Copyright (C) 2015-2025 B2CK SPRL.
|
||||
Copyright (C) 2021-2025 martin-data services.
|
||||
Copyright (C) 2024-2025 martin-data services.
|
||||
Copyright (C) 2025 Mathias Behrle <mathiasb@m9s.biz>
|
||||
|
||||
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
|
||||
|
|
20
README.rst
20
README.rst
|
@ -9,26 +9,12 @@ pip install mds-document-incoming-invoice-xml
|
|||
|
||||
Requires
|
||||
========
|
||||
- Tryton 6.8
|
||||
- Tryton 7.0
|
||||
|
||||
|
||||
Changes
|
||||
=======
|
||||
|
||||
*6.8.4 - 29.01.2025*
|
||||
*7.0.0 - 19.12.2024*
|
||||
|
||||
- add: Round unit_price + quantity to match the decimal places of the fields.
|
||||
|
||||
*6.8.3 - 27.01.2025*
|
||||
|
||||
- filter product-categories in configuration
|
||||
|
||||
*6.8.2 - 24.01.2025*
|
||||
|
||||
- fix: limit content-check to supplier-invoices
|
||||
|
||||
*6.8.1 - 19.12.2024*
|
||||
|
||||
- compatibility to Tryton 6.8
|
||||
- import of Factur-X (Basic, EN16931, Extended), CrossIndustryInvoice-D22
|
||||
- with/without PDF-Container
|
||||
- init
|
||||
|
|
6
setup.py
6
setup.py
|
@ -34,8 +34,8 @@ with open(path.join(here, 'versiondep.txt'), encoding='utf-8') as f:
|
|||
modversion[l2[0]] = {'min': l2[1], 'max': l2[2], 'prefix': l2[3]}
|
||||
|
||||
# tryton-version
|
||||
major_version = 6
|
||||
minor_version = 8
|
||||
major_version = 7
|
||||
minor_version = 0
|
||||
|
||||
requires = ['pypdf', 'factur-x', 'lxml']
|
||||
for dep in info.get('depends', []):
|
||||
|
@ -85,6 +85,8 @@ setup(
|
|||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Programming Language :: Python :: 3.10',
|
||||
'Programming Language :: Python :: 3.11',
|
||||
'Programming Language :: Python :: 3.12',
|
||||
],
|
||||
|
||||
keywords='tryton account invoice xrechnung edocument incoming',
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[tryton]
|
||||
version=6.8.4
|
||||
version=7.0.0
|
||||
depends:
|
||||
document_incoming_invoice
|
||||
edocument_unece
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
document_incoming_invoice;6.8.0;6.8.999;mds
|
||||
sale_point_invoice;6.8.15;6.8.999;mds
|
Loading…
Reference in a new issue