[Erp5-report] r7583 - /erp5/trunk/products/ERP5/Document/Supply.py

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Jun 1 21:44:01 CEST 2006


Author: jerome
Date: Thu Jun  1 21:43:56 2006
New Revision: 7583

URL: http://svn.erp5.org?rev=7583&view=rev
Log:
Add missing docstring, remove useless imports.


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

Modified: erp5/trunk/products/ERP5/Document/Supply.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/Supply.py?rev=7583&r1=7582&r2=7583&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/Supply.py (original)
+++ erp5/trunk/products/ERP5/Document/Supply.py Thu Jun  1 21:43:56 2006
@@ -26,15 +26,17 @@
 #
 ##############################################################################
 
-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
 from Products.ERP5.Document.Path import Path
 
-class Supply(Path,XMLObject):
+class Supply(Path, XMLObject):
+    """A Supply defines precise pricing and shipping conditions between
+    two trade parties for a limited selection of traded products,
+    components, services, etc. It can be used to represent price
+    catalogs, product referencing, pricing policy, etc.
+    """
     # CMF Type Definition
     meta_type = 'ERP5 Supply'
     portal_type = 'Supply'




More information about the Erp5-report mailing list