Add Description fiel

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2815 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
werners 2008-08-14 12:39:32 +00:00
parent 511ae2a8a7
commit cc5fa7a816

View file

@ -172,6 +172,12 @@ class ICustomer(Interface):
description=_(u'Customer name.'),
default=u'',
required=True)
description = schema.Text(
title=_(u'Description'),
description=_(u'A medium-length description of the category.'),
default=u'',
missing_value=u'',
required=False)
shops = Attribute(u'The shops the client object is a customer of.')