ir-rule: condition --> Eval('user_id', -1)

This commit is contained in:
Frederik Jaeckel 2023-12-04 20:05:06 +01:00
parent 6b94179b42
commit 0f11e9d5a1
3 changed files with 23 additions and 1 deletions

View file

@ -6,6 +6,7 @@
from trytond.pool import Pool
from .category import Category
from .book import CategoryCashbookRel, Cashbook
from .ir import Rule
def register():
@ -13,4 +14,5 @@ def register():
Category,
Cashbook,
CategoryCashbookRel,
Rule,
module='cashbook_bookcategory', type_='model')