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
a1a842b4
Commit
a1a842b4
authored
Nov 02, 2012
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure we don't create a Root Applied Rule for a deleted delivery
parent
ad12a47e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
product/ERP5/Document/Delivery.py
product/ERP5/Document/Delivery.py
+3
-1
No files found.
product/ERP5/Document/Delivery.py
View file @
a1a842b4
...
@@ -719,7 +719,9 @@ class Delivery(XMLObject, ImmobilisationDelivery, SimulableMixin,
...
@@ -719,7 +719,9 @@ class Delivery(XMLObject, ImmobilisationDelivery, SimulableMixin,
def
_createRootAppliedRule
(
self
):
def
_createRootAppliedRule
(
self
):
portal
=
self
.
getPortalObject
()
portal
=
self
.
getPortalObject
()
# Only create RAR if we are not in a "too early" or "too late" state.
# Only create RAR if we are not in a "too early" or "too late" state.
if
self
.
getSimulationState
()
not
in
portal
.
getPortalDraftOrderStateList
():
state
=
self
.
getSimulationState
()
if
(
state
!=
'deleted'
and
state
not
in
portal
.
getPortalDraftOrderStateList
()):
return
super
(
Delivery
,
self
).
_createRootAppliedRule
()
return
super
(
Delivery
,
self
).
_createRootAppliedRule
()
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
security
.
declareProtected
(
Permissions
.
AccessContentsInformation
,
...
...
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