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
Laurent S
erp5
Commits
d62dacd7
Commit
d62dacd7
authored
Dec 16, 2011
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
_migrateSimulationTree: automatically delete orphan Simulation Movements
parent
33f1ef9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
22 deletions
+27
-22
product/ERP5/Document/AppliedRule.py
product/ERP5/Document/AppliedRule.py
+27
-22
No files found.
product/ERP5/Document/AppliedRule.py
View file @
d62dacd7
...
...
@@ -322,6 +322,7 @@ class AppliedRule(XMLObject, ExplainableMixin):
if
history_item
[
'simulation_state'
]
in
draft_state_list
:
continue
# Delivery is/was not is draft state
resolveCategory
=
portal
.
portal_categories
.
resolveCategory
order_dict
=
{}
old_dict
=
{}
# Caller may want to drop duplicate SM, like a unbuilt SM if there's
...
...
@@ -330,31 +331,35 @@ class AppliedRule(XMLObject, ExplainableMixin):
# remember them and returns None for duplicates.
sort_sm
=
lambda
x
:
(
not
x
.
getDelivery
(),
not
x
.
getQuantity
(),
x
.
getId
())
for
sm
in
sorted
(
self
.
objectValues
(),
key
=
sort_sm
):
sm_dict
=
old_dict
.
setdefault
(
sm
.
getOrder
()
or
sm
.
getDelivery
(),
{})
recurse_list
=
deque
(({
get_matching_key
(
sm
):
(
sm
,)},))
while
recurse_list
:
for
k
,
x
in
recurse_list
.
popleft
().
iteritems
():
if
not
k
:
continue
if
len
(
x
)
>
1
:
x
=
[
x
for
x
in
x
if
x
.
getDelivery
()
or
x
.
getQuantity
()]
line
=
sm
.
getOrder
()
or
sm
.
getDelivery
()
# Check SM is not orphan, which happened with old buggy trees.
if
resolveCategory
(
line
)
is
not
None
:
sm_dict
=
old_dict
.
setdefault
(
line
,
{})
recurse_list
=
deque
(({
get_matching_key
(
sm
):
(
sm
,)},))
while
recurse_list
:
for
k
,
x
in
recurse_list
.
popleft
().
iteritems
():
if
not
k
:
continue
if
len
(
x
)
>
1
:
x
.
sort
(
key
=
sort_sm
)
sm_dict
.
setdefault
(
k
,
[]).
extend
(
x
)
for
x
in
x
:
r
=
{}
for
x
in
x
.
objectValues
():
sm_list
=
x
.
getMovementList
()
if
sm_list
:
r
.
setdefault
(
x
.
getSpecialise
(),
[]).
append
(
sm_list
)
for
x
in
r
.
values
():
x
=
[
x
for
x
in
x
if
x
.
getDelivery
()
or
x
.
getQuantity
()]
if
len
(
x
)
>
1
:
x
=
[
y
for
y
in
x
if
any
(
z
.
getDelivery
()
for
z
in
y
)]
or
x
[:
1
]
x
,
=
x
x
.
sort
(
key
=
sort_sm
)
sm_dict
.
setdefault
(
k
,
[]).
extend
(
x
)
for
x
in
x
:
r
=
{}
for
x
in
x
:
r
.
setdefault
(
get_matching_key
(
x
),
[]).
append
(
x
)
recurse_list
.
append
(
r
)
for
x
in
x
.
objectValues
():
sm_list
=
x
.
getMovementList
()
if
sm_list
:
r
.
setdefault
(
x
.
getSpecialise
(),
[]).
append
(
sm_list
)
for
x
in
r
.
values
():
if
len
(
x
)
>
1
:
x
=
[
y
for
y
in
x
if
any
(
z
.
getDelivery
()
for
z
in
y
)]
or
x
[:
1
]
x
,
=
x
r
=
{}
for
x
in
x
:
r
.
setdefault
(
get_matching_key
(
x
),
[]).
append
(
x
)
recurse_list
.
append
(
r
)
self
.
_delObject
(
sm
.
getId
())
# Here Delivery.isSimulated works because Movement.isSimulated
# does not see the simulated movements we've just deleted.
...
...
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