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
!62
Backport 18.0 changes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Backport 18.0 changes
topic/17.0/backport
into
branch/17.0
Overview
0
Commits
18
Pipelines
0
Changes
32
Merged
Vincent Hatakeyama
requested to merge
topic/17.0/backport
into
branch/17.0
1 month ago
Overview
0
Commits
18
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 1
version 1
e026b278
1 month ago
branch/17.0 (base)
and
latest version
latest version
81195e40
18 commits,
1 month ago
version 1
e026b278
18 commits,
1 month ago
Show latest version
1 file
+
14
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
xref.py
+
14
−
4
Options
##############################################################################
#
# Converter Odoo module
# Copyright © 2020 XCG Consulting <https://xcg-consulting.fr>
# Copyright © 2020
, 2025
XCG Consulting <https://xcg-consulting.fr>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@@ -17,7 +17,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import
logging
import
os
import
uuid
from
typing
import
Any
,
Final
@@ -21,5 +22,5 @@
import
uuid
from
typing
import
Any
,
Final
from
odoo
import
api
,
models
# type: ignore[import-untyped]
from
odoo
import
_
,
api
,
models
# type: ignore[import-untyped]
@@ -25,4 +26,11 @@
from
.base
import
Context
,
NewinstanceType
,
PostHookConverter
from
.base
import
(
Context
,
ContextBuilder
,
Converter
,
NewinstanceType
,
PostHookConverter
,
build_context
,
)
from
.models.ir_model_data
import
_XREF_IMD_MODULE
@@ -27,5 +35,7 @@
from
.models.ir_model_data
import
_XREF_IMD_MODULE
_logger
=
logging
.
getLogger
(
__name__
)
# TODO dans quel cas ça ne pourrait pas être un instance getter???
class
Xref
(
PostHookConverter
):
Loading