Compare commits

..

29 commits
main ... 6.0

Author SHA1 Message Date
Frederik Jaeckel
217c992662 merge... 2023-12-01 12:45:16 +01:00
Frederik Jaeckel
a2a761c979 formatting 2023-12-01 12:39:05 +01:00
Frederik Jaeckel
ca3b9de32c Etikett ver 6.0.5 zum Änderungssatz 78b180572566 hinzugefügt 2023-06-06 16:09:28 +02:00
Frederik Jaeckel
5931736b16 Version 6.0.5 2023-06-06 16:09:11 +02:00
Frederik Jaeckel
761083cbbe export: set digits - format numbers 2023-06-06 15:41:58 +02:00
Frederik Jaeckel
da211efd93 formatting, optimize code 2023-06-06 15:22:57 +02:00
Frederik Jaeckel
b4a02d92d6 Etikett ver 6.0.4 zum Änderungssatz be4b32fa1653 hinzugefügt 2023-02-14 10:48:37 +01:00
Frederik Jaeckel
978823faf7 Version 6.0.4 2023-02-14 10:48:29 +01:00
Frederik Jaeckel
492befca04 setup.py 2023-02-14 10:47:30 +01:00
Frederik Jaeckel
0c2bae0663 test korrigiert 2022-09-16 10:40:28 +02:00
Frederik Jaeckel
70c4741c9d Etikett ver 6.0.3 zum Änderungssatz a67229652aa8 hinzugefügt 2022-09-13 23:09:45 +02:00
Frederik Jaeckel
eb8c1baa1b Version 6.0.3 2022-09-13 23:09:38 +02:00
Frederik Jaeckel
803262e202 test für splitbuchung mit transfer 2022-09-13 22:19:20 +02:00
Frederik Jaeckel
c5b3277622 splitbuchung: konvertiert transfers + test 2022-09-13 18:14:06 +02:00
Frederik Jaeckel
3796c7b7bc import: transfer buchungen korrigiert 2022-09-13 11:29:43 +02:00
Frederik Jaeckel
5544433b81 qif-import: ignoriert leere buchungen, prüft buchungstyp und kategorietyp 2022-09-12 18:52:22 +02:00
Frederik Jaeckel
e56b4f0cf8 import: für umbuchungen optimiert + test 2022-09-08 17:29:10 +02:00
Frederik Jaeckel
40ee9ed169 übersetzung 2022-09-08 12:53:48 +02:00
Frederik Jaeckel
63108a34eb transaktion: check für fehlende kategorie 2022-09-08 11:20:28 +02:00
Frederik Jaeckel
5216cecba7 Etikett ver 6.0.2 zum Änderungssatz 59e22aee60ef hinzugefügt 2022-09-05 10:22:29 +02:00
Frederik Jaeckel
491678da69 Version 6.0.2 2022-09-05 10:22:20 +02:00
Frederik Jaeckel
e9cde133c2 transaktionen: export + test 2022-09-05 10:13:20 +02:00
Frederik Jaeckel
8bb396f1d8 transaktion: import korrigiert 2022-09-03 20:36:16 +02:00
Frederik Jaeckel
78d02a60b7 import: party, transaction
übersetzung korrigiert
2022-09-02 14:33:12 +02:00
Frederik Jaeckel
a26e7119eb party: qif import 2022-09-01 17:13:55 +02:00
Frederik Jaeckel
be9c584fea import der transaktionen begonnen 2022-09-01 14:48:04 +02:00
Frederik Jaeckel
ac9400c085 kategorie: export als qif 2022-08-31 17:32:01 +02:00
Frederik Jaeckel
cdc0dfa49d Etikett ver 6.0.1 zum Änderungssatz 766463c8f9e1 hinzugefügt 2022-08-31 10:30:59 +02:00
Frederik Jaeckel
3eb4aebe0a Version 6.0.1 2022-08-31 10:30:49 +02:00
6 changed files with 46 additions and 8 deletions

View file

@ -9,11 +9,33 @@ pip install mds-cashbook-dataexchange
Requires Requires
======== ========
- Tryton 7.0 - Tryton 6.0
Changes Changes
======= =======
*7.0.0 - 01.12.2023* *6.0.5 - 06.06.2023*
- compatibility to Tryton 7.0 - optimize code
*6.0.4 - 14.02.2023*
- fix: test
*6.0.3 - 13.09.2022*
- add: import of split-bookings
- updt: transfers
*6.0.2 - 05.09.2022*
- category: qif-export
- party, transactions: qif-import/export
*6.0.1 - 31.08.2022*
- add: qif - category - import
*6.0.0 - 28.08.2022*
- init

View file

@ -39,7 +39,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'] requires = ['python-slugify']

View file

@ -2,3 +2,17 @@
# This file is part of the cashbook-module from m-ds for Tryton. # This file is part of the cashbook-module from m-ds for Tryton.
# The COPYRIGHT file at the top level of this repository contains the # The COPYRIGHT file at the top level of this repository contains the
# full copyright notices and license terms. # full copyright notices and license terms.
import trytond.tests.test_tryton
import unittest
from .test_module import CashbookExchangeTestCase
__all__ = ['suite']
def suite():
suite = trytond.tests.test_tryton.suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
CashbookExchangeTestCase))
return suite

View file

@ -4,6 +4,7 @@
# full copyright notices and license terms. # full copyright notices and license terms.
from trytond.tests.test_tryton import ModuleTestCase
from trytond.modules.cashbook.tests.test_module import CashbookTestCase from trytond.modules.cashbook.tests.test_module import CashbookTestCase
from .category import CategoryTestCase from .category import CategoryTestCase
from .party import PartyTestCase from .party import PartyTestCase
@ -14,11 +15,12 @@ class CashbookExchangeTestCase(
CashbookTestCase, CashbookTestCase,
CategoryTestCase, CategoryTestCase,
PartyTestCase, PartyTestCase,
TransactionTestCase): TransactionTestCase,
ModuleTestCase):
'Test cashbook exchange module' 'Test cashbook exchange module'
module = 'cashbook_dataexchange' module = 'cashbook_dataexchange'
# end CashbookExchangeTestCase # end CashbookExchangeTestCase
del CashbookTestCase del ModuleTestCase

View file

@ -1,5 +1,5 @@
[tryton] [tryton]
version=7.0.0 version=6.0.5
depends: depends:
cashbook cashbook
xml: xml:

View file

@ -1 +1 @@
cashbook;7.0.31;7.0.999;mds cashbook;6.0.28;6.0.999;mds