Commit 4f4f7447 authored by Jérome Perrin's avatar Jérome Perrin

minor style change


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8135 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a69caf95
...@@ -27,10 +27,8 @@ ...@@ -27,10 +27,8 @@
# #
############################################################################## ##############################################################################
from Globals import InitializeClass, PersistentMapping
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
from Products.CMFCore.utils import getToolByName
from Products.ERP5.Document.Delivery import Delivery from Products.ERP5.Document.Delivery import Delivery
from zLOG import LOG from zLOG import LOG
...@@ -89,7 +87,7 @@ class PackingList(Delivery): ...@@ -89,7 +87,7 @@ class PackingList(Delivery):
if self.getSimulationState() not in self.getPortalDraftOrderStateList(): if self.getSimulationState() not in self.getPortalDraftOrderStateList():
if not self.isSimulated(): if not self.isSimulated():
return 1 return 1
return Delivery.isDivergent(self,**kw) return Delivery.isDivergent(self, **kw)
####################################################### #######################################################
# Container computation # Container computation
...@@ -113,9 +111,9 @@ class PackingList(Delivery): ...@@ -113,9 +111,9 @@ class PackingList(Delivery):
########################################################################## ##########################################################################
# Applied Rule stuff # Applied Rule stuff
def updateAppliedRule(self, rule_id="default_delivery_rule",**kw): def updateAppliedRule(self, rule_id="default_delivery_rule", **kw):
""" """
XXX FIXME: Kept for compatibility XXX FIXME: Kept for compatibility
updateAppliedRule must be call with the rule_id in workflow script updateAppliedRule must be call with the rule_id in workflow script
""" """
Delivery.updateAppliedRule(self, rule_id,**kw) Delivery.updateAppliedRule(self, rule_id, **kw)
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