From cc6db5c7dad74a499111186107767113cfadfd39 Mon Sep 17 00:00:00 2001 From: helmutm Date: Tue, 20 Oct 2009 17:11:55 +0000 Subject: [PATCH] make cost field a float field git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3592 fd906abe-77d9-0310-91a1-e0d9ade77398 --- organize/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/organize/interfaces.py b/organize/interfaces.py index 25d441f..89d567d 100644 --- a/organize/interfaces.py +++ b/organize/interfaces.py @@ -222,7 +222,7 @@ class IService(Interface): title=_(u'External ID'), description=_(u'Identifier in external system or code number.'), required=False,) - cost = schema.Int( + cost = schema.Float( title=_(u'Cost'), description=_(u'Cost or prizing information.'), required=False,)