Compare commits
29 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
217c992662 | ||
![]() |
a2a761c979 | ||
![]() |
ca3b9de32c | ||
![]() |
5931736b16 | ||
![]() |
761083cbbe | ||
![]() |
da211efd93 | ||
![]() |
b4a02d92d6 | ||
![]() |
978823faf7 | ||
![]() |
492befca04 | ||
![]() |
0c2bae0663 | ||
![]() |
70c4741c9d | ||
![]() |
eb8c1baa1b | ||
![]() |
803262e202 | ||
![]() |
c5b3277622 | ||
![]() |
3796c7b7bc | ||
![]() |
5544433b81 | ||
![]() |
e56b4f0cf8 | ||
![]() |
40ee9ed169 | ||
![]() |
63108a34eb | ||
![]() |
5216cecba7 | ||
![]() |
491678da69 | ||
![]() |
e9cde133c2 | ||
![]() |
8bb396f1d8 | ||
![]() |
78d02a60b7 | ||
![]() |
a26e7119eb | ||
![]() |
be9c584fea | ||
![]() |
ac9400c085 | ||
![]() |
cdc0dfa49d | ||
![]() |
3eb4aebe0a |
6 changed files with 46 additions and 8 deletions
28
README.rst
28
README.rst
|
@ -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
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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']
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=7.0.0
|
version=6.0.5
|
||||||
depends:
|
depends:
|
||||||
cashbook
|
cashbook
|
||||||
xml:
|
xml:
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
cashbook;7.0.31;7.0.999;mds
|
cashbook;6.0.28;6.0.999;mds
|
||||||
|
|
Loading…
Reference in a new issue