Add field Waiter in res.user and transate

This commit is contained in:
cosmos
2023-09-03 16:53:37 -05:00
parent 94279af9b8
commit 2bf689ef87
6 changed files with 39 additions and 2 deletions

8
user.py Normal file
View File

@@ -0,0 +1,8 @@
from trytond.model import fields
from trytond.pool import Pool, PoolMeta
class User(metaclass=PoolMeta):
"User"
__name__ = 'res.user'
waiter = fields.Boolean('Waiter')