From 9601a5e40253baaec25b7c89294041febbb74109 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Mon, 29 Aug 2011 09:41:09 +0200 Subject: [PATCH] add new order field 'shipment mode' --- commerce/interfaces.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/commerce/interfaces.py b/commerce/interfaces.py index 04aa4ec..019a28a 100644 --- a/commerce/interfaces.py +++ b/commerce/interfaces.py @@ -1,6 +1,6 @@ #-*- coding: UTF-8 -*- # -# Copyright (c) 2009 Helmut Merz helmutm@cy55.de +# Copyright (c) 2011 Helmut Merz helmutm@cy55.de # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -363,6 +363,9 @@ class IOrder(Interface): paymentTransactionId = schema.TextLine( title=u'Payment Transaction ID', description=u'The transaction ID provided by the payment service.') + shipmentMode = schema.TextLine( + title=u'Shipment Mode', + description=u'The mode of shipment to be used for the order.') state = schema.TextLine( title=u'State', description=u'A string specifying the state of the order.')