Compare commits
3 commits
b59e25760d
...
f397cd593c
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f397cd593c | ||
![]() |
8a08517a44 | ||
![]() |
a6097c1022 |
4 changed files with 9 additions and 5 deletions
2
.hgignore → .gitignore
vendored
2
.hgignore → .gitignore
vendored
|
@ -1,4 +1,4 @@
|
||||||
syntax: glob
|
*.pyc
|
||||||
.env
|
.env
|
||||||
build/*
|
build/*
|
||||||
dist/*
|
dist/*
|
|
@ -14,6 +14,10 @@ Requires
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
*7.0.6 - 19.07.2024*
|
||||||
|
|
||||||
|
- updt: optimize check of permissions
|
||||||
|
|
||||||
*7.0.5 - 08.06.2024*
|
*7.0.5 - 08.06.2024*
|
||||||
|
|
||||||
- add: re-arrange date of occurence to working day
|
- add: re-arrange date of occurence to working day
|
||||||
|
|
6
ir.py
6
ir.py
|
@ -14,9 +14,9 @@ class Rule(metaclass=PoolMeta):
|
||||||
""" list of models to add 'user_id' to context
|
""" list of models to add 'user_id' to context
|
||||||
"""
|
"""
|
||||||
result = super(Rule, cls)._context_modelnames()
|
result = super(Rule, cls)._context_modelnames()
|
||||||
result.extend([
|
return result | {
|
||||||
'cashbook.planner',
|
'cashbook.planner',
|
||||||
'cashbook.planner.nextrun'])
|
'cashbook.planner.nextrun',
|
||||||
return result
|
}
|
||||||
|
|
||||||
# end Rule
|
# end Rule
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=7.0.5
|
version=7.0.6
|
||||||
depends:
|
depends:
|
||||||
cashbook
|
cashbook
|
||||||
extras_depend:
|
extras_depend:
|
||||||
|
|
Loading…
Reference in a new issue