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
|
||||
=======
|
||||
|
||||
*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">
|
||||
<field name="name">Cashbook - Scheduled Bookings</field>
|
||||
<field name="parent" ref="cashbook.group_cashbook"/>
|
||||
</record>
|
||||
|
||||
<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
|
||||
"""
|
||||
result = super(Rule, cls)._context_modelnames()
|
||||
result.append('cashbook.planner')
|
||||
result.extend([
|
||||
'cashbook.planner',
|
||||
'cashbook.planner.nextrun'])
|
||||
return result
|
||||
|
||||
# end Rule
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[tryton]
|
||||
version=7.0.0
|
||||
version=7.0.2
|
||||
depends:
|
||||
cashbook
|
||||
extras_depend:
|
||||
|
|
Loading…
Reference in a new issue