provide a new field for shops for safe and simple price determination
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3544 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
c63285f8bc
commit
b88e68b79e
1 changed files with 8 additions and 0 deletions
|
@ -83,6 +83,14 @@ class IShop(Interface):
|
||||||
u'for creating the next order identifier.'),
|
u'for creating the next order identifier.'),
|
||||||
default=0,
|
default=0,
|
||||||
required=False)
|
required=False)
|
||||||
|
defaultPriceScale = schema.ASCIILine(
|
||||||
|
title=_(u'Default Price Scale'),
|
||||||
|
description=_(u'A string specifying the price '
|
||||||
|
u'scale that should be used if the user is not '
|
||||||
|
u'related to a customer or the customer does not have '
|
||||||
|
u'a price group.'),
|
||||||
|
default='',
|
||||||
|
required=False)
|
||||||
|
|
||||||
products = Attribute(u'The products available in this shop.')
|
products = Attribute(u'The products available in this shop.')
|
||||||
categories = Attribute(u'The product categories provided by this shop.')
|
categories = Attribute(u'The product categories provided by this shop.')
|
||||||
|
|
Loading…
Add table
Reference in a new issue