From 0ed9e0582249a9fdcc47ed9795d4698395cc513e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com> Date: Thu, 1 Jun 2006 19:43:56 +0000 Subject: [PATCH] Add missing docstring, remove useless imports. git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7583 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5/Document/Supply.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/product/ERP5/Document/Supply.py b/product/ERP5/Document/Supply.py index b526d7c9b6..92265766d2 100644 --- a/product/ERP5/Document/Supply.py +++ b/product/ERP5/Document/Supply.py @@ -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' -- 2.30.9