Changeset 12568 for main/waeup.kofa/trunk/src/waeup/kofa/students/tests
- Timestamp:
- 7 Feb 2015, 11:26:19 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_export.py
r12518 r12568 1078 1078 payment_2.p_session = curr_year - 5 1079 1079 payment_2.amount_auth = 13.13 1080 payment_2.p_state = u'paid'1080 payment_2.p_state = 'paid' 1081 1081 payment_2.p_category = u'schoolfee' 1082 1082 self.student['payments']['my-2ndpayment'] = payment_2 … … 1087 1087 payment_3.p_session = curr_year - 5 1088 1088 payment_3.amount_auth = 1.01 1089 payment_3.p_state = u'paid'1089 payment_3.p_state = 'paid' 1090 1090 payment_3.p_category = u'schoolfee' 1091 1091 self.student['payments']['my-3rdpayment'] = payment_3 1092 # One session school fee has been waived 1093 payment_4 = StudentOnlinePayment() 1094 payment_4.p_id = 'my-id_2' 1095 payment_4.p_session = curr_year - 4 1096 payment_4.amount_auth = 1.01 1097 payment_4.p_state = 'waived' 1098 payment_4.p_category = u'schoolfee' 1099 self.student['payments']['my-4thpayment'] = payment_4 1092 1100 exporter = StudentPaymentsOverviewExporter() 1093 1101 exporter.export_all(self.app, self.outfile) … … 1098 1106 'current_level,current_session,current_mode,' 1099 1107 '%s\r\nA111111,234,Anna M. Tester,created,CERT1,NA,NA,0,' 1100 '200,2012,ug_ft,,,,,14.14, ,12.12,,,\r\n'1108 '200,2012,ug_ft,,,,,14.14,waived,12.12,,,\r\n' 1101 1109 % year_range_str in result 1102 1110 )
Note: See TracChangeset for help on using the changeset viewer.