[Erp5-report] r15828 - /erp5/trunk/products/ERP5/Document/

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Aug 27 14:50:31 CEST 2007


Author: jp
Date: Mon Aug 27 14:50:30 2007
New Revision: 15828

URL: http://svn.erp5.org?rev=15828&view=rev
Log:
New WorkflowMethod implementation. This new implementation solves most issues which existed previously and related to multiple workflows for a single workflow method ID. It should also be faster but will require some more work so that changes in workflow definition are reflected automatically in workflow methods registration.

Modified:
    erp5/trunk/products/ERP5/Document/Order.py
    erp5/trunk/products/ERP5/Document/RoleDefinition.py
    erp5/trunk/products/ERP5/Document/SupplyChain.py
    erp5/trunk/products/ERP5/Document/SupplyRule.py

Modified: erp5/trunk/products/ERP5/Document/Order.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Order.py?rev=15828&r1=15827&r2=15828&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Order.py (original)
+++ erp5/trunk/products/ERP5/Document/Order.py Mon Aug 27 14:50:30 2007
@@ -28,7 +28,6 @@
 ##############################################################################
 
 from AccessControl import ClassSecurityInfo
-from Products.CMFCore.WorkflowCore import WorkflowMethod
 from Products.CMFCore.utils import getToolByName
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
 from Products.ERP5Type.Base import Base

Modified: erp5/trunk/products/ERP5/Document/RoleDefinition.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/RoleDefinition.py?rev=15828&r1=15827&r2=15828&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/RoleDefinition.py (original)
+++ erp5/trunk/products/ERP5/Document/RoleDefinition.py Mon Aug 27 14:50:30 2007
@@ -27,7 +27,6 @@
 
 from AccessControl import ClassSecurityInfo
 from Products.CMFCore.utils import getToolByName
-from Products.CMFCore.WorkflowCore import WorkflowMethod
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
 from Products.ERP5Type.XMLObject import XMLObject
 

Modified: erp5/trunk/products/ERP5/Document/SupplyChain.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/SupplyChain.py?rev=15828&r1=15827&r2=15828&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/SupplyChain.py (original)
+++ erp5/trunk/products/ERP5/Document/SupplyChain.py Mon Aug 27 14:50:30 2007
@@ -28,7 +28,6 @@
 
 from Globals import InitializeClass, PersistentMapping
 from Products.CMFCore.utils import getToolByName
-from Products.CMFCore.WorkflowCore import WorkflowMethod
 from AccessControl import ClassSecurityInfo
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
 from Products.ERP5Type.XMLObject import XMLObject

Modified: erp5/trunk/products/ERP5/Document/SupplyRule.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/SupplyRule.py?rev=15828&r1=15827&r2=15828&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/SupplyRule.py (original)
+++ erp5/trunk/products/ERP5/Document/SupplyRule.py Mon Aug 27 14:50:30 2007
@@ -29,7 +29,6 @@
 from Globals import InitializeClass, PersistentMapping
 from AccessControl import ClassSecurityInfo
 
-from Products.CMFCore.WorkflowCore import WorkflowMethod
 from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
 from Products.ERP5Type.XMLMatrix import XMLMatrix
 from Products.ERP5.Document.MappedValue import MappedValue 




More information about the Erp5-report mailing list