fix states list for meeting minutes

This commit is contained in:
Helmut Merz 2012-05-07 17:57:19 +02:00
parent 61735e5bc0
commit 0a72c9bda9
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
#
# Copyright (c) 2009 Helmut Merz helmutm@cy55.de
# Copyright (c) 2012 Helmut Merz helmutm@cy55.de
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -18,8 +18,6 @@
"""
Member registration adapter(s).
$Id$
"""
from zope import interface, component, schema

View file

@ -251,7 +251,9 @@ class MeetingMinutesWork(WorkReportInstance, SubReport):
fields = Jeep((workTitle, party, day, state)) #description,
defaultOutputFields = fields
states = ('planned',)
defaultSortCriteria = (day,)
states = ('planned', 'accepted', 'running', 'done',
'finished', 'closed', 'moved')
@property
def queryCriteria(self):