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
Commits
e1231ef08ace
Commit
e1231ef08ace
authored
10 months ago
by
oury.balde
Browse files
Options
Downloads
Patches
Plain Diff
Added `sortkey` parameter to the `RelationToMany` class
parent
e26d83ca7c9e
No related branches found
Branches containing commit
Tags
16.0.1.2.0
Tags containing commit
1 merge request
!44
Added `sortkey` parameter to the `RelationToMany` class
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
NEWS.rst
+5
-0
5 additions, 0 deletions
NEWS.rst
__manifest__.py
+1
-1
1 addition, 1 deletion
__manifest__.py
relation.py
+4
-0
4 additions, 0 deletions
relation.py
with
10 additions
and
1 deletion
NEWS.rst
+
5
−
0
View file @
e1231ef0
Changelog
=========
16.0.1.2.0
----------
Added `sortkey` parameter to the `RelationToMany` class.
16.0.1.1.1
----------
...
...
This diff is collapsed.
Click to expand it.
__manifest__.py
+
1
−
1
View file @
e1231ef0
...
...
@@ -22,7 +22,7 @@
"
name
"
:
"
Converter
"
,
"
license
"
:
"
AGPL-3
"
,
"
summary
"
:
"
Convert odoo records to/from plain data structures.
"
,
"
version
"
:
"
16.0.1.
1.1
"
,
"
version
"
:
"
16.0.1.
2.0
"
,
"
category
"
:
"
Hidden
"
,
"
author
"
:
"
XCG Consulting
"
,
"
website
"
:
"
https://orbeet.io/
"
,
...
...
This diff is collapsed.
Click to expand it.
relation.py
+
4
−
0
View file @
e1231ef0
...
...
@@ -127,6 +127,7 @@
field_name
:
str
,
model_name
:
Optional
[
str
],
converter
:
Converter
,
sortkey
:
None
|
Callable
[[
models
.
Model
],
bool
]
=
None
,
filtered
:
None
|
str
|
Callable
[[
models
.
Model
],
bool
]
=
None
,
context
:
Optional
[
ContextBuilder
]
=
None
,
limit
:
Optional
[
Any
]
=
None
,
...
...
@@ -138,6 +139,7 @@
self
.
converter
=
converter
self
.
model_name
=
model_name
self
.
filtered
=
filtered
self
.
sortkey
=
sortkey
self
.
context
=
context
self
.
limit
=
limit
...
...
@@ -150,6 +152,8 @@
return
Skip
if
self
.
filtered
:
value
=
value
.
filtered
(
self
.
filtered
)
if
self
.
sortkey
:
value
=
value
.
sorted
(
key
=
self
.
sortkey
)
if
self
.
limit
:
value
=
value
[:
self
.
limit
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment