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
|
||||
build/*
|
||||
dist/*
|
|
@ -14,6 +14,10 @@ Requires
|
|||
Changes
|
||||
=======
|
||||
|
||||
*7.0.6 - 19.07.2024*
|
||||
|
||||
- updt: optimize check of permissions
|
||||
|
||||
*7.0.5 - 08.06.2024*
|
||||
|
||||
- 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
|
||||
"""
|
||||
result = super(Rule, cls)._context_modelnames()
|
||||
result.extend([
|
||||
return result | {
|
||||
'cashbook.planner',
|
||||
'cashbook.planner.nextrun'])
|
||||
return result
|
||||
'cashbook.planner.nextrun',
|
||||
}
|
||||
|
||||
# end Rule
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[tryton]
|
||||
version=7.0.5
|
||||
version=7.0.6
|
||||
depends:
|
||||
cashbook
|
||||
extras_depend:
|
||||
|
|
Loading…
Reference in a new issue