Compare commits

..

13 commits
6.8 ... main

Author SHA1 Message Date
Frederik Jaeckel
064fec927e fix amounts on view-cashbooks to include non-asset-cashbooks 2024-01-20 18:15:31 +01:00
Frederik Jaeckel
12b5442f19 fix sorting/searcher of field 'yield_balance' 2024-01-03 21:38:33 +01:00
Frederik Jaeckel
6d9a5b080d add license 2023-12-31 11:23:22 +01:00
Frederik Jaeckel
728b2fa6c2 add sorting 2023-12-30 11:44:33 +01:00
Frederik Jaeckel
c38737076f add columns to cashbook tree/list-view 2023-12-30 11:18:49 +01:00
Frederik Jaeckel
4a23e1ae81 add update of cashbooks on update of asset-rates 2023-12-30 10:57:17 +01:00
Frederik Jaeckel
49d3a2fec5 cashbook: optimize for speed for checking rows 2023-12-29 23:09:00 +01:00
Frederik Jaeckel
ec97351db9 add worker-based precalculation of cashbook-values 2023-12-29 23:07:39 +01:00
Frederik Jaeckel
fb062243d6 remove caching 2023-12-23 10:44:55 +01:00
Frederik Jaeckel
82c390caae Tryton 7.0 2023-12-06 21:34:08 +01:00
Frederik Jaeckel
3d0ce89df8 columns optional 2023-12-06 20:04:52 +01:00
Frederik Jaeckel
8dafa0bce0 tests: formatting 2023-12-03 17:37:43 +01:00
Frederik Jaeckel
27c12d4ad1 formatting 2023-12-03 17:31:42 +01:00
4 changed files with 8 additions and 28 deletions

View file

@ -9,7 +9,7 @@ pip install mds-cashbook-investment
Requires
========
- Tryton 6.8
- Tryton 7.0
How to
======
@ -23,26 +23,6 @@ You can monitor trading fees, dividends and sales profits.
Changes
=======
*6.8.14 - 19.01.2024*
*7.0.0 - 06.12.2023*
- the amounts of the view cash books now include the amounts
of the generic cash books
*6.8.13 - 03.01.2024*
- fix: sorting/searcher of field yield-balance
*6.8.12 - 31.12.2023*
- remove caching
- add worker-based precalculation of cashbook-values
- add columns to cashbook list/tree view
*6.8.11 - 06.12.2023*
- add: columns optional
*6.8.10 - 08.06.2023*
- compatibility to Tryton 6.8
- compatibility to Tryton 7.0

View file

@ -39,8 +39,8 @@ 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
minor_version = 8
major_version = 7
minor_version = 0
requires = []
for dep in info.get('depends', []):

View file

@ -1,5 +1,5 @@
[tryton]
version=6.8.14
version=7.0.0
depends:
cashbook
investment
@ -11,4 +11,3 @@ xml:
splitline.xml
assetsetting.xml
menu.xml

View file

@ -1 +1,2 @@
cashbook;6.8.33;6.8.999;mds
cashbook;7.0.32;7.0.999;mds
investment;7.0.26;7.0.999;mds