From 693b79322f050d1671d0f324a9b759ad0b1d3557 Mon Sep 17 00:00:00 2001 From: helmutm Date: Mon, 13 Sep 2010 13:04:25 +0000 Subject: [PATCH] add more fields to Order interface git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3994 fd906abe-77d9-0310-91a1-e0d9ade77398 --- commerce/interfaces.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/commerce/interfaces.py b/commerce/interfaces.py index 9639ef4..5fed9e2 100644 --- a/commerce/interfaces.py +++ b/commerce/interfaces.py @@ -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.')