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:
parent
2d16e7766a
commit
511ae2a8a7
1 changed files with 5 additions and 0 deletions
|
@ -167,6 +167,11 @@ class ICustomer(Interface):
|
||||||
description=_(u'A name or number uniquely identifiying the customer.'),
|
description=_(u'A name or number uniquely identifiying the customer.'),
|
||||||
default='',
|
default='',
|
||||||
required=True)
|
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.')
|
shops = Attribute(u'The shops the client object is a customer of.')
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue