- Timestamp:
- 4 Apr 2014, 08:39:16 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/etranzact/browser.py
r11572 r11582 298 298 self.flash(msg) 299 299 return 300 msg, log = self.context.doAfterStudentPayment()300 flashtype, msg, log = self.context.doAfterStudentPayment() 301 301 if log is not None: 302 302 student.writeLogMessage(self, log) 303 self.flash(msg )303 self.flash(msg, type=flashtype) 304 304 return 305 305 … … 326 326 self.flash(msg) 327 327 return 328 msg, log = self.context.doAfterApplicantPayment()328 flashtype, msg, log = self.context.doAfterApplicantPayment() 329 329 if log is not None: 330 330 applicant.writeLogMessage(self, log) 331 self.flash(msg )331 self.flash(msg, type=flashtype) 332 332 return 333 333
Note: See TracChangeset for help on using the changeset viewer.