Changeset 14348 for main/waeup.aaue/trunk/src/waeup
- Timestamp:
- 16 Dec 2016, 09:36:53 (8 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py
r14296 r14348 159 159 160 160 gst_text_book_1_fee = schema.Float( 161 title = _(u'Text Book Fee GST101 GST102'),161 title = _(u'Text Book Fee GST101 and GST102'), 162 162 default = 0.0, 163 163 required = True, … … 165 165 166 166 gst_text_book_2_fee = schema.Float( 167 title = _(u'Text Book Fee GST111 GST112'),167 title = _(u'Text Book Fee GST111 and GST112'), 168 168 default = 0.0, 169 169 required = True, … … 178 178 ent_text_book_4_fee = schema.Float( 179 179 title = _(u'Text Book Fee ENT201'), 180 default = 0.0, 181 required = True, 182 ) 183 184 gst_text_book_5_fee = schema.Float( 185 title = _(u'Text Book Fee GST101'), 186 default = 0.0, 187 required = True, 188 ) 189 190 gst_text_book_6_fee = schema.Float( 191 title = _(u'Text Book Fee GST102'), 192 default = 0.0, 193 required = True, 194 ) 195 196 gst_text_book_7_fee = schema.Float( 197 title = _(u'Text Book Fee GST111'), 198 default = 0.0, 199 required = True, 200 ) 201 202 gst_text_book_8_fee = schema.Float( 203 title = _(u'Text Book Fee GST112'), 180 204 default = 0.0, 181 205 required = True, -
main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py
r14327 r14348 201 201 not 'gst_registration_3' in paid_cats: 202 202 return False 203 if course.code in ('GST101', 'GST102') and \ 204 not 'gst_text_book_1' in paid_cats: 205 return False 206 if course.code in ('GST111', 'GST112') and \ 207 not 'gst_text_book_2' in paid_cats: 203 if course.code == 'GST101'and \ 204 not 'gst_text_book_1' in paid_cats and \ 205 not 'gst_text_book_5' in paid_cats: 206 return False 207 if course.code == 'GST102'and \ 208 not 'gst_text_book_1' in paid_cats and \ 209 not 'gst_text_book_6' in paid_cats: 210 return False 211 if course.code == 'GST111'and \ 212 not 'gst_text_book_2' in paid_cats and \ 213 not 'gst_text_book_7' in paid_cats: 214 return False 215 if course.code == 'GST112'and \ 216 not 'gst_text_book_2' in paid_cats and \ 217 not 'gst_text_book_8' in paid_cats: 208 218 return False 209 219 if course.code in ('GST222',) and \ -
main/waeup.aaue/trunk/src/waeup/aaue/students/tests/test_browser.py
r14315 r14348 865 865 configuration_1.gst_registration_1_fee = 3333.0 866 866 configuration_1.gst_text_book_1_fee = 4444.0 867 configuration_1.gst_text_book_5_fee = 2222.0 867 868 self.app['configuration'].addSessionConfiguration(configuration_1) 868 869 course = createObject('waeup.Course') … … 907 908 in self.browser.contents) 908 909 self.browser.open(self.payments_path + '/addop') 909 self.browser.getControl(name="form.p_category").value = ['gst_text_book_ 1']910 self.browser.getControl(name="form.p_category").value = ['gst_text_book_5'] 910 911 self.browser.getControl("Create ticket").click() 911 912 self.student['payments'].values()[1].approve() -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r14339 r14348 49 49 'concessional': 'Concessional Fee', 50 50 'id_card': 'Student ID Card', 51 'gst_text_book_1': 'Text Book Fee GST101 GST102',52 'gst_text_book_2': 'Text Book Fee GST111 GST112',51 'gst_text_book_1': 'Text Book Fee GST101 and GST102', 52 'gst_text_book_2': 'Text Book Fee GST111 and GST112', 53 53 'gst_text_book_3': 'Text Book Fee GST222', 54 54 'ent_text_book_4': 'Text Book Fee ENT201', 55 'gst_text_book_5': 'Text Book Fee GST101', 56 'gst_text_book_6': 'Text Book Fee GST102', 57 'gst_text_book_7': 'Text Book Fee GST111', 58 'gst_text_book_8': 'Text Book Fee GST112', 55 59 'gst_registration_1': 'Registration Fee GST101 GST102 GST111 GST112', 56 60 'gst_registration_2': 'Registration Fee GST222', … … 79 83 'concessional': 'Concessional Fee', 80 84 #'id_card': 'Student ID Card', 81 'gst_text_book_1': 'Text Book Fee GST101 GST102',82 'gst_text_book_2': 'Text Book Fee GST111 GST112',85 'gst_text_book_1': 'Text Book Fee GST101 and GST102', 86 'gst_text_book_2': 'Text Book Fee GST111 and GST112', 83 87 'gst_text_book_3': 'Text Book Fee GST222', 84 88 'ent_text_book_4': 'Text Book Fee ENT201', 89 'gst_text_book_5': 'Text Book Fee GST101', 90 'gst_text_book_6': 'Text Book Fee GST102', 91 'gst_text_book_7': 'Text Book Fee GST111', 92 'gst_text_book_8': 'Text Book Fee GST112', 85 93 'gst_registration_1': 'Registration Fee GST101 GST102 GST111 GST112', 86 94 'gst_registration_2': 'Registration Fee GST222',
Note: See TracChangeset for help on using the changeset viewer.