[ADD]Yaltik DSL : add separator

This commit is contained in:
Fabien BOURGEOIS 2022-11-20 23:38:47 +01:00
parent 59af616aab
commit 430e725fc9
2 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,7 @@
'name': 'Yaltik Odoo DSL base module and fns',
'summary': 'Yaltik Odoo Domain Specific Language base module and functions',
'description': """ Yaltik Odoo Domain Specific Language base module and functions """,
'version': '10.0.0.5.0',
'version': '10.0.0.5.1',
'category': 'Yaltik',
'author': 'Fabien Bourgeois',
'license': 'AGPL-3',

View File

@ -98,6 +98,7 @@ field_arch = lambda *args: field({'name': 'arch', 'type': 'xml'}, *args)
# Search
filter = lambda *args: xmln('filter', *args)
separator = lambda *args: xmln('separator', *args)
# Views
view = lambda xmlid, children: record({'id': xmlid, 'model': 'ir.ui.view'}, children)