From 511ae2a8a78f6d9e482db37cb952ae75e670cbda Mon Sep 17 00:00:00 2001 From: werners Date: Thu, 14 Aug 2008 12:26:50 +0000 Subject: [PATCH] Add Title field git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2814 fd906abe-77d9-0310-91a1-e0d9ade77398 --- commerce/interfaces.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/commerce/interfaces.py b/commerce/interfaces.py index 597e438..62aa206 100644 --- a/commerce/interfaces.py +++ b/commerce/interfaces.py @@ -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.')