Compare commits
2 commits
a84b672250
...
18f194caa5
Author | SHA1 | Date | |
---|---|---|---|
![]() |
18f194caa5 | ||
![]() |
c296db125f |
2 changed files with 4 additions and 4 deletions
2
.hgignore → .gitignore
vendored
2
.hgignore → .gitignore
vendored
|
@ -1,4 +1,4 @@
|
||||||
syntax: glob
|
*.pyc
|
||||||
.env
|
.env
|
||||||
build/*
|
build/*
|
||||||
dist/*
|
dist/*
|
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
|
||||||
|
|
Loading…
Reference in a new issue