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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Carlos Ramos Carreño
erp5
Commits
c25c6cd3
Commit
c25c6cd3
authored
Nov 25, 2013
by
Gabriel Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up the code to a Folder not call checkConsistency recursively
parent
ffb872b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
product/ERP5Type/Core/Folder.py
product/ERP5Type/Core/Folder.py
+1
-13
No files found.
product/ERP5Type/Core/Folder.py
View file @
c25c6cd3
...
...
@@ -1414,19 +1414,7 @@ class Folder(CopyContainer, CMFBTreeFolder, CMFHBTreeFolder, Base, FolderMixIn):
# in case we erased some data
if
fixit
:
transaction
.
savepoint
(
optimistic
=
True
)
# Then check the consistency on all sub objects
for
obj
in
self
.
contentValues
():
if
obj
.
providesIConstraint
():
# it is not possible to checkConsistency of Constraint itself, as method
# of this name implement consistency checking on object
continue
if
fixit
:
extra_errors
=
obj
.
fixConsistency
(
filter
=
filter
,
**
kw
)
else
:
extra_errors
=
obj
.
checkConsistency
(
filter
=
filter
,
**
kw
)
if
len
(
extra_errors
)
>
0
:
error_list
+=
extra_errors
# We should also return an error if any
return
error_list
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
'asXML'
)
...
...
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