From b580d62951bc5493a5065cafa6e3b33238c555c6 Mon Sep 17 00:00:00 2001 From: helmutm Date: Tue, 23 Nov 2010 10:41:19 +0000 Subject: [PATCH] new field: payment transactiion id git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@4077 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 fc4ee57..04aa4ec 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.') + paymentTransactionId = schema.TextLine( + title=u'Payment Transaction ID', + description=u'The transaction ID provided by the payment service.') state = schema.TextLine( title=u'State', description=u'A string specifying the state of the order.')