Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
4dcd7980
Commit
4dcd7980
authored
Dec 16, 2014
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Business Template: do not fail if some related keys are overwritten. XXX too
simpiistic
parent
f973ffbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
product/ERP5/Document/BusinessTemplate.py
product/ERP5/Document/BusinessTemplate.py
+4
-1
No files found.
product/ERP5/Document/BusinessTemplate.py
View file @
4dcd7980
...
...
@@ -4212,7 +4212,10 @@ class CatalogKeyTemplateItemBase(BaseTemplateItem):
if
key
in
catalog_key_list
:
key_list
.
append
(
key
)
elif
not
self
.
is_bt_for_diff
:
raise
NotFound
,
'%s %r not found in catalog'
%
(
self
.
key_title
,
key
)
# here, we use 'LOG' instead of 'raise', because it can
# happen when a related key is overloaded by another business template.
LOG
(
'BusinessTemplate'
,
WARNING
,
'%s %r not found '
%
(
self
.
key_title
,
key
))
if
len
(
key_list
)
>
0
:
self
.
_objects
[
'%s/%s'
%
(
self
.
__class__
.
__name__
,
self
.
key_list_title
)]
=
key_list
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment