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
6e358860
Commit
6e358860
authored
Jan 17, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only reset Business Link.
parent
365776ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
product/ERP5/Document/SimulatedDeliveryBuilder.py
product/ERP5/Document/SimulatedDeliveryBuilder.py
+4
-2
product/ERP5/mixin/movement_collection_updater.py
product/ERP5/mixin/movement_collection_updater.py
+3
-1
No files found.
product/ERP5/Document/SimulatedDeliveryBuilder.py
View file @
6e358860
...
...
@@ -131,8 +131,10 @@ class SimulatedDeliveryBuilder(BuilderMixin):
if
movement
.
getDeliveryValueList
()
==
[]:
movement_list
.
append
(
movement
)
else
:
# drop causality links
movement
.
setCausalityList
([])
# drop causality links to Business Paths/States
movement
.
setCausalityList
([
q
.
getRelativeUrl
()
for
q
in
\
movement
.
getCausalityValueList
()
if
q
.
getPortalType
()
\
not
in
self
.
getPortalBusinessLinkTypeList
()])
# XXX Add predicate test
# XXX FIXME Check that there is no double in the list
# Because we can't trust simulation_select_method
...
...
product/ERP5/mixin/movement_collection_updater.py
View file @
6e358860
...
...
@@ -191,4 +191,6 @@ class MovementCollectionUpdaterMixin:
# for each touched non buildable movement reset causality_list
if
not
movement
.
isBuildable
(
movement
.
getCausalityValue
(
portal_type
=
'Business Link'
)):
movement
.
setCausalityList
([])
movement
.
setCausalityList
([
q
.
getRelativeUrl
()
for
q
in
\
movement
.
getCausalityValueList
()
if
q
.
getPortalType
()
\
not
in
self
.
getPortalBusinessLinkTypeList
()])
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