Changeset 9952 for main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py
- Timestamp:
- 15 Feb 2013, 09:21:12 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py
r9938 r9952 2071 2071 pnav = 4 2072 2072 buttonname = _('Start clearance now') 2073 with_ac = True 2073 2074 2074 2075 @property … … 2098 2099 self.redirect(self.url(self.context, 'edit_base')) 2099 2100 return 2100 self.ac_series = self.request.form.get('ac_series', None)2101 self.ac_number = self.request.form.get('ac_number', None)2102 2101 if self.with_ac: 2102 self.ac_series = self.request.form.get('ac_series', None) 2103 self.ac_number = self.request.form.get('ac_number', None) 2103 2104 if SUBMIT is None: 2104 2105 return 2105 pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) 2106 code = get_access_code(pin) 2107 if not code: 2108 self.flash(_('Activation code is invalid.')) 2109 return 2110 if code.state == USED: 2111 self.flash(_('Activation code has already been used.')) 2112 return 2113 # Mark pin as used (this also fires a pin related transition) 2114 # and fire transition start_clearance 2115 comment = _(u"invalidated") 2116 # Here we know that the ac is in state initialized so we do not 2117 # expect an exception, but the owner might be different 2118 if not invalidate_accesscode(pin, comment, self.context.student_id): 2119 self.flash(_('You are not the owner of this access code.')) 2120 return 2121 self.context.clr_code = pin 2106 if self.with_ac: 2107 pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) 2108 code = get_access_code(pin) 2109 if not code: 2110 self.flash(_('Activation code is invalid.')) 2111 return 2112 if code.state == USED: 2113 self.flash(_('Activation code has already been used.')) 2114 return 2115 # Mark pin as used (this also fires a pin related transition) 2116 # and fire transition start_clearance 2117 comment = _(u"invalidated") 2118 # Here we know that the ac is in state initialized so we do not 2119 # expect an exception, but the owner might be different 2120 if not invalidate_accesscode(pin, comment, self.context.student_id): 2121 self.flash(_('You are not the owner of this access code.')) 2122 return 2123 self.context.clr_code = pin 2122 2124 IWorkflowInfo(self.context).fireTransition('start_clearance') 2123 2125 self.flash(_('Clearance process has been started.')) … … 2194 2196 pnav = 4 2195 2197 buttonname = _('Request clearance now') 2198 with_ac = True 2196 2199 2197 2200 def update(self, SUBMIT=None): 2198 self.ac_series = self.request.form.get('ac_series', None) 2199 self.ac_number = self.request.form.get('ac_number', None) 2201 if self.with_ac: 2202 self.ac_series = self.request.form.get('ac_series', None) 2203 self.ac_number = self.request.form.get('ac_number', None) 2200 2204 if SUBMIT is None: 2201 2205 return 2202 pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) 2203 if self.context.clr_code and self.context.clr_code != pin: 2204 self.flash(_("This isn't your CLR access code.")) 2205 return 2206 if self.with_ac: 2207 pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) 2208 if self.context.clr_code and self.context.clr_code != pin: 2209 self.flash(_("This isn't your CLR access code.")) 2210 return 2206 2211 state = IWorkflowState(self.context).getState() 2207 2212 if state != CLEARANCE: … … 2225 2230 pnav = 4 2226 2231 buttonname = _('Start now') 2232 with_ac = True 2227 2233 2228 2234 def update(self, SUBMIT=None): … … 2235 2241 self.redirect(self.url(self.context)) 2236 2242 return 2237 self.ac_series = self.request.form.get('ac_series', None)2238 self.ac_number = self.request.form.get('ac_number', None)2239 2243 if self.with_ac: 2244 self.ac_series = self.request.form.get('ac_series', None) 2245 self.ac_number = self.request.form.get('ac_number', None) 2240 2246 if SUBMIT is None: 2241 2247 return 2242 pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) 2243 code = get_access_code(pin) 2244 if not code: 2245 self.flash(_('Activation code is invalid.')) 2246 return 2247 # Mark pin as used (this also fires a pin related transition) 2248 if code.state == USED: 2249 self.flash(_('Activation code has already been used.')) 2250 return 2251 else: 2252 comment = _(u"invalidated") 2253 # Here we know that the ac is in state initialized so we do not 2254 # expect an error, but the owner might be different 2255 if not invalidate_accesscode( 2256 pin,comment,self.context.student.student_id): 2257 self.flash(_('You are not the owner of this access code.')) 2248 if self.with_ac: 2249 pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) 2250 code = get_access_code(pin) 2251 if not code: 2252 self.flash(_('Activation code is invalid.')) 2258 2253 return 2254 # Mark pin as used (this also fires a pin related transition) 2255 if code.state == USED: 2256 self.flash(_('Activation code has already been used.')) 2257 return 2258 else: 2259 comment = _(u"invalidated") 2260 # Here we know that the ac is in state initialized so we do not 2261 # expect an error, but the owner might be different 2262 if not invalidate_accesscode( 2263 pin,comment,self.context.student.student_id): 2264 self.flash(_('You are not the owner of this access code.')) 2265 return 2259 2266 try: 2260 2267 if self.context.student.state == CLEARED:
Note: See TracChangeset for help on using the changeset viewer.