workitem.py should inherit from OFS.SimpleItem
instead of just Persistent. This allows
easy access to attributes of workitem objects
(in my case I just wanted to access the id
of a workitem, and wanted to add support
for the getId() method).
2c2
< from Globals import Persistent
---
> from OFS.SimpleItem import SimpleItem
4c4
< class workitem(Persistent):
---
> class workitem(SimpleItem):