diff --git a/README.rst b/README.rst index 0aac6c8..6a1a3b3 100644 --- a/README.rst +++ b/README.rst @@ -14,6 +14,22 @@ Requires Changes ======= -*7.0.0 - 22.12.2023* +*7.0.7 - 12.12.2024* + +- fix: generate pdf if not stored in db + +*7.0.6 - 11.12.2024* + +- re-create invoice-report if not pdf and zugferd-export + +*7.0.5 - 10.12.2024* + +- update tests for iban in xml-export + +*7.0.4 - 09.12.2024* + +- add: export formats: factur-x, ZUGFeRD, XRechnung 2.3 + 3.0 + +*7.0.3 - 22.12.2023* - compatiblity to Tryton 7.0 diff --git a/tryton.cfg b/tryton.cfg index 272e243..06050e1 100644 --- a/tryton.cfg +++ b/tryton.cfg @@ -1,5 +1,5 @@ [tryton] -version=7.0.0 +version=7.0.7 depends: account_invoice bank diff --git a/versiondep.txt b/versiondep.txt index 258b3ff..d757fc9 100644 --- a/versiondep.txt +++ b/versiondep.txt @@ -1 +1 @@ -edocument_xrechnung;7.0.5;7.0.999;mds +edocument_xrechnung;7.0.10;7.0.999;mds diff --git a/wizard_runreport.py b/wizard_runreport.py index dd5b0bf..708954c 100644 --- a/wizard_runreport.py +++ b/wizard_runreport.py @@ -115,7 +115,6 @@ class RunXRechnungReport(Wizard): Invoice.write(*[ to_delete_report, { 'invoice_report_cache': None, - 'invoice_report_cache_id': None, 'invoice_report_format': None}]) to_generate = [x for x in invoices if not x.invoice_report_cache] diff --git a/xreport.py b/xreport.py index d104558..88d58f6 100644 --- a/xreport.py +++ b/xreport.py @@ -105,7 +105,7 @@ class XReport(Report): # no report defined, use 1st found act_report = ActionReport.search([ ('model', '=', 'account.invoice'), - ('extension', '=', 'pdf')], count=1) + ('extension', '=', 'pdf')], limit=1) if act_report: act_report = act_report[0] if not act_report: