Compare commits
No commits in common. "6.0" and "main" have entirely different histories.
5 changed files with 19 additions and 50 deletions
49
README.rst
49
README.rst
|
@ -9,54 +9,37 @@ pip install mds-edocument-xrechnung
|
|||
|
||||
Requires
|
||||
========
|
||||
- Tryton 6.0
|
||||
- Tryton 7.0
|
||||
|
||||
Changes
|
||||
=======
|
||||
|
||||
*6.0.15 - 02.05.2025*
|
||||
|
||||
- update copyright
|
||||
|
||||
*6.0.14 - 29.01.2025*
|
||||
|
||||
- updt: optimize rounding of unit_price
|
||||
|
||||
*6.0.13 - 28.01.2025*
|
||||
|
||||
- fix: rounding of unit_price at invoice-line
|
||||
|
||||
*6.0.12 - 09.01.2025*
|
||||
|
||||
- handle tax childs (Jan Grasnick <jan@mittelwind.de>)
|
||||
|
||||
*6.0.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.0.10 - 12.12.2024*
|
||||
*7.0.10 - 12.12.2024*
|
||||
|
||||
- fix missing views
|
||||
- Remove arguments in super() calls. (Mathias Behrle)
|
||||
|
||||
*6.0.9 - 11.12.2024*
|
||||
*7.0.9 - 11.12.2024*
|
||||
|
||||
- fix name of party in exceptions
|
||||
|
||||
*6.0.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.0.2 - 30.06.2023*
|
||||
*7.0.6 - 09.12.2024*
|
||||
|
||||
- add: credit-note
|
||||
- add: check for valid data to generate xml
|
||||
|
||||
*6.0.1 - 20.10.2022*
|
||||
*7.0.5 - 05.12.2024*
|
||||
|
||||
- works
|
||||
- add: export Factur-X 1.07.2
|
||||
|
||||
*6.0.0 - 17.10.2022*
|
||||
*7.0.4 - 05.12.2024*
|
||||
|
||||
- init
|
||||
- add: export XRechnung 2.3 + 3.0
|
||||
- updt: xrechnung-route-id optional
|
||||
|
||||
*7.0.3 - 22.12.2023*
|
||||
|
||||
- compatibility to Tryton 7.0
|
||||
|
|
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]}
|
||||
|
||||
# tryton-version
|
||||
major_version = 6
|
||||
major_version = 7
|
||||
minor_version = 0
|
||||
|
||||
requires = []
|
||||
|
|
|
@ -2,17 +2,3 @@
|
|||
# This file is part of the edocument-module for Tryton from m-ds.de.
|
||||
# The COPYRIGHT file at the top level of this repository contains the
|
||||
# full copyright notices and license terms.
|
||||
|
||||
import trytond.tests.test_tryton
|
||||
import unittest
|
||||
|
||||
from .test_edocument import EdocTestCase
|
||||
|
||||
__all__ = ['suite']
|
||||
|
||||
|
||||
def suite():
|
||||
suite = trytond.tests.test_tryton.suite()
|
||||
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
|
||||
EdocTestCase))
|
||||
return suite
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[tryton]
|
||||
version=6.0.15
|
||||
version=7.0.10
|
||||
depends:
|
||||
edocument_uncefact
|
||||
party
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
full copyright notices and license terms. -->
|
||||
<data>
|
||||
|
||||
<xpath expr="/form/separator[@id='move']" position="before">
|
||||
<xpath expr="/form/separator[@id='currency_exchange']" position="before">
|
||||
|
||||
<separator id="edocument" colspan="4" string="eDocument"/>
|
||||
<field name="edocument_bank" colspan="2" height="200"/>
|
||||
|
|
Loading…
Reference in a new issue