From a2c2eed300196a8e2a0275a0744cc4bc752bfaa1 Mon Sep 17 00:00:00 2001 From: helmutm Date: Tue, 29 Sep 2009 09:02:11 +0000 Subject: [PATCH] add shop email address git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3564 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 fbefb9f..3b3312e 100644 --- a/commerce/interfaces.py +++ b/commerce/interfaces.py @@ -102,6 +102,11 @@ class IShop(Interface): description=_(u'Check if shop is primarily for consumers.'), default=False, required=False) + email = schema.TextLine( + title=_(u'E-Mail Address'), + description=_(u'Email address of the shop.'), + default=u'', + required=False) products = Attribute(u'The products available in this shop.') categories = Attribute(u'The product categories provided by this shop.')