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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Noah Brackenbury
erp5
Commits
7eea982e
Commit
7eea982e
authored
Mar 12, 2012
by
Arnaud Fontaine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure that an imported object which already exists does not get validated twice.
parent
090bd55e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
product/ERP5Type/mixin/component.py
product/ERP5Type/mixin/component.py
+4
-1
No files found.
product/ERP5Type/mixin/component.py
View file @
7eea982e
...
...
@@ -331,7 +331,10 @@ class ComponentMixin(PropertyRecordableMixin, Base):
obj
=
context
.
_getOb
(
object_id
,
None
)
if
obj
is
not
None
:
if
not
erase_existing
:
obj
.
validate
()
# Validate the object if it has not been validated yet
if
obj
.
getValidationState
()
not
in
(
'modified'
,
'validated'
):
obj
.
validate
()
return
obj
context
.
deleteContent
(
object_id
)
...
...
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