Compare commits

..

22 commits

Author SHA1 Message Date
Frederik Jaeckel
a2ccfccbdb Version 6.8.8 2025-01-28 14:15:46 +01:00
Frederik Jaeckel
a1e833ac94 Merge branch 'main' into 6.8 2025-01-28 14:14:18 +01:00
Frederik Jaeckel
c06ceb1909 Merge branch 'main' into 6.8 2025-01-28 10:47:39 +01:00
Frederik Jaeckel
a26ffa644e Version 6.8.7 2024-12-18 12:30:23 +01:00
Frederik Jaeckel
7dc9daaded dont write to 'invoice_report_cache_id' 2024-12-18 12:25:50 +01:00
Frederik Jaeckel
c272785bbd optimize generation of pdf if its not stored to db 2024-12-18 12:25:31 +01:00
Frederik Jaeckel
7a46ee7885 Version 6.8.6 2024-12-11 17:14:30 +01:00
Frederik Jaeckel
7e72d5ee89 delete invoice-report if type != pdf 2024-12-11 17:12:34 +01:00
Frederik Jaeckel
ab314200ae Version 6.8.5 2024-12-10 14:28:39 +01:00
Frederik Jaeckel
b86037d0e2 add iban to tests 2024-12-10 14:23:38 +01:00
Frederik Jaeckel
aacea382e5 update tests to check generated xml-data 2024-12-10 14:23:31 +01:00
Frederik Jaeckel
6e4da2e5cb generate zugferd-pdf 2024-12-10 14:23:27 +01:00
Frederik Jaeckel
ebade63b73 configuration - add erechnung default report 2024-12-10 14:23:23 +01:00
Frederik Jaeckel
1345962f18 prepare zugferd 2024-12-10 14:23:19 +01:00
Frederik Jaeckel
4ba310d097 add selection for factur-x 2024-12-10 14:23:09 +01:00
Frederik Jaeckel
febf3335d7 configuration for pdf-invoice 2024-12-10 14:22:38 +01:00
Frederik Jaeckel
0eedd4cb81 export of xrechnung 2.2 + 2.3 + 3.0 2024-12-10 14:22:34 +01:00
Frederik Jaeckel
cdf5c9bdd5 formatting 2024-12-10 14:22:29 +01:00
Frederik Jaeckel
4484887f45 file info 2024-12-10 14:22:25 +01:00
Frederik Jaeckel
e08267d33f update gitignore 2024-12-10 14:22:21 +01:00
Frederik Jaeckel
a1326f1fc9 Etikett ver 6.8.3 zum Änderungssatz f472e9e79baa hinzugefügt 2023-06-30 16:14:01 +02:00
Frederik Jaeckel
ca65665ad9 Version 6.8.3 2023-06-30 16:13:49 +02:00
6 changed files with 29 additions and 10 deletions

View file

@ -1,3 +1,5 @@
Copyright (C) 2015-2025 Cédric Krier.
Copyright (C) 2015-2025 B2CK SPRL.
Copyright (C) 2021-2025 martin-data services.
Copyright (C) 2025 Mathias Behrle <mathiasb@m9s.biz>

View file

@ -9,11 +9,29 @@ pip install mds-account-invoice-xrechnung
Requires
========
- Tryton 7.0
- Tryton 6.8
Changes
=======
*7.0.0 - 22.12.2023*
*6.8.8 - 28.01.2025*
- compatiblity to Tryton 7.0
- fix: select 1st invoice-report (Mathias Behrle <mathiasb@m9s.biz>)
*6.8.7 - 18.12.2024*
- optimize pdf-generate
*6.8.6 - 11.12.2024*
- re-create invoice-report if not pdf and zugferd-export
*6.8.5 - 10.12.2024*
- update tests for iban in xml-export
- add: export formats: factur-x, ZUGFeRD, XRechnung 2.3 + 3.0
*6.8.3 - 30.06.2023*
- compatiblity to Tryton 6.8
- code optimized

View file

@ -13,6 +13,7 @@ here = path.abspath(path.dirname(__file__))
MODULE = 'account_invoice_xrechnung'
PREFIX = 'mds'
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
@ -34,8 +35,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 = 7
minor_version = 0
major_version = 6
minor_version = 8
requires = ['python-slugify', 'pypdf', 'factur-x']
for dep in info.get('depends', []):
@ -85,8 +86,6 @@ 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',

View file

@ -1,5 +1,5 @@
[tryton]
version=7.0.0
version=6.8.8
depends:
account_invoice
bank

View file

@ -1 +1 @@
edocument_xrechnung;7.0.5;7.0.999;mds
edocument_xrechnung;6.8.13;6.8.999;mds

View file

@ -125,7 +125,7 @@ class RunXRechnungReport(Wizard):
def do_export(self, action):
""" run export
"""
if self.start.state not in {'paid', 'posted'}:
if self.start.state != 'posted':
raise UserError(gettext(
'account_invoice_xrechnung.msg_invoice_must_posted',
invname=self.start.invoice.rec_name))