add more fields to Order interface

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3994 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2010-09-13 13:04:25 +00:00
parent 02428633bf
commit 693b79322f

View file

@ -362,9 +362,13 @@ class IOrder(Interface):
customer = Attribute(u'The customer issuing this order.')
invoiceAddress = Attribute(u'The address the invoice should be sent to.')
shippingAddress = Attribute(u'The address the products should be sent to.')
shippingCost = Attribute(u'The cost to be applied for shipping.')
total = Attribute(u'The total gross value (Decimal) of the order.')
# not implemented yet
netValues = Attribute(u'A collection of net total values (IValue objects)'
u'of the order.')
total = Attribute(u'The total gross value (Decimal) of the order.')
orderType = Attribute(u'Some string used for identifying the type of the order.')