Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Redner Odoo Module
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package Registry
Operate
Terraform modules
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
Redner Odoo Module
Merge requests
!52
Update following the addition of standard invoice template
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Update following the addition of standard invoice template
topic/16.0/topic_MO16-00791
into
branch/16.0
Overview
0
Commits
1
Pipelines
0
Changes
3
Open
aronabencherif.diatta@xcg.africa
requested to merge
topic/16.0/topic_MO16-00791
into
branch/16.0
10 months ago
Overview
0
Commits
1
Pipelines
0
Changes
5
Expand
--HG-- branch : 16.0
Odoo ticket:
Mint PR...
0
0
Merge request reports
Compare
version 1
version 1
3d19fdb0
10 months ago
branch/16.0 (base)
and
latest version
latest version
75ef7c10
1 commit,
9 months ago
version 1
3d19fdb0
1 commit,
10 months ago
Show latest version
5 files
+
223
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
models/redner_substitution.py
+
6
−
1
Options
@@ -24,6 +24,7 @@
from
odoo.addons
import
converter
from
..converter
import
ImageDataURL
,
ImageFile
from
..utils.sorting
import
find_field_with_sort_order
,
sortkey
class
Substitution
(
models
.
Model
):
@@ -99,4 +100,7 @@
elif
sub
.
converter
==
"
image-data-url
"
:
conv
=
ImageDataURL
(
sub
.
value
)
elif
sub
.
converter
==
"
relation-to-many
"
:
# Unpack the result of finding a field with its sort order into
# variable names.
value
,
sorted
=
find_field_with_sort_order
(
sub
.
value
)
conv
=
converter
.
RelationToMany
(
@@ -102,3 +106,3 @@
conv
=
converter
.
RelationToMany
(
sub
.
value
,
value
,
None
,
@@ -104,4 +108,5 @@
None
,
sortkey
=
sortkey
(
sorted
)
if
sorted
else
None
,
converter
=
sub
.
get_children
().
build_converter
(),
)
elif
sub
.
converter
==
"
relation-path
"
:
Loading