From e978f4ccab28fe07390c0dc5f710ef8e28e28aac Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Wed, 23 May 2018 11:47:37 -0700 Subject: [PATCH 1/8] Initial commit of `timesheet_description` and `timesheet_description_sale` for 11.0 -- Forces popup for timesheet (detail) and allows you to display them as Markdown in the portal. --- timesheet_description_sale/__init__.py | 1 + timesheet_description_sale/__manifest__.py | 21 +++++++++++++++++++ .../views/timesheet_views.xml | 19 +++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 timesheet_description_sale/__init__.py create mode 100644 timesheet_description_sale/__manifest__.py create mode 100644 timesheet_description_sale/views/timesheet_views.xml diff --git a/timesheet_description_sale/__init__.py b/timesheet_description_sale/__init__.py new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/timesheet_description_sale/__init__.py @@ -0,0 +1 @@ + diff --git a/timesheet_description_sale/__manifest__.py b/timesheet_description_sale/__manifest__.py new file mode 100644 index 00000000..122676b3 --- /dev/null +++ b/timesheet_description_sale/__manifest__.py @@ -0,0 +1,21 @@ +{ + 'name': 'Timesheet Description Sale', + 'version': '11.0.1.0.0', + 'author': 'Hibou Corp. ', + 'website': 'https://hibou.io/', + 'license': 'AGPL-3', + 'category': 'Tools', + 'complexity': 'easy', + 'description': """ +Linker module to inject fields required by timesheets for sales. + """, + 'depends': [ + 'timesheet_description', + 'sale_timesheet', + ], + 'data': [ + 'views/timesheet_views.xml', + ], + 'installable': True, + 'auto_install': True, +} diff --git a/timesheet_description_sale/views/timesheet_views.xml b/timesheet_description_sale/views/timesheet_views.xml new file mode 100644 index 00000000..f4d48acd --- /dev/null +++ b/timesheet_description_sale/views/timesheet_views.xml @@ -0,0 +1,19 @@ + + + + project.task.form.inherit + project.task + + + + {'default_project_id': project_id, 'default_task_id': active_id} + + + + + + + + + + \ No newline at end of file From b66c3ad479908bba1581bb9511602f0efcf60c3d Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Sat, 25 May 2019 17:00:48 -0600 Subject: [PATCH 2/8] MIG `timesheet_description_sale` on 12.0 --- timesheet_description_sale/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timesheet_description_sale/__manifest__.py b/timesheet_description_sale/__manifest__.py index 122676b3..becc2b81 100644 --- a/timesheet_description_sale/__manifest__.py +++ b/timesheet_description_sale/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Timesheet Description Sale', - 'version': '11.0.1.0.0', + 'version': '12.0.1.0.0', 'author': 'Hibou Corp. ', 'website': 'https://hibou.io/', 'license': 'AGPL-3', From 4972ba114ed1dd2d48f2abf81d7d675a66276a04 Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Fri, 3 Jul 2020 13:00:03 -0700 Subject: [PATCH 3/8] [MIG] timesheet_description_sale: to Odoo 13.0 --- timesheet_description_sale/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timesheet_description_sale/__manifest__.py b/timesheet_description_sale/__manifest__.py index becc2b81..bc4afe69 100644 --- a/timesheet_description_sale/__manifest__.py +++ b/timesheet_description_sale/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Timesheet Description Sale', - 'version': '12.0.1.0.0', + 'version': '13.0.1.0.0', 'author': 'Hibou Corp. ', 'website': 'https://hibou.io/', 'license': 'AGPL-3', From de4c71290c01d5b28e90b5530b54a774a16afd6e Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Sun, 21 Mar 2021 15:28:39 -0700 Subject: [PATCH 4/8] [MIG] timesheet_description_sale: for Odoo 14.0 --- timesheet_description_sale/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timesheet_description_sale/__manifest__.py b/timesheet_description_sale/__manifest__.py index bc4afe69..f39fca50 100644 --- a/timesheet_description_sale/__manifest__.py +++ b/timesheet_description_sale/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Timesheet Description Sale', - 'version': '13.0.1.0.0', + 'version': '14.0.1.0.0', 'author': 'Hibou Corp. ', 'website': 'https://hibou.io/', 'license': 'AGPL-3', From 34b44f7d2bb3ad51396d2e629f1f55ec39e3e357 Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Wed, 5 Jan 2022 10:42:44 -0800 Subject: [PATCH 5/8] [MIG] timesheet_description_sale: to Odoo 15.0 --- timesheet_description_sale/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timesheet_description_sale/__manifest__.py b/timesheet_description_sale/__manifest__.py index f39fca50..d97466fa 100644 --- a/timesheet_description_sale/__manifest__.py +++ b/timesheet_description_sale/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Timesheet Description Sale', - 'version': '14.0.1.0.0', + 'version': '15.0.1.0.0', 'author': 'Hibou Corp. ', 'website': 'https://hibou.io/', 'license': 'AGPL-3', From 7118f63a09de3a26b12631d65fcb1583e1b33162 Mon Sep 17 00:00:00 2001 From: Leo Pinedo Date: Mon, 24 Oct 2022 22:30:13 +0000 Subject: [PATCH 6/8] [MIG] timesheet_description_sale: to 16 --- timesheet_description_sale/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timesheet_description_sale/__manifest__.py b/timesheet_description_sale/__manifest__.py index d97466fa..18b40470 100644 --- a/timesheet_description_sale/__manifest__.py +++ b/timesheet_description_sale/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Timesheet Description Sale', - 'version': '15.0.1.0.0', + 'version': '16.0.1.0.0', 'author': 'Hibou Corp. ', 'website': 'https://hibou.io/', 'license': 'AGPL-3', From 23e7174a848e15188e82285f7fb68a1b6ac27fe7 Mon Sep 17 00:00:00 2001 From: Juan Pablo Ticse Date: Tue, 31 Oct 2023 17:24:03 +0000 Subject: [PATCH 7/8] [MIG] timesheet_description_sale: Module migration --- timesheet_description_sale/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timesheet_description_sale/__manifest__.py b/timesheet_description_sale/__manifest__.py index 18b40470..17a3d3a0 100644 --- a/timesheet_description_sale/__manifest__.py +++ b/timesheet_description_sale/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Timesheet Description Sale', - 'version': '16.0.1.0.0', + 'version': '17.0.1.0.0', 'author': 'Hibou Corp. ', 'website': 'https://hibou.io/', 'license': 'AGPL-3', From af61a7acc4c0e87486b0f5f5a0e2dbacce0660fd Mon Sep 17 00:00:00 2001 From: Mayank Patel Date: Thu, 24 Oct 2024 13:15:09 +0000 Subject: [PATCH 8/8] [MIG] timesheet_description_sale: Migrated to 18.0 H14631 --- timesheet_description_sale/__manifest__.py | 2 +- timesheet_description_sale/views/timesheet_views.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/timesheet_description_sale/__manifest__.py b/timesheet_description_sale/__manifest__.py index 17a3d3a0..461ef1bd 100644 --- a/timesheet_description_sale/__manifest__.py +++ b/timesheet_description_sale/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Timesheet Description Sale', - 'version': '17.0.1.0.0', + 'version': '18.0.1.0.0', 'author': 'Hibou Corp. ', 'website': 'https://hibou.io/', 'license': 'AGPL-3', diff --git a/timesheet_description_sale/views/timesheet_views.xml b/timesheet_description_sale/views/timesheet_views.xml index f4d48acd..adf87b8f 100644 --- a/timesheet_description_sale/views/timesheet_views.xml +++ b/timesheet_description_sale/views/timesheet_views.xml @@ -8,7 +8,7 @@ {'default_project_id': project_id, 'default_task_id': active_id} - +