Skip to content
Snippets Groups Projects

18.0 backport

Open Vincent Hatakeyama requested to merge topic/16.0/backport into branch/16.0
Files
22
+ 12
12
@@ -20,9 +20,9 @@
import uuid
from odoo import api, models
from odoo import api, models # type: ignore[import-untyped]
# Xrefs are stored within "ir.model.data" with this module name.
_XREF_IMD_MODULE = "__converter__"
@@ -24,9 +24,9 @@
# Xrefs are stored within "ir.model.data" with this module name.
_XREF_IMD_MODULE = "__converter__"
class IrModelData(models.Model):
class IrModelData(models.BaseModel):
"""Add xref tools.
All done with the super-admin user to bypass security rules.
@@ -37,5 +37,5 @@
_inherit = "ir.model.data"
@api.model
def generate_name(self):
def generate_name(self) -> str:
"""Generate an xref for odoo record;
@@ -41,7 +41,7 @@
"""Generate an xref for odoo record;
It return a UUID from a string of 32 hex digit
:return: a UUID from a string of 32 hex digit
"""
return uuid.uuid4().hex
@api.model
@@ -43,10 +43,12 @@
"""
return uuid.uuid4().hex
@api.model
def object_to_module_and_name(self, record_set, module=_XREF_IMD_MODULE):
def object_to_module_and_name(
self, record_set: models.BaseModel, module: str | None = _XREF_IMD_MODULE
) -> tuple[str, str]:
"""Retrieve an xref pointing to the specified Odoo record; create one
when missing.
:param module: Name of the module to use. None to use any name, if no
xmlid exists "" will be used as the module name.
@@ -49,9 +51,7 @@
"""Retrieve an xref pointing to the specified Odoo record; create one
when missing.
:param module: Name of the module to use. None to use any name, if no
xmlid exists "" will be used as the module name.
:type module: Optional[str]
:rtype: Tuple[str, str]
:return: tuple module and name
"""
record_set.ensure_one()
@@ -76,8 +76,10 @@
return module, name
@api.model
def object_to_xmlid(self, record_set, module=_XREF_IMD_MODULE):
def object_to_xmlid(
self, record_set: models.BaseModel, module: str | None = _XREF_IMD_MODULE
) -> str:
"""Retrieve an xref pointing to the specified Odoo record; create one
when missing.
:param module: Name of the module to use. None to use any name, if no
xmlid exists "" will be used as the module name.
@@ -80,9 +82,7 @@
"""Retrieve an xref pointing to the specified Odoo record; create one
when missing.
:param module: Name of the module to use. None to use any name, if no
xmlid exists "" will be used as the module name.
:type module: Optional[str]
:rtype: xmlid
"""
return "{0[0]}.{0[1]}".format(
self.object_to_module_and_name(record_set, module)
@@ -91,6 +91,6 @@
@api.model
def set_xmlid(
self,
record_set: models.Model,
record_set: models.BaseModel,
name: str,
module: str = _XREF_IMD_MODULE,
@@ -95,6 +95,6 @@
name: str,
module: str = _XREF_IMD_MODULE,
only_when_missing: str = False,
only_when_missing: bool = False,
):
"""Save an external reference to the specified Odoo record.
:param module: Name of the module to use.
Loading