Changeset 8589 for main/waeup.kofa/trunk/src
- Timestamp:
- 1 Jun 2012, 06:21:18 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r8565 r8589 926 926 # might have forgotten to lock the form after changing the state 927 927 if state != PAID: 928 self.flash(_('This form cannot be submitted. Wrong state!')) 928 self.flash(_('The form cannot be submitted. Wrong state!')) 929 return 930 if not self.context.__parent__.enddate or ( 931 self.context.__parent__.enddate < datetime.now(pytz.utc)): 932 self.flash( 933 _('The form cannot be submitted. Application period has expired!')) 929 934 return 930 935 IWorkflowInfo(self.context).fireTransition('submit') 936 # application_date is used in export files for sorting. 937 # We can thus store utc. 931 938 self.context.application_date = datetime.utcnow() 932 939 self.context.locked = True -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py
r8562 r8589 315 315 state = Attribute('The application state of an applicant') 316 316 display_fullname = Attribute('The fullname of an applicant') 317 application_date = Attribute(' Date of submission, used for export only')317 application_date = Attribute('UTC datetime of submission, used for export only') 318 318 password = Attribute('Encrypted password of a applicant') 319 319 application_number = Attribute('The key under which the record is stored')
Note: See TracChangeset for help on using the changeset viewer.