diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 2894822..42abc81 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -12,13 +12,13 @@ jobs: pre-commit: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: "3.11" - name: Get python version run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.cache/pre-commit key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} @@ -33,4 +33,4 @@ jobs: echo "Please check-in the following files:" echo "$newfiles" exit 1 - fi \ No newline at end of file + fi diff --git a/date_range_field_template/README.md b/date_range_field_template/README.md index 9156099..355ecc5 100644 --- a/date_range_field_template/README.md +++ b/date_range_field_template/README.md @@ -111,8 +111,5 @@ to specify the model: Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -More information ----------------- -* Meet us at https://bit.ly/numigi-com +The [Numigi](https://numigi.com/r/home) team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. diff --git a/date_range_field_template/__init__.py b/date_range_field_template/__init__.py index fd8d229..36ffad6 100644 --- a/date_range_field_template/__init__.py +++ b/date_range_field_template/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import models diff --git a/date_range_field_template/__manifest__.py b/date_range_field_template/__manifest__.py index 9e82ec8..9669a01 100644 --- a/date_range_field_template/__manifest__.py +++ b/date_range_field_template/__manifest__.py @@ -1,4 +1,4 @@ -# © 2018 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ 'version': '1.1.0', 'author': 'Numigi', 'maintainer': 'Numigi', - 'website': 'https://bit.ly/numigi-com', + 'website': 'https://numigi.com/r/home', 'license': 'LGPL-3', 'category': 'Karma', 'summary': 'Enable generating computed fields from templates based on date ranges.', diff --git a/date_range_field_template/migrations/11.0.1.1.0/pre-migration.py b/date_range_field_template/migrations/11.0.1.1.0/pre-migration.py index f08e451..fea0182 100644 --- a/date_range_field_template/migrations/11.0.1.1.0/pre-migration.py +++ b/date_range_field_template/migrations/11.0.1.1.0/pre-migration.py @@ -1,4 +1,4 @@ -# © 2018 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from openupgradelib.openupgrade import logged_query diff --git a/date_range_field_template/models/__init__.py b/date_range_field_template/models/__init__.py index f17ba27..fbc1cd4 100644 --- a/date_range_field_template/models/__init__.py +++ b/date_range_field_template/models/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import ( diff --git a/date_range_field_template/models/date_range.py b/date_range_field_template/models/date_range.py index 76f1e38..759c208 100644 --- a/date_range_field_template/models/date_range.py +++ b/date_range_field_template/models/date_range.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import pytz diff --git a/date_range_field_template/models/field.py b/date_range_field_template/models/field.py index fc2d536..62065a2 100644 --- a/date_range_field_template/models/field.py +++ b/date_range_field_template/models/field.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import api, fields, models diff --git a/date_range_field_template/models/field_computing.py b/date_range_field_template/models/field_computing.py index dbfdecf..21f4f8e 100644 --- a/date_range_field_template/models/field_computing.py +++ b/date_range_field_template/models/field_computing.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from functools import partial diff --git a/date_range_field_template/models/field_template.py b/date_range_field_template/models/field_template.py index 3304c4e..27bbf53 100644 --- a/date_range_field_template/models/field_template.py +++ b/date_range_field_template/models/field_template.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import fields, models diff --git a/date_range_field_template/models/tools.py b/date_range_field_template/models/tools.py index 3189502..4a4d0ff 100644 --- a/date_range_field_template/models/tools.py +++ b/date_range_field_template/models/tools.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from typing import Optional diff --git a/date_range_field_template/tests/__init__.py b/date_range_field_template/tests/__init__.py index c9a28ba..c63ff81 100644 --- a/date_range_field_template/tests/__init__.py +++ b/date_range_field_template/tests/__init__.py @@ -1,2 +1,2 @@ -# © 2018 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/date_range_field_template/tests/test_date_interval.py b/date_range_field_template/tests/test_date_interval.py index bfde8ba..d941e8d 100644 --- a/date_range_field_template/tests/test_date_interval.py +++ b/date_range_field_template/tests/test_date_interval.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import pytz diff --git a/date_range_field_template/tests/test_field_template.py b/date_range_field_template/tests/test_field_template.py index aa0dd39..2a6fad9 100644 --- a/date_range_field_template/tests/test_field_template.py +++ b/date_range_field_template/tests/test_field_template.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import pytz diff --git a/date_range_field_template/tests/test_related_model_argument.py b/date_range_field_template/tests/test_related_model_argument.py index 185a47c..615abe2 100644 --- a/date_range_field_template/tests/test_related_model_argument.py +++ b/date_range_field_template/tests/test_related_model_argument.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import fields, models diff --git a/form_view_image_120px/__init__.py b/form_view_image_120px/__init__.py index 0ca2c59..c63ff81 100644 --- a/form_view_image_120px/__init__.py +++ b/form_view_image_120px/__init__.py @@ -1,2 +1,2 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/form_view_image_120px/__manifest__.py b/form_view_image_120px/__manifest__.py index 0832942..3c373fb 100644 --- a/form_view_image_120px/__manifest__.py +++ b/form_view_image_120px/__manifest__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ 'version': '1.0.0', 'author': 'Numigi', 'maintainer': 'Numigi', - 'website': 'https://bit.ly/numigi-com', + 'website': 'https://numigi.com/r/home', 'license': 'LGPL-3', 'category': 'Karma', 'summary': 'Make the avatar image in form views 120px.', diff --git a/karma/README.md b/karma/README.md index 9dd99e1..04b18b6 100644 --- a/karma/README.md +++ b/karma/README.md @@ -292,12 +292,9 @@ class KarmaWithExtraComputationBehavior(models.Model): Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -The Karma app logo was taken from font-awesome and adapted: +The [Numigi](https://numigi.com/r/home) team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. -https://fontawesome.com/icons/crown +The Karma app logo was taken from font-awesome and adapted by [Kapreon](https://kapreon.com): -More information ----------------- -* Meet us at https://bit.ly/numigi-com +https://fontawesome.com/icons/crown diff --git a/karma/__init__.py b/karma/__init__.py index 4f3ccbd..f322e33 100644 --- a/karma/__init__.py +++ b/karma/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import models, computation diff --git a/karma/__manifest__.py b/karma/__manifest__.py index 98194ae..9c89ac7 100644 --- a/karma/__manifest__.py +++ b/karma/__manifest__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ "version": "1.1.1", "author": "Numigi", "maintainer": "Numigi", - "website": "https://bit.ly/numigi-com", + "website": "https://numigi.com/r/home", "license": "LGPL-3", "category": "Karma", "summary": "Compute scores on all types of records.", diff --git a/karma/computation/__init__.py b/karma/computation/__init__.py index a3d5820..630a2c7 100644 --- a/karma/computation/__init__.py +++ b/karma/computation/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from .condition import ConditionKarmaComputer diff --git a/karma/computation/condition.py b/karma/computation/condition.py index 5e6c485..1027864 100644 --- a/karma/computation/condition.py +++ b/karma/computation/condition.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import sys diff --git a/karma/computation/inherited.py b/karma/computation/inherited.py index 08ea843..bf366c4 100644 --- a/karma/computation/inherited.py +++ b/karma/computation/inherited.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/karma/computation/karma_with_anticipate_computation.py b/karma/computation/karma_with_anticipate_computation.py index 273b8f3..2e8f80f 100644 --- a/karma/computation/karma_with_anticipate_computation.py +++ b/karma/computation/karma_with_anticipate_computation.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import fields, models diff --git a/karma/computation/karma_with_computation_job.py b/karma/computation/karma_with_computation_job.py index 5047f4d..0ea3197 100644 --- a/karma/computation/karma_with_computation_job.py +++ b/karma/computation/karma_with_computation_job.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import functools diff --git a/karma/computation/karma_with_computation_scheduling.py b/karma/computation/karma_with_computation_scheduling.py index 3b821f1..a16d234 100644 --- a/karma/computation/karma_with_computation_scheduling.py +++ b/karma/computation/karma_with_computation_scheduling.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from datetime import datetime, timedelta diff --git a/karma/computation/karma_with_compute.py b/karma/computation/karma_with_compute.py index 7cb0da8..4328623 100644 --- a/karma/computation/karma_with_compute.py +++ b/karma/computation/karma_with_compute.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import api, models diff --git a/karma/computation/karma_with_compute_on_save.py b/karma/computation/karma_with_compute_on_save.py index 509d16f..b17794f 100644 --- a/karma/computation/karma_with_compute_on_save.py +++ b/karma/computation/karma_with_compute_on_save.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import api, fields, models diff --git a/karma/computation/karma_with_number_evaluated_lines.py b/karma/computation/karma_with_number_evaluated_lines.py index faf383e..b9ab0f1 100644 --- a/karma/computation/karma_with_number_evaluated_lines.py +++ b/karma/computation/karma_with_number_evaluated_lines.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import api, fields, models diff --git a/karma/models/__init__.py b/karma/models/__init__.py index 6a8b94a..4345fca 100644 --- a/karma/models/__init__.py +++ b/karma/models/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import ( diff --git a/karma/models/karma.py b/karma/models/karma.py index 965ffd1..e4a571f 100644 --- a/karma/models/karma.py +++ b/karma/models/karma.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import ast diff --git a/karma/models/karma_score.py b/karma/models/karma_score.py index df0b890..19a4adc 100644 --- a/karma/models/karma_score.py +++ b/karma/models/karma_score.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from collections import defaultdict diff --git a/karma/models/karma_session.py b/karma/models/karma_session.py index 3781005..806f820 100644 --- a/karma/models/karma_session.py +++ b/karma/models/karma_session.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import api, fields, models diff --git a/karma/safe_eval.py b/karma/safe_eval.py index 95e609b..4398cb3 100644 --- a/karma/safe_eval.py +++ b/karma/safe_eval.py @@ -1,4 +1,4 @@ -# © 2022 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from opcode import opmap diff --git a/karma/tests/__init__.py b/karma/tests/__init__.py index 0ca2c59..c63ff81 100644 --- a/karma/tests/__init__.py +++ b/karma/tests/__init__.py @@ -1,2 +1,2 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/karma/tests/common.py b/karma/tests/common.py index 9176e6c..3e0e5d8 100644 --- a/karma/tests/common.py +++ b/karma/tests/common.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo.tests import common diff --git a/karma/tests/test_computation_scheduling.py b/karma/tests/test_computation_scheduling.py index 2e0bdb0..1acbb99 100644 --- a/karma/tests/test_computation_scheduling.py +++ b/karma/tests/test_computation_scheduling.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from datetime import datetime diff --git a/karma/tests/test_compute_on_save.py b/karma/tests/test_compute_on_save.py index e2a633b..e69ef20 100644 --- a/karma/tests/test_compute_on_save.py +++ b/karma/tests/test_compute_on_save.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from .test_condition_computation import ComputedKarmaCase diff --git a/karma/tests/test_condition_computation.py b/karma/tests/test_condition_computation.py index 13968af..903dff4 100644 --- a/karma/tests/test_condition_computation.py +++ b/karma/tests/test_condition_computation.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo.tests.common import SavepointCase diff --git a/karma/tests/test_condition_safe_eval.py b/karma/tests/test_condition_safe_eval.py index abd127d..e84a1f3 100644 --- a/karma/tests/test_condition_safe_eval.py +++ b/karma/tests/test_condition_safe_eval.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import pytest diff --git a/karma/tests/test_inherited_computation.py b/karma/tests/test_inherited_computation.py index 447647f..b706a3b 100644 --- a/karma/tests/test_inherited_computation.py +++ b/karma/tests/test_inherited_computation.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo.tests.common import SavepointCase diff --git a/karma/tests/test_karma_display_on_form_view.py b/karma/tests/test_karma_display_on_form_view.py index 5ff9a1d..deb64be 100644 --- a/karma/tests/test_karma_display_on_form_view.py +++ b/karma/tests/test_karma_display_on_form_view.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo.tests.common import SavepointCase diff --git a/karma/tests/test_number_evaluated_lines.py b/karma/tests/test_number_evaluated_lines.py index 6fbcc3d..98bf00c 100644 --- a/karma/tests/test_number_evaluated_lines.py +++ b/karma/tests/test_number_evaluated_lines.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from .common import BasicKarmaTestMixin diff --git a/karma/tests/test_score_record_display_name.py b/karma/tests/test_score_record_display_name.py index 58946ac..d0532be 100644 --- a/karma/tests/test_score_record_display_name.py +++ b/karma/tests/test_score_record_display_name.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo.tests.common import SavepointCase diff --git a/karma_crm/README.rst b/karma_crm/README.rst index e8c7e99..e0cc629 100644 --- a/karma_crm/README.rst +++ b/karma_crm/README.rst @@ -8,8 +8,5 @@ This module adds the karma widget to the CRM Leads and teams form view. Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -More information ----------------- -* Meet us at https://bit.ly/numigi-com +The `Numigi `_ team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. \ No newline at end of file diff --git a/karma_crm/__init__.py b/karma_crm/__init__.py index 0ca2c59..c63ff81 100644 --- a/karma_crm/__init__.py +++ b/karma_crm/__init__.py @@ -1,2 +1,2 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/karma_crm/__manifest__.py b/karma_crm/__manifest__.py index 52ec523..5b36d47 100644 --- a/karma_crm/__manifest__.py +++ b/karma_crm/__manifest__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ 'version': '1.0.0', 'author': 'Numigi', 'maintainer': 'Numigi', - 'website': 'https://bit.ly/numigi-com', + 'website': 'https://numigi.com/r/home', 'license': 'LGPL-3', 'category': 'Karma', 'summary': 'Add the karma widget on the crm leads and teams form view.', diff --git a/karma_grade/README.md b/karma_grade/README.md index c229408..18677b3 100644 --- a/karma_grade/README.md +++ b/karma_grade/README.md @@ -21,8 +21,5 @@ In the form view of the object, the grade will be displayed on the karma widget. Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -More information ----------------- -* Meet us at https://bit.ly/numigi-com +The [Numigi](https://numigi.com/r/home) team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. diff --git a/karma_grade/__init__.py b/karma_grade/__init__.py index fd8d229..36ffad6 100644 --- a/karma_grade/__init__.py +++ b/karma_grade/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import models diff --git a/karma_grade/__manifest__.py b/karma_grade/__manifest__.py index d923238..aae25ee 100644 --- a/karma_grade/__manifest__.py +++ b/karma_grade/__manifest__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ 'version': '1.0.1', 'author': 'Numigi', 'maintainer': 'Numigi', - 'website': 'https://bit.ly/numigi-com', + 'website': 'https://numigi.com/r/home', 'license': 'LGPL-3', 'category': 'Karma', 'depends': ['karma'], diff --git a/karma_grade/models/__init__.py b/karma_grade/models/__init__.py index 2e88ea0..9a0fac4 100644 --- a/karma_grade/models/__init__.py +++ b/karma_grade/models/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import karma_with_grades diff --git a/karma_grade/models/karma_with_grades.py b/karma_grade/models/karma_with_grades.py index 9fc7fde..a345b4e 100644 --- a/karma_grade/models/karma_with_grades.py +++ b/karma_grade/models/karma_with_grades.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import api, fields, models diff --git a/karma_grade/tests/__init__.py b/karma_grade/tests/__init__.py index 0ca2c59..c63ff81 100644 --- a/karma_grade/tests/__init__.py +++ b/karma_grade/tests/__init__.py @@ -1,2 +1,2 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/karma_grade/tests/test_karma_grade.py b/karma_grade/tests/test_karma_grade.py index 1a06e1b..0d1bde6 100644 --- a/karma_grade/tests/test_karma_grade.py +++ b/karma_grade/tests/test_karma_grade.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo.addons.karma.computation import ConditionKarmaComputer diff --git a/karma_partner/README.rst b/karma_partner/README.rst index 436b725..08590af 100644 --- a/karma_partner/README.rst +++ b/karma_partner/README.rst @@ -6,8 +6,5 @@ This module adds the karma widget to the partner form view. Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -More information ----------------- -* Meet us at https://bit.ly/numigi-com +The `Numigi `_ team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. \ No newline at end of file diff --git a/karma_partner/__init__.py b/karma_partner/__init__.py index 0ca2c59..c63ff81 100644 --- a/karma_partner/__init__.py +++ b/karma_partner/__init__.py @@ -1,2 +1,2 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/karma_partner/__manifest__.py b/karma_partner/__manifest__.py index 598fa20..b986d9f 100644 --- a/karma_partner/__manifest__.py +++ b/karma_partner/__manifest__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ 'version': '1.0.0', 'author': 'Numigi', 'maintainer': 'Numigi', - 'website': 'https://bit.ly/numigi-com', + 'website': 'https://numigi.com/r/home', 'license': 'LGPL-3', 'category': 'Karma', 'summary': 'Add the karma widget on partner form views.', diff --git a/karma_product/README.rst b/karma_product/README.rst index bee3420..f51e966 100644 --- a/karma_product/README.rst +++ b/karma_product/README.rst @@ -26,8 +26,5 @@ Then, the same score will appear on both product template and variant forms. Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -More information ----------------- -* Meet us at https://bit.ly/numigi-com +The `Numigi `_ team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. \ No newline at end of file diff --git a/karma_product/__init__.py b/karma_product/__init__.py index 0ca2c59..c63ff81 100644 --- a/karma_product/__init__.py +++ b/karma_product/__init__.py @@ -1,2 +1,2 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/karma_product/__manifest__.py b/karma_product/__manifest__.py index 6b53f53..af9af51 100644 --- a/karma_product/__manifest__.py +++ b/karma_product/__manifest__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ 'version': '1.0.0', 'author': 'Numigi', 'maintainer': 'Numigi', - 'website': 'https://bit.ly/numigi-com', + 'website': 'https://numigi.com/r/home', 'license': 'LGPL-3', 'category': 'Karma', 'summary': 'Add the karma widget on product form views.', diff --git a/karma_project/README.rst b/karma_project/README.rst index 84ccd9a..05f569c 100644 --- a/karma_project/README.rst +++ b/karma_project/README.rst @@ -8,8 +8,5 @@ This module adds the karma widget to the project task and project form views. Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -More information ----------------- -* Meet us at https://bit.ly/numigi-com +The `Numigi `_ team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. \ No newline at end of file diff --git a/karma_project/__init__.py b/karma_project/__init__.py index 0ca2c59..c63ff81 100644 --- a/karma_project/__init__.py +++ b/karma_project/__init__.py @@ -1,2 +1,2 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/karma_project/__manifest__.py b/karma_project/__manifest__.py index 6f3c6c7..5738587 100644 --- a/karma_project/__manifest__.py +++ b/karma_project/__manifest__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ "version": "1.0.1", "author": "Numigi", "maintainer": "Numigi", - "website": "https://bit.ly/numigi-com", + "website": "https://numigi.com/r/home", "license": "LGPL-3", "category": "Karma", "summary": "Add the karma widget on project task and project form views.", diff --git a/karma_properties/README.rst b/karma_properties/README.rst index f7e0684..5764606 100644 --- a/karma_properties/README.rst +++ b/karma_properties/README.rst @@ -59,8 +59,5 @@ it is just the view which displays the field which will be deleted. Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -More information ----------------- -* Meet us at https://bit.ly/numigi-com +The `Numigi `_ team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. \ No newline at end of file diff --git a/karma_properties/__init__.py b/karma_properties/__init__.py index fd8d229..36ffad6 100644 --- a/karma_properties/__init__.py +++ b/karma_properties/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import models diff --git a/karma_properties/__manifest__.py b/karma_properties/__manifest__.py index 6ec45ed..7a7bd51 100644 --- a/karma_properties/__manifest__.py +++ b/karma_properties/__manifest__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ 'version': '1.0.0', 'author': 'Numigi', 'maintainer': 'Numigi', - 'website': 'https://bit.ly/numigi-com', + 'website': 'https://numigi.com/r/home', 'license': 'LGPL-3', 'category': 'Karma', 'summary': """Search, group by, filter and add in the views diff --git a/karma_properties/models/__init__.py b/karma_properties/models/__init__.py index 7e2f7d2..c0511f9 100644 --- a/karma_properties/models/__init__.py +++ b/karma_properties/models/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import karma diff --git a/karma_properties/models/karma.py b/karma_properties/models/karma.py index 697134f..ed0e77b 100644 --- a/karma_properties/models/karma.py +++ b/karma_properties/models/karma.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import logging diff --git a/karma_required_field/README.md b/karma_required_field/README.md index e0264b0..4263a76 100644 --- a/karma_required_field/README.md +++ b/karma_required_field/README.md @@ -107,8 +107,5 @@ The completion of `Leads` have an higher weighting than `Contacts`, thus will ha Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -More information ----------------- -* Meet us at https://bit.ly/numigi-com +The [Numigi](https://numigi.com/r/home) team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. diff --git a/karma_required_field/__init__.py b/karma_required_field/__init__.py index fd8d229..36ffad6 100644 --- a/karma_required_field/__init__.py +++ b/karma_required_field/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import models diff --git a/karma_required_field/__manifest__.py b/karma_required_field/__manifest__.py index d13ce29..1b853d4 100644 --- a/karma_required_field/__manifest__.py +++ b/karma_required_field/__manifest__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ 'version': '1.0.0', 'author': 'Numigi', 'maintainer': 'Numigi', - 'website': 'https://bit.ly/numigi-com', + 'website': 'https://numigi.com/r/home', 'license': 'LGPL-3', 'category': 'Karma', 'summary': 'Score users based on form view fields.', diff --git a/karma_required_field/models/__init__.py b/karma_required_field/models/__init__.py index ed57ddb..1f53f23 100644 --- a/karma_required_field/models/__init__.py +++ b/karma_required_field/models/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import ( diff --git a/karma_required_field/models/karma_field_average.py b/karma_required_field/models/karma_field_average.py index adda23e..a827e57 100644 --- a/karma_required_field/models/karma_field_average.py +++ b/karma_required_field/models/karma_field_average.py @@ -1,4 +1,4 @@ -# © 2018 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). import pytz diff --git a/karma_required_field/models/karma_required_field.py b/karma_required_field/models/karma_required_field.py index 1e61da3..27d75ea 100644 --- a/karma_required_field/models/karma_required_field.py +++ b/karma_required_field/models/karma_required_field.py @@ -1,4 +1,4 @@ -# © 2018 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import api, models, fields diff --git a/karma_required_field/tests/__init__.py b/karma_required_field/tests/__init__.py index 0ca2c59..c63ff81 100644 --- a/karma_required_field/tests/__init__.py +++ b/karma_required_field/tests/__init__.py @@ -1,2 +1,2 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). diff --git a/karma_required_field/tests/test_karma_field_average.py b/karma_required_field/tests/test_karma_field_average.py index d72cd0d..f3004d3 100644 --- a/karma_required_field/tests/test_karma_field_average.py +++ b/karma_required_field/tests/test_karma_field_average.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from datetime import datetime, timedelta diff --git a/karma_user_dashboard/README.md b/karma_user_dashboard/README.md index 88debb5..239ae54 100644 --- a/karma_user_dashboard/README.md +++ b/karma_user_dashboard/README.md @@ -26,8 +26,5 @@ In order to select which Karma should be displayed on the dashboard: Contributors ------------ -* Numigi (tm) and all its contributors (https://bit.ly/numigiens) -More information ----------------- -* Meet us at https://bit.ly/numigi-com +The [Numigi](https://numigi.com/r/home) team is the contributor to this project. We help Quebec companies implement Odoo and Konvergo ERP. diff --git a/karma_user_dashboard/__init__.py b/karma_user_dashboard/__init__.py index fd8d229..36ffad6 100644 --- a/karma_user_dashboard/__init__.py +++ b/karma_user_dashboard/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import models diff --git a/karma_user_dashboard/__manifest__.py b/karma_user_dashboard/__manifest__.py index 633a0c8..b357df8 100644 --- a/karma_user_dashboard/__manifest__.py +++ b/karma_user_dashboard/__manifest__.py @@ -1,4 +1,4 @@ -# © 2018 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { @@ -6,7 +6,7 @@ 'version': '1.0.0', 'author': 'Numigi', 'maintainer': 'Numigi', - 'website': 'https://bit.ly/numigi-com', + 'website': 'https://numigi.com/r/home', 'license': 'LGPL-3', 'category': 'Karma', 'summary': 'Add a dashboard to display the user Karma scores.', diff --git a/karma_user_dashboard/models/__init__.py b/karma_user_dashboard/models/__init__.py index bf246f0..810f5a4 100644 --- a/karma_user_dashboard/models/__init__.py +++ b/karma_user_dashboard/models/__init__.py @@ -1,4 +1,4 @@ -# © 2023 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from . import karma_display_on_dashboard diff --git a/karma_user_dashboard/models/karma_display_on_dashboard.py b/karma_user_dashboard/models/karma_display_on_dashboard.py index 551f93c..980b7fc 100644 --- a/karma_user_dashboard/models/karma_display_on_dashboard.py +++ b/karma_user_dashboard/models/karma_display_on_dashboard.py @@ -1,4 +1,4 @@ -# © 2018 Numigi (tm) and all its contributors (https://bit.ly/numigiens) +# © Numigi (tm) and all its contributors (https://numigi.com/r/home) # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo import api, fields, models