fix states list for meeting minutes
This commit is contained in:
parent
61735e5bc0
commit
0a72c9bda9
2 changed files with 4 additions and 4 deletions
|
@ -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
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -18,8 +18,6 @@
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Member registration adapter(s).
|
Member registration adapter(s).
|
||||||
|
|
||||||
$Id$
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from zope import interface, component, schema
|
from zope import interface, component, schema
|
||||||
|
|
|
@ -251,7 +251,9 @@ class MeetingMinutesWork(WorkReportInstance, SubReport):
|
||||||
|
|
||||||
fields = Jeep((workTitle, party, day, state)) #description,
|
fields = Jeep((workTitle, party, day, state)) #description,
|
||||||
defaultOutputFields = fields
|
defaultOutputFields = fields
|
||||||
states = ('planned',)
|
defaultSortCriteria = (day,)
|
||||||
|
states = ('planned', 'accepted', 'running', 'done',
|
||||||
|
'finished', 'closed', 'moved')
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def queryCriteria(self):
|
def queryCriteria(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue