add more fields to order interface
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@4031 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
d26d8727e5
commit
8e65999dfb
1 changed files with 6 additions and 0 deletions
|
@ -357,6 +357,12 @@ class IOrder(Interface):
|
||||||
paymentType = schema.TextLine(
|
paymentType = schema.TextLine(
|
||||||
title=u'Payment Type',
|
title=u'Payment Type',
|
||||||
description=u'The payment type to be used for the order.')
|
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.')
|
shop = Attribute(u'The shop this order belongs to.')
|
||||||
customer = Attribute(u'The customer issuing this order.')
|
customer = Attribute(u'The customer issuing this order.')
|
||||||
|
|
Loading…
Add table
Reference in a new issue