diff --git a/yaltik_dsl/__openerp__.py b/yaltik_dsl/__openerp__.py index 89fa2ba..b240f3a 100644 --- a/yaltik_dsl/__openerp__.py +++ b/yaltik_dsl/__openerp__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright 2019-2022 Fabien Bourgeois +# Copyright 2019-2023 Fabien Bourgeois # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -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': '8.0.0.5.3', + 'version': '8.0.0.5.4', 'category': 'Yaltik', 'author': 'Fabien Bourgeois', 'license': 'AGPL-3', diff --git a/yaltik_dsl/src/odoo_dsl.py b/yaltik_dsl/src/odoo_dsl.py index bf31e90..68b8388 100644 --- a/yaltik_dsl/src/odoo_dsl.py +++ b/yaltik_dsl/src/odoo_dsl.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2019-2020 Fabien Bourgeois +# Copyright 2019-2023 Fabien Bourgeois # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -87,6 +87,8 @@ footer = lambda *args: xmln('footer', *args) sheet = lambda *args: xmln('sheet', *args) button = lambda *args: xmln('button', *args) p = lambda *args: xmln('p', *args) +notebook = lambda *args: xmln('notebook', *args) +page = lambda *args: xmln('page', *args) xpath = lambda *args: xmln('xpath', *args) attribute = lambda name, value: xmln('attribute', {'name': name}, [value])