From 8e65999dfb72b0d45a4e13c4b94e9cee6ef15568 Mon Sep 17 00:00:00 2001 From: helmutm Date: Tue, 5 Oct 2010 12:54:24 +0000 Subject: [PATCH] add more fields to order interface git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@4031 fd906abe-77d9-0310-91a1-e0d9ade77398 --- commerce/interfaces.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/commerce/interfaces.py b/commerce/interfaces.py index 7ce24e1..87b942e 100644 --- a/commerce/interfaces.py +++ b/commerce/interfaces.py @@ -357,6 +357,12 @@ class IOrder(Interface): paymentType = schema.TextLine( title=u'Payment Type', description=u'The payment type to be used for the order.') + paymentId = schema.TextLine( + title=u'Payment ID', + description=u'A string identifying the payment transaction.') + comments = schema.Text( + title=u'Comments', + description=u'Some arbitrary text associated with the order.') shop = Attribute(u'The shop this order belongs to.') customer = Attribute(u'The customer issuing this order.')