Compare commits
42 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
aa9a5f68d6 | ||
![]() |
8c2fc689c5 | ||
![]() |
c26bc9b381 | ||
![]() |
1280c57e05 | ||
![]() |
80b2ab51b4 | ||
![]() |
16c085dd5c | ||
![]() |
9add31be1a | ||
![]() |
496c1517c8 | ||
![]() |
51ebfb5eab | ||
![]() |
7d98a34328 | ||
![]() |
d9a7ce2a98 | ||
![]() |
6b33fdfd2f | ||
![]() |
5f87fef4cc | ||
![]() |
18e9e965b1 | ||
![]() |
4b1e5412af | ||
![]() |
c21ca9f408 | ||
![]() |
408b9a9679 | ||
![]() |
fafcbe799d | ||
![]() |
695e60dea8 | ||
![]() |
042e1b9a56 | ||
![]() |
d932e15878 | ||
![]() |
b4df059b4d | ||
![]() |
0b5f4633a8 | ||
![]() |
85e412564c | ||
![]() |
08b8768dd4 | ||
![]() |
0b2bada596 | ||
![]() |
d780a844ca | ||
![]() |
f26724593e | ||
![]() |
b3b92e4018 | ||
![]() |
7601b12800 | ||
![]() |
3bc4b555c8 | ||
![]() |
3db5ec1619 | ||
![]() |
5007985264 | ||
![]() |
b584a9f53e | ||
![]() |
56861eb2dd | ||
![]() |
d4d5fc7d78 | ||
![]() |
6e53bd8eac | ||
![]() |
2eed52b374 | ||
![]() |
7a3da5f164 | ||
![]() |
7ad7a3760e | ||
![]() |
865780147a | ||
![]() |
2885de7c27 |
8 changed files with 63 additions and 9 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@ dist/*
|
||||||
mds_account_invoice_xrechnung.egg-info/*
|
mds_account_invoice_xrechnung.egg-info/*
|
||||||
__pycache__/*
|
__pycache__/*
|
||||||
locale/convert_de2en.py
|
locale/convert_de2en.py
|
||||||
|
.env
|
||||||
|
|
44
README.rst
44
README.rst
|
@ -9,11 +9,49 @@ pip install mds-account-invoice-xrechnung
|
||||||
|
|
||||||
Requires
|
Requires
|
||||||
========
|
========
|
||||||
- Tryton 7.0
|
- Tryton 6.0
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
*7.0.0 - 22.12.2023*
|
*6.8.11 - 02.05.2025*
|
||||||
|
|
||||||
- compatiblity to Tryton 7.0
|
- update copyright
|
||||||
|
|
||||||
|
*6.8.10 - 11.02.2025*
|
||||||
|
|
||||||
|
- Allow the export of paid invoices. (Mathias Behrle <mathiasb@m9s.biz>)
|
||||||
|
|
||||||
|
*6.0.9 - 28.01.2025*
|
||||||
|
|
||||||
|
- fix: select 1st invoice-report (Mathias Behrle <mathiasb@m9s.biz>)
|
||||||
|
|
||||||
|
*6.0.8 - 12.12.2024*
|
||||||
|
|
||||||
|
- fix: generate pdf if not stored in db
|
||||||
|
- fix: exception on write to invoice
|
||||||
|
|
||||||
|
*6.0.6 - 11.12.2024*
|
||||||
|
|
||||||
|
- re-create invoice-report if not pdf and zugferd-export
|
||||||
|
|
||||||
|
*6.0.5 - 10.12.2024*
|
||||||
|
|
||||||
|
- update tests for iban in xml-export
|
||||||
|
- add: export formats: factur-x, ZUGFeRD, XRechnung 2.3 + 3.0
|
||||||
|
|
||||||
|
*6.0.3 - 30.06.2023*
|
||||||
|
|
||||||
|
- add: credit-note
|
||||||
|
|
||||||
|
*6.0.2 - 20.10.2022*
|
||||||
|
|
||||||
|
- add: msg if invoice is not posted
|
||||||
|
|
||||||
|
*6.0.1 - 20.10.2022*
|
||||||
|
|
||||||
|
- works
|
||||||
|
|
||||||
|
*6.0.0 - 18.10.2022*
|
||||||
|
|
||||||
|
- init
|
||||||
|
|
|
@ -17,7 +17,7 @@ class InvoiceLine(metaclass=PoolMeta):
|
||||||
cls.unit.states['required'],
|
cls.unit.states['required'],
|
||||||
And(
|
And(
|
||||||
Eval('type') == 'line',
|
Eval('type') == 'line',
|
||||||
Bool(Eval('quantity'))))
|
Bool(Eval('quantity', None))))
|
||||||
cls.unit.depends.update(['type', 'quantity'])
|
cls.unit.depends.extend(['type', 'quantity'])
|
||||||
|
|
||||||
# end Invoice
|
# end Invoice
|
||||||
|
|
2
setup.py
2
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 = ['python-slugify', 'pypdf', 'factur-x']
|
requires = ['python-slugify', 'pypdf', 'factur-x']
|
||||||
|
|
|
@ -2,3 +2,18 @@
|
||||||
# This file is part of the account-invoice-xrechnung-module
|
# This file is part of the account-invoice-xrechnung-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_invoice import InvoiceTestCase
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ['suite']
|
||||||
|
|
||||||
|
|
||||||
|
def suite():
|
||||||
|
suite = trytond.tests.test_tryton.suite()
|
||||||
|
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
|
||||||
|
InvoiceTestCase))
|
||||||
|
return suite
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=7.0.0
|
version=6.0.11
|
||||||
depends:
|
depends:
|
||||||
account_invoice
|
account_invoice
|
||||||
bank
|
bank
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
edocument_xrechnung;7.0.5;7.0.999;mds
|
edocument_xrechnung;6.0.13;6.0.999;mds
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
full copyright notices and license terms. -->
|
full copyright notices and license terms. -->
|
||||||
<data>
|
<data>
|
||||||
|
|
||||||
<xpath expr="/form/separator[@id='currency_exchange']" position="before">
|
<xpath expr="/form/separator[@id='move']" position="after">
|
||||||
|
|
||||||
<separator id="xrechnung" colspan="4" string="ZUGFeRD - e-Invoice"/>
|
<separator id="xrechnung" colspan="4" string="ZUGFeRD - e-Invoice"/>
|
||||||
<label name="xrechn_zugferd_report"/>
|
<label name="xrechn_zugferd_report"/>
|
||||||
|
|
Loading…
Reference in a new issue