Compare commits
20 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c2987eb3e1 | ||
![]() |
900c2b975c | ||
![]() |
40d3a9e825 | ||
![]() |
1163a8125d | ||
![]() |
d0e2c8bc52 | ||
![]() |
6cf6584f92 | ||
![]() |
ea282daa05 | ||
![]() |
ef84ca3ada | ||
![]() |
c09644e660 | ||
![]() |
197f35d3bb | ||
![]() |
1a4ed7a1df | ||
![]() |
2db020f5d8 | ||
![]() |
9e6cfb210f | ||
![]() |
18093219a8 | ||
![]() |
79620f8cbb | ||
![]() |
35a31cff69 | ||
![]() |
833f49c9a6 | ||
![]() |
50cbb2cc37 | ||
![]() |
0287452fe8 | ||
![]() |
b50927753b |
6 changed files with 8 additions and 46 deletions
28
README.rst
28
README.rst
|
@ -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
|
||||
|
|
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]}
|
||||
|
||||
# tryton-version
|
||||
major_version = 6
|
||||
major_version = 7
|
||||
minor_version = 0
|
||||
|
||||
requires = ['python-slugify']
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[tryton]
|
||||
version=6.0.5
|
||||
version=7.0.0
|
||||
depends:
|
||||
cashbook
|
||||
xml:
|
||||
|
|
|
@ -1 +1 @@
|
|||
cashbook;6.0.28;6.0.999;mds
|
||||
cashbook;7.0.31;7.0.999;mds
|
||||
|
|
Loading…
Reference in a new issue