From f0e3d04b1a9b11f7b2b18c62ed0dcff2af4fd1d4 Mon Sep 17 00:00:00 2001 From: helmutm Date: Tue, 14 Sep 2010 10:38:53 +0000 Subject: [PATCH] provide fields for additional costs and tax git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3995 fd906abe-77d9-0310-91a1-e0d9ade77398 --- commerce/interfaces.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commerce/interfaces.py b/commerce/interfaces.py index 5fed9e2..7ce24e1 100644 --- a/commerce/interfaces.py +++ b/commerce/interfaces.py @@ -364,6 +364,9 @@ class IOrder(Interface): shippingAddress = Attribute(u'The address the products should be sent to.') shippingCost = Attribute(u'The cost to be applied for shipping.') + additionalCost = Attribute(u'An additional value to be added to the ' + u'net value of the order.') + tax = Attribute(u'The tax value to be added to the net value of the order.') total = Attribute(u'The total gross value (Decimal) of the order.') # not implemented yet