Compare commits
4 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
12839d06db | ||
![]() |
b47517c4d8 | ||
![]() |
b321965515 | ||
![]() |
170f5885d2 |
4 changed files with 11 additions and 4 deletions
|
@ -14,6 +14,10 @@ Requires
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
*7.0.0 - 24.02.2024*
|
*7.0.2 - 10.03.2024*
|
||||||
|
|
||||||
- init
|
- fix permissions
|
||||||
|
|
||||||
|
*7.0.1 - 09.03.2024*
|
||||||
|
|
||||||
|
- works
|
||||||
|
|
|
@ -7,6 +7,7 @@ full copyright notices and license terms. -->
|
||||||
|
|
||||||
<record model="res.group" id="group_planner">
|
<record model="res.group" id="group_planner">
|
||||||
<field name="name">Cashbook - Scheduled Bookings</field>
|
<field name="name">Cashbook - Scheduled Bookings</field>
|
||||||
|
<field name="parent" ref="cashbook.group_cashbook"/>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<record model="res.user-res.group" id="user_admin-group_planner">
|
<record model="res.user-res.group" id="user_admin-group_planner">
|
||||||
|
|
4
ir.py
4
ir.py
|
@ -14,7 +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.append('cashbook.planner')
|
result.extend([
|
||||||
|
'cashbook.planner',
|
||||||
|
'cashbook.planner.nextrun'])
|
||||||
return result
|
return result
|
||||||
|
|
||||||
# end Rule
|
# end Rule
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=7.0.0
|
version=7.0.2
|
||||||
depends:
|
depends:
|
||||||
cashbook
|
cashbook
|
||||||
extras_depend:
|
extras_depend:
|
||||||
|
|
Loading…
Reference in a new issue