Add Title field

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

View file

@ -167,6 +167,11 @@ class ICustomer(Interface):
description=_(u'A name or number uniquely identifiying the customer.'),
default='',
required=True)
title = schema.TextLine(
title=_(u'Customer Name'),
description=_(u'Customer name.'),
default=u'',
required=True)
shops = Attribute(u'The shops the client object is a customer of.')