Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Converter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
Converter
Merge requests
!63
18.0 backport
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
18.0 backport
topic/16.0/backport
into
branch/16.0
Overview
0
Commits
1
Pipelines
0
Changes
22
Open
Vincent Hatakeyama
requested to merge
topic/16.0/backport
into
branch/16.0
1 month ago
Overview
0
Commits
1
Pipelines
0
Changes
22
Expand
0
0
Merge request reports
Compare
branch/16.0
version 3
0ea7578b
1 month ago
version 2
98b166bb
1 month ago
version 1
46e5b6a6
1 month ago
branch/16.0 (base)
and
version 2
latest version
85125162
1 commit,
1 month ago
version 3
0ea7578b
1 commit,
1 month ago
version 2
98b166bb
1 commit,
1 month ago
version 1
46e5b6a6
1 commit,
1 month ago
22 files
+
258
−
203
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
22
Search (e.g. *.vue) (Ctrl+P)
models/ir_model_data.py
+
12
−
12
Options
@@ -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
.
Base
Model
):
"""
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
.
Base
Model
,
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