Compare commits
No commits in common. "ver-6.8.15" and "main" have entirely different histories.
ver-6.8.15
...
main
3 changed files with 23 additions and 33 deletions
50
README.rst
50
README.rst
|
@ -9,47 +9,37 @@ pip install mds-edocument-xrechnung
|
||||||
|
|
||||||
Requires
|
Requires
|
||||||
========
|
========
|
||||||
- Tryton 6.8
|
- Tryton 7.0
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
*6.8.15 - 02.05.2025*
|
*7.0.10 - 12.12.2024*
|
||||||
|
|
||||||
- update license
|
|
||||||
|
|
||||||
*6.8.14 - 29.01.2025*
|
|
||||||
|
|
||||||
- updt: optimize rounding of unit_price
|
|
||||||
|
|
||||||
*6.8.13 - 28.01.2025*
|
|
||||||
|
|
||||||
- fix: rounding of unit_price at invoice-line
|
|
||||||
|
|
||||||
*6.8.12 - 09.01.2025*
|
|
||||||
|
|
||||||
- handle tax childs (Jan Grasnick <jan@mittelwind.de>)
|
|
||||||
|
|
||||||
*6.8.11 - 19.12.2024*
|
|
||||||
|
|
||||||
- Lookup parent taxes for unece tax codes.
|
|
||||||
- Improve the help text of xrechnung_routeid. Correct a translation.
|
|
||||||
(Mathias Behrle <mathiasb@m9s.biz>)
|
|
||||||
|
|
||||||
*6.8.10 - 18.12.2024*
|
|
||||||
|
|
||||||
- fix missing views
|
- fix missing views
|
||||||
- Remove arguments in super() calls. (Mathias Behrle)
|
- Remove arguments in super() calls. (Mathias Behrle)
|
||||||
|
|
||||||
*6.8.9 - 11.12.2024*
|
*7.0.9 - 11.12.2024*
|
||||||
|
|
||||||
- fix name of party in exceptions
|
- fix name of party in exceptions
|
||||||
|
|
||||||
*6.8.7 - 10.12.2024*
|
*7.0.7 - 10.12.2024*
|
||||||
|
|
||||||
- add: export of factur-x 1.07.2, XRechnung 2.3 + 3.0
|
- add iban to xml-export
|
||||||
|
|
||||||
*6.8.2 - 30.06.2023*
|
*7.0.6 - 09.12.2024*
|
||||||
|
|
||||||
- add credit-note
|
- add: check for valid data to generate xml
|
||||||
- compatibility to Tryton 6.8
|
|
||||||
|
*7.0.5 - 05.12.2024*
|
||||||
|
|
||||||
|
- add: export Factur-X 1.07.2
|
||||||
|
|
||||||
|
*7.0.4 - 05.12.2024*
|
||||||
|
|
||||||
|
- add: export XRechnung 2.3 + 3.0
|
||||||
|
- updt: xrechnung-route-id optional
|
||||||
|
|
||||||
|
*7.0.3 - 22.12.2023*
|
||||||
|
|
||||||
|
- compatibility to Tryton 7.0
|
||||||
|
|
4
setup.py
4
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]}
|
modversion[l2[0]] = {'min': l2[1], 'max': l2[2], 'prefix': l2[3]}
|
||||||
|
|
||||||
# tryton-version
|
# tryton-version
|
||||||
major_version = 6
|
major_version = 7
|
||||||
minor_version = 8
|
minor_version = 0
|
||||||
|
|
||||||
requires = []
|
requires = []
|
||||||
for dep in info.get('depends', []):
|
for dep in info.get('depends', []):
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=6.8.15
|
version=7.0.10
|
||||||
depends:
|
depends:
|
||||||
edocument_uncefact
|
edocument_uncefact
|
||||||
party
|
party
|
||||||
|
|
Loading…
Reference in a new issue