From 5301be028e5cdad65915805493102f70c76cd43f Mon Sep 17 00:00:00 2001 From: Cybrosys Technologies Date: Mon, 23 Sep 2024 10:59:13 +0530 Subject: [PATCH] Sep 21: [ADD] Initial commit 'import_task_checklist' --- import_task_checklist/README.rst | 10 ++++----- import_task_checklist/__init__.py | 19 +++++++++-------- import_task_checklist/__manifest__.py | 21 ++++++++++--------- import_task_checklist/models/__init__.py | 14 ++++++------- .../models/task_checklist.py | 14 ++++++------- import_task_checklist/wizard/__init__.py | 14 ++++++------- .../wizard/import_task_checklist.py | 14 ++++++------- 7 files changed, 54 insertions(+), 52 deletions(-) diff --git a/import_task_checklist/README.rst b/import_task_checklist/README.rst index 48985a3c3..d9e6ee45b 100644 --- a/import_task_checklist/README.rst +++ b/import_task_checklist/README.rst @@ -1,6 +1,6 @@ -.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg - :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html - :alt: License: LGPL-3 +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 Import Employee Task Checklist in Project ========================================= @@ -19,8 +19,8 @@ Configuration License ------- -GNU Lesser General Public License, Version 3 (LGPL v3). -(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) +Gnu Affero General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) Credits ------- diff --git a/import_task_checklist/__init__.py b/import_task_checklist/__init__.py index 030446576..33f4f8399 100644 --- a/import_task_checklist/__init__.py +++ b/import_task_checklist/__init__.py @@ -1,22 +1,23 @@ # -*- coding: utf-8 -*- -############################################################################## +############################################################################### # # Cybrosys Technologies Pvt. Ltd. # -# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Copyright (C) 2024-TODAY Cybrosys Technologies() # Author: Cybrosys Techno Solutions() -# you can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. -# If not, see . +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . # -############################################################################## +############################################################################### from . import models from . import wizard diff --git a/import_task_checklist/__manifest__.py b/import_task_checklist/__manifest__.py index 461cdf1ab..798ee5e8c 100644 --- a/import_task_checklist/__manifest__.py +++ b/import_task_checklist/__manifest__.py @@ -1,23 +1,24 @@ # -*- coding: utf-8 -*- -############################################################################## +############################################################################### # # Cybrosys Technologies Pvt. Ltd. # -# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Copyright (C) 2024-TODAY Cybrosys Technologies() # Author: Cybrosys Techno Solutions() -# you can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. -# If not, see . +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . # -############################################################################## +############################################################################### { 'name': 'Import Employee Task Checklist in Project', 'version': '17.0.1.0.0', @@ -36,7 +37,7 @@ 'wizard/import_checklist_views.xml', ], 'images': ['static/description/banner.jpg'], - 'license': 'LGPL-3', + 'license': 'AGPL-3', 'installable': True, 'auto_install': False, 'application': False, diff --git a/import_task_checklist/models/__init__.py b/import_task_checklist/models/__init__.py index f8730077c..a04c93085 100644 --- a/import_task_checklist/models/__init__.py +++ b/import_task_checklist/models/__init__.py @@ -1,22 +1,22 @@ # -*- coding: utf-8 -*- -############################################################################# +############################################################################### # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2024-TODAY Cybrosys Technologies() # Author: Cybrosys Techno Solutions() # -# You can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# (LGPL v3) along with this program. +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. # If not, see . # -################################################################## +############################################################################### from . import task_checklist diff --git a/import_task_checklist/models/task_checklist.py b/import_task_checklist/models/task_checklist.py index 495109214..1cc8e21d4 100644 --- a/import_task_checklist/models/task_checklist.py +++ b/import_task_checklist/models/task_checklist.py @@ -1,24 +1,24 @@ # -*- coding: utf-8 -*- -############################################################################# +############################################################################### # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2024-TODAY Cybrosys Technologies() # Author: Cybrosys Techno Solutions() # -# You can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# (LGPL v3) along with this program. +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. # If not, see . # -################################################################## +############################################################################### from odoo import fields, models diff --git a/import_task_checklist/wizard/__init__.py b/import_task_checklist/wizard/__init__.py index ef1e5cd8f..22a0e2def 100644 --- a/import_task_checklist/wizard/__init__.py +++ b/import_task_checklist/wizard/__init__.py @@ -1,22 +1,22 @@ # -*- coding: utf-8 -*- -############################################################################# +############################################################################### # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2024-TODAY Cybrosys Technologies() # Author: Cybrosys Techno Solutions() # -# You can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# (LGPL v3) along with this program. +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. # If not, see . # -################################################################## +############################################################################### from . import import_task_checklist diff --git a/import_task_checklist/wizard/import_task_checklist.py b/import_task_checklist/wizard/import_task_checklist.py index d8e7439e8..625096592 100644 --- a/import_task_checklist/wizard/import_task_checklist.py +++ b/import_task_checklist/wizard/import_task_checklist.py @@ -1,24 +1,24 @@ # -*- coding: utf-8 -*- -############################################################################# +############################################################################### # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2024-TODAY Cybrosys Technologies() # Author: Cybrosys Techno Solutions() # -# You can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. # -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# (LGPL v3) along with this program. +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. # If not, see . # -################################################################## +############################################################################### import base64 import csv import io