[Erp5-report] r30466 - /erp5/trunk/products/ERP5/Document/SimulationMovement.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Nov 10 13:17:11 CET 2009


Author: kazuhiko
Date: Tue Nov 10 13:17:05 2009
New Revision: 30466

URL: http://svn.erp5.org?rev=30466&view=rev
Log:
use IPropertyRecordable in Simulation Movement (not yet implementated, though).

Modified:
    erp5/trunk/products/ERP5/Document/SimulationMovement.py

Modified: erp5/trunk/products/ERP5/Document/SimulationMovement.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/SimulationMovement.py?rev=30466&r1=30465&r2=30466&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/SimulationMovement.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/SimulationMovement.py [utf8] Tue Nov 10 13:17:05 2009
@@ -26,6 +26,7 @@
 #
 ##############################################################################
 
+import zope.interface
 from Products.ERP5Type.Globals import InitializeClass
 from AccessControl import ClassSecurityInfo
 from Products.CMFCore.utils import getToolByName
@@ -101,6 +102,9 @@
   # Declarative security
   security = ClassSecurityInfo()
   security.declareObjectProtected(Permissions.AccessContentsInformation)
+
+  # Declarative interfaces
+  zope.interface.implements(interfaces.IPropertyRecordable,)
 
   # Declarative properties
   property_sheets = ( PropertySheet.Base




More information about the Erp5-report mailing list