From 8062d9763f72db5184ba384a70309dbc64f494e2 Mon Sep 17 00:00:00 2001 From: helmutm Date: Tue, 12 Oct 2010 12:05:52 +0000 Subject: [PATCH] add 'state' field git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@4037 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 87b942e..fc4ee57 100644 --- a/commerce/interfaces.py +++ b/commerce/interfaces.py @@ -360,6 +360,9 @@ class IOrder(Interface): paymentId = schema.TextLine( title=u'Payment ID', description=u'A string identifying the payment transaction.') + state = schema.TextLine( + title=u'State', + description=u'A string specifying the state of the order.') comments = schema.Text( title=u'Comments', description=u'Some arbitrary text associated with the order.')