From 1ad19cd1c47797edb7021bd3b15c55350bd4d66b Mon Sep 17 00:00:00 2001 From: GabbasovDinar Date: Wed, 9 Oct 2024 17:53:45 +0500 Subject: [PATCH] [MIG] ir_actions_report_multi_company: Migration from Odoo 13.0 to 16.0 --- ir_actions_report_multi_company/README.rst | 21 +++++---- .../__manifest__.py | 2 +- .../models/ir_actions_actions.py | 8 ++-- .../static/description/index.html | 46 +++++++++++-------- 4 files changed, 43 insertions(+), 34 deletions(-) diff --git a/ir_actions_report_multi_company/README.rst b/ir_actions_report_multi_company/README.rst index b4c74de8703..7506fc078bc 100644 --- a/ir_actions_report_multi_company/README.rst +++ b/ir_actions_report_multi_company/README.rst @@ -2,10 +2,13 @@ Ir Actions Report Multi Company =============================== -.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:6c602285e506c9e77fc87eb04bbc57a32d9cb1a46e416c44bed8993d41fdbd6f + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status @@ -14,14 +17,14 @@ Ir Actions Report Multi Company :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmulti--company-lightgray.png?logo=github - :target: https://github.com/OCA/multi-company/tree/12.0/ir_actions_report_multi_company + :target: https://github.com/OCA/multi-company/tree/16.0/ir_actions_report_multi_company :alt: OCA/multi-company .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/multi-company-12-0/multi-company-12-0-ir_actions_report_multi_company + :target: https://translation.odoo-community.org/projects/multi-company-16-0/multi-company-16-0-ir_actions_report_multi_company :alt: Translate me on Weblate -.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/133/12.0 - :alt: Try me on Runbot +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/multi-company&target_branch=16.0 + :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -42,8 +45,8 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -78,6 +81,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -This module is part of the `OCA/multi-company `_ project on GitHub. +This module is part of the `OCA/multi-company `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/ir_actions_report_multi_company/__manifest__.py b/ir_actions_report_multi_company/__manifest__.py index 3509e07ce97..187a4ac9bbe 100644 --- a/ir_actions_report_multi_company/__manifest__.py +++ b/ir_actions_report_multi_company/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Ir Actions Report Multi Company", "summary": "Make Report Actions multi-company aware", - "version": "13.0.1.0.0", + "version": "16.0.1.0.0", "license": "AGPL-3", "author": "ACSONE SA/NV, Odoo Community Association (OCA)", "website": "https://github.com/OCA/multi-company", diff --git a/ir_actions_report_multi_company/models/ir_actions_actions.py b/ir_actions_report_multi_company/models/ir_actions_actions.py index d3c420396f2..04686debda3 100644 --- a/ir_actions_report_multi_company/models/ir_actions_actions.py +++ b/ir_actions_report_multi_company/models/ir_actions_actions.py @@ -1,6 +1,6 @@ # Copyright 2022 XCG Consulting # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo import api, models, tools +from odoo import models, tools class IrActions(models.Model): @@ -9,13 +9,13 @@ class IrActions(models.Model): # Add companies to the cache of this method that is used in # models.BaseModels.fields_view_get to get the toolbar actions that are now # company dependant. - @api.model @tools.ormcache( "frozenset(self.env.user.groups_id.ids)", "frozenset(self.env.companies.ids)", "model_name", + "self.env.lang", ) - def get_bindings(self, model_name): + def _get_bindings(self, model_name): """Retrieve the list of actions bound to the given model. :return: a dict mapping binding types to a list of dict describing @@ -24,5 +24,5 @@ def get_bindings(self, model_name): """ # Using __wrapped__ is necessary to bypass the cache put by Odoo on the # super method. - result = super().get_bindings.__wrapped__(self, model_name) + result = super()._get_bindings.__wrapped__(self, model_name) return result diff --git a/ir_actions_report_multi_company/static/description/index.html b/ir_actions_report_multi_company/static/description/index.html index ba8f9cb43a8..9caa6e73458 100644 --- a/ir_actions_report_multi_company/static/description/index.html +++ b/ir_actions_report_multi_company/static/description/index.html @@ -1,20 +1,19 @@ - - + Ir Actions Report Multi Company