work in progress: task management with work items

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3090 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2008-12-27 22:21:07 +00:00
parent 2094355d84
commit 5344a8bb85

View file

@ -433,7 +433,6 @@ class IWorkItem(Interface):
'by its name or ID.')
state = Attribute('The current state the work item is in.')
description = Attribute('A note about what has to be done, and why...')
comment = Attribute('A note about what has been done, and why...')
# optional plan fields; duration (and effort) may be derived from start and end
# all date/time fields are timeStamp values, all duration and effort
# fields are in seconds
@ -447,6 +446,7 @@ class IWorkItem(Interface):
end = Attribute('When the work was finished.')
duration = Attribute('How long it took to finish the work.')
effort = Attribute('How much effort (time units) it took to finish the work.')
comment = Attribute('A note about what has been done, and why...')
# work item handling
creator = Attribute('The party that has set up the work item.')
created = Attribute('The timeStamp of the initial creation of the work item.')