Compare commits

..

20 commits
6.0 ... main

Author SHA1 Message Date
Frederik Jaeckel
c2987eb3e1 Tryton 7.0 2023-12-01 12:40:37 +01:00
Frederik Jaeckel
900c2b975c formatting 2023-12-01 12:39:05 +01:00
Frederik Jaeckel
40d3a9e825 Tryton 6.8: test, info 2023-06-06 15:56:32 +02:00
Frederik Jaeckel
1163a8125d export: set digits - format numbers 2023-06-06 15:41:58 +02:00
Frederik Jaeckel
d0e2c8bc52 formatting, optimize code 2023-06-06 15:22:57 +02:00
Frederik Jaeckel
6cf6584f92 setup.py 2023-02-14 10:47:30 +01:00
Frederik Jaeckel
ea282daa05 test korrigiert 2022-09-16 10:40:28 +02:00
Frederik Jaeckel
ef84ca3ada test für splitbuchung mit transfer 2022-09-13 22:19:20 +02:00
Frederik Jaeckel
c09644e660 splitbuchung: konvertiert transfers + test 2022-09-13 18:14:06 +02:00
Frederik Jaeckel
197f35d3bb import: transfer buchungen korrigiert 2022-09-13 11:29:43 +02:00
Frederik Jaeckel
1a4ed7a1df qif-import: ignoriert leere buchungen, prüft buchungstyp und kategorietyp 2022-09-12 18:52:22 +02:00
Frederik Jaeckel
2db020f5d8 import: für umbuchungen optimiert + test 2022-09-08 17:29:10 +02:00
Frederik Jaeckel
9e6cfb210f übersetzung 2022-09-08 12:53:48 +02:00
Frederik Jaeckel
18093219a8 transaktion: check für fehlende kategorie 2022-09-08 11:20:28 +02:00
Frederik Jaeckel
79620f8cbb transaktionen: export + test 2022-09-05 10:13:20 +02:00
Frederik Jaeckel
35a31cff69 transaktion: import korrigiert 2022-09-03 20:36:16 +02:00
Frederik Jaeckel
833f49c9a6 import: party, transaction
übersetzung korrigiert
2022-09-02 14:33:12 +02:00
Frederik Jaeckel
50cbb2cc37 party: qif import 2022-09-01 17:13:55 +02:00
Frederik Jaeckel
0287452fe8 import der transaktionen begonnen 2022-09-01 14:48:04 +02:00
Frederik Jaeckel
b50927753b kategorie: export als qif 2022-08-31 17:32:01 +02:00
6 changed files with 8 additions and 46 deletions

View file

@ -9,33 +9,11 @@ pip install mds-cashbook-dataexchange
Requires
========
- Tryton 6.0
- Tryton 7.0
Changes
=======
*6.0.5 - 06.06.2023*
*7.0.0 - 01.12.2023*
- 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
- compatibility to Tryton 7.0

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]}
# tryton-version
major_version = 6
major_version = 7
minor_version = 0
requires = ['python-slugify']

View file

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

View file

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

View file

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