From 9839cf9cfe4acc6248b40dab3a7a62de01a93fe0 Mon Sep 17 00:00:00 2001 From: Fabien BOURGEOIS Date: Tue, 16 Apr 2024 11:08:44 +0200 Subject: [PATCH] [ADD]Yaltik DSL : add template tag --- yaltik_dsl/__manifest__.py | 4 ++-- yaltik_dsl/src/odoo_dsl.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/yaltik_dsl/__manifest__.py b/yaltik_dsl/__manifest__.py index b404267..ff13530 100644 --- a/yaltik_dsl/__manifest__.py +++ b/yaltik_dsl/__manifest__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright 2019-2023 Fabien Bourgeois +# Copyright 2019-2024 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': '10.0.0.5.10', + 'version': '10.0.0.5.12', '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 22adabd..2c7f848 100644 --- a/yaltik_dsl/src/odoo_dsl.py +++ b/yaltik_dsl/src/odoo_dsl.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2019-2023 Fabien Bourgeois +# Copyright 2019-2024 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 @@ -39,6 +39,7 @@ delete = lambda *args: xmln('delete', *args) form = lambda *args: xmln('form', *args) tree = lambda *args: xmln('tree', *args) search = lambda *args: xmln('search', *args) +template = lambda *args: xmln('template', *args) # Actions act_window = lambda *args: xmln('act_window', *args)