Compare commits
12 commits
main
...
default_re
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f9f9901fc1 | ||
![]() |
a6423b88e1 | ||
![]() |
45b60410e0 | ||
![]() |
521029f49f | ||
![]() |
2485eec0c9 | ||
![]() |
110bb2bb5b | ||
![]() |
4cc455e32d | ||
![]() |
00056a5765 | ||
![]() |
bfb10c42c1 | ||
![]() |
675e103fd9 | ||
![]() |
5fe277af7b | ||
![]() |
d1f6f34897 |
5 changed files with 20 additions and 5 deletions
18
README.rst
18
README.rst
|
@ -14,6 +14,22 @@ Requires
|
||||||
Changes
|
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
|
- compatiblity to Tryton 7.0
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=7.0.0
|
version=7.0.7
|
||||||
depends:
|
depends:
|
||||||
account_invoice
|
account_invoice
|
||||||
bank
|
bank
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
edocument_xrechnung;7.0.5;7.0.999;mds
|
edocument_xrechnung;7.0.10;7.0.999;mds
|
||||||
|
|
|
@ -115,7 +115,6 @@ class RunXRechnungReport(Wizard):
|
||||||
Invoice.write(*[
|
Invoice.write(*[
|
||||||
to_delete_report, {
|
to_delete_report, {
|
||||||
'invoice_report_cache': None,
|
'invoice_report_cache': None,
|
||||||
'invoice_report_cache_id': None,
|
|
||||||
'invoice_report_format': None}])
|
'invoice_report_format': None}])
|
||||||
|
|
||||||
to_generate = [x for x in invoices if not x.invoice_report_cache]
|
to_generate = [x for x in invoices if not x.invoice_report_cache]
|
||||||
|
|
|
@ -105,7 +105,7 @@ class XReport(Report):
|
||||||
# no report defined, use 1st found
|
# no report defined, use 1st found
|
||||||
act_report = ActionReport.search([
|
act_report = ActionReport.search([
|
||||||
('model', '=', 'account.invoice'),
|
('model', '=', 'account.invoice'),
|
||||||
('extension', '=', 'pdf')], count=1)
|
('extension', '=', 'pdf')], limit=1)
|
||||||
if act_report:
|
if act_report:
|
||||||
act_report = act_report[0]
|
act_report = act_report[0]
|
||||||
if not act_report:
|
if not act_report:
|
||||||
|
|
Loading…
Reference in a new issue