From 7919d04de56071d4923d20fabbc9597a0325fbc2 Mon Sep 17 00:00:00 2001 From: Carolina Fernandez Date: Thu, 28 Sep 2023 08:18:31 -0300 Subject: [PATCH] [MIG] contract_variable_qty_timesheet: Migration to 15.0 --- contract_variable_qty_timesheet/__manifest__.py | 4 ++-- contract_variable_qty_timesheet/readme/CONTRIBUTORS.rst | 1 + contract_variable_qty_timesheet/static/description/index.html | 1 + .../tests/test_contract_variable_qty_timesheet.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/contract_variable_qty_timesheet/__manifest__.py b/contract_variable_qty_timesheet/__manifest__.py index 6b450fb73..7448dd8cc 100644 --- a/contract_variable_qty_timesheet/__manifest__.py +++ b/contract_variable_qty_timesheet/__manifest__.py @@ -1,16 +1,16 @@ # Copyright 2018 Tecnativa - Carlos Dauden # Copyright 2019 Tecnativa - Pedro M. Baeza +# Copyright 2023 Tecnativa - Carolina Fernandez # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). { "name": "Contract Variable Qty Timesheet", "summary": "Add formula to invoice ", - "version": "13.0.1.0.0", + "version": "15.0.1.0.0", "category": "Contract Management", "website": "https://github.com/OCA/contract", "author": "Tecnativa, " "Odoo Community Association (OCA)", "license": "AGPL-3", "installable": True, - "development_status": "Production/Stable", "depends": ["contract_variable_quantity", "hr_timesheet"], "data": ["data/contract_line_qty_formula_data.xml"], "maintainers": ["carlosdauden", "pedrobaeza"], diff --git a/contract_variable_qty_timesheet/readme/CONTRIBUTORS.rst b/contract_variable_qty_timesheet/readme/CONTRIBUTORS.rst index 63697f68d..e58d51e7b 100644 --- a/contract_variable_qty_timesheet/readme/CONTRIBUTORS.rst +++ b/contract_variable_qty_timesheet/readme/CONTRIBUTORS.rst @@ -2,6 +2,7 @@ * Carlos Dauden * Pedro M. Baeza + * Carolina Fernandez * `Guadaltech `_: diff --git a/contract_variable_qty_timesheet/static/description/index.html b/contract_variable_qty_timesheet/static/description/index.html index adc7a6087..dd2a6c052 100644 --- a/contract_variable_qty_timesheet/static/description/index.html +++ b/contract_variable_qty_timesheet/static/description/index.html @@ -420,6 +420,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
  • Tecnativa:
    • Carlos Dauden
    • Pedro M. Baeza
    • +
    • Carolina Fernandez
  • Guadaltech:
      diff --git a/contract_variable_qty_timesheet/tests/test_contract_variable_qty_timesheet.py b/contract_variable_qty_timesheet/tests/test_contract_variable_qty_timesheet.py index bbed59517..684a9e406 100644 --- a/contract_variable_qty_timesheet/tests/test_contract_variable_qty_timesheet.py +++ b/contract_variable_qty_timesheet/tests/test_contract_variable_qty_timesheet.py @@ -5,7 +5,7 @@ from odoo import fields from odoo.tests import common -class TestContractVariableQtyTimesheet(common.SavepointCase): +class TestContractVariableQtyTimesheet(common.TransactionCase): @classmethod def setUpClass(cls): super().setUpClass()