Commit c4b16eb6 authored by Łukasz Nowak's avatar Łukasz Nowak

- remove docstrings from methods, which are documented in related interfaces...

 - remove docstrings from methods, which are documented in related interfaces to avoid duplication and desynchronisation of documentation
 - remove empty and bogus docstrings


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@27902 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 9b5fdde7
......@@ -176,8 +176,6 @@ class BusinessPath(Path):
# IBusinessBuildable implementation
def isBuildable(self, explanation):
"""
"""
if self.isCompleted(explanation):
return False # No need to build what was already built
if self.isFrozen(explanation):
......@@ -195,9 +193,6 @@ class BusinessPath(Path):
"""
def build(self, explanation):
"""
Build
"""
builder_list = self.getBuilderList() # Missing method
for builder in builder_list:
builder.build(causality_uid=self.getUid()) # This is one way of doing
......@@ -213,10 +208,6 @@ class BusinessPath(Path):
# IBusinessCompletable implementation
def isCompleted(self, explanation):
"""
Looks at all simulation related movements
and checks the simulation_state of the delivery
"""
acceptable_state_list = self.getCompletedStateList()
for movement in self._getRelatedSimulationMovementList(explanation):
if movement.getSimulationState() not in acceptable_state_list:
......@@ -224,10 +215,6 @@ class BusinessPath(Path):
return True
def isPartiallyCompleted(self, explanation):
"""
Looks at all simulation related movements
and checks the simulation_state of the delivery
"""
acceptable_state_list = self.getCompletedStateList()
for movement in self._getRelatedSimulationMovementList(explanation):
if movement.getSimulationState() in acceptable_state_list:
......@@ -235,10 +222,6 @@ class BusinessPath(Path):
return False
def isFrozen(self, explanation):
"""
Looks at all simulation related movements
and checks if frozen
"""
movement_list = self._getRelatedSimulationMovementList(explanation)
if len(movement_list) == 0:
return False # Nothing to be considered as Frozen
......@@ -287,13 +270,6 @@ class BusinessPath(Path):
return expected_date - self.getLeadTime()
def getExpectedStopDate(self, explanation, predecessor_date=None, *args, **kwargs):
"""
Returns the expected stop date for this
path based on the explanation.
predecessor_date -- if provided, computes the date base on the
date value provided
"""
return self._getExpectedDate(explanation,
self._getRootExplanationExpectedStopDate,
self._getPredecessorExpectedStopDate,
......
......@@ -142,9 +142,6 @@ class BusinessProcess(Path, XMLObject):
return filter(lambda x:x.isPartiallyCompleted(explanation), self.getStateValueList())
def getLatestCompletedStateValue(self, explanation):
"""
Returns the most advanced completed state
"""
for state in self.getCompletedStateValueList(explanation):
for path in state.getPredecessorRelatedValueList():
if not path.isCompleted(explanation):
......@@ -152,9 +149,6 @@ class BusinessProcess(Path, XMLObject):
return None
def getLatestPartiallyCompletedStateValue(self, explanation):
"""
Returns the most advanced completed state
"""
for state in self.getCompletedStateValueList(explanation):
for path in state.getPredecessorRelatedValueList():
if not path.isPartiallyCompleted(explanation):
......@@ -162,9 +156,6 @@ class BusinessProcess(Path, XMLObject):
return None
def getLatestCompletedStateValueList(self, explanation):
"""
Returns the most advanced completed state
"""
result = []
for state in self.getCompletedStateValueList(explanation):
for path in state.getPredecessorRelatedValueList():
......@@ -173,9 +164,6 @@ class BusinessProcess(Path, XMLObject):
return result
def getLatestPartiallyCompletedStateValueList(self, explanation):
"""
Returns the most advanced completed state
"""
result = []
for state in self.getCompletedStateValueList(explanation):
for path in state.getPredecessorRelatedValueList():
......@@ -197,9 +185,6 @@ class BusinessProcess(Path, XMLObject):
return self.getReferentialDate() == 'stop_date'
def getTradePhaseList(self):
"""
Returns all trade_phase of this business process
"""
path_list = self.objectValues(portal_type=self.getPortalBusinessPathTypeList())
return filter(None, [path.getTradePhase()
for path in path_list])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment