Changeset 12015 for main/waeup.ikoba/trunk/src/waeup/ikoba/documents
- Timestamp:
- 20 Nov 2014, 21:39:40 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba/documents
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/documents/interfaces.py
r12007 r12015 46 46 history = Attribute('Object history, a list of messages') 47 47 48 doctype = schema.Choice(49 title = _(u'Document Type'),50 source = DocumentTypeSource(),51 required = True,52 )53 54 48 title = schema.TextLine( 55 49 title = _(u'Document Title'), -
main/waeup.ikoba/trunk/src/waeup/ikoba/documents/workflow.py
r11997 r12015 1 ## $Id : batching.py 11891 2014-10-28 20:02:45Z henrik$1 ## $Id$ 2 2 ## 3 3 ## Copyright (C) 2014 Uli Fouquet & Henrik Bettermann … … 34 34 VERIFIED = 'verified' 35 35 REJECTED = 'rejected' 36 OUTDATED = 'outdated' 36 37 37 38 IMPORTABLE_STATES = (CREATED, SUBMITTED, VERIFIED, REJECTED) … … 87 88 source = SUBMITTED, 88 89 destination = CREATED), 90 91 Transition( 92 transition_id = 'outdate', 93 title = _('Set to outdated'), 94 msg = _('Set to outdated'), 95 source = VERIFIED, 96 destination = OUTDATED), 89 97 ) 90 98
Note: See TracChangeset for help on using the changeset viewer.