Changeset 11683
- Timestamp:
- 11 Jun 2014, 14:38:25 (10 years ago)
- Location:
- main/waeup.kwarapoly/trunk/src/waeup/kwarapoly
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interfaces.py
r11678 r11683 83 83 required = True, 84 84 ) 85 pgd_certificate_fee = schema.Float( 86 title = _(u'PGD Certificate Fee'), 87 default = 0.0, 88 required = True, 89 ) 85 90 state_result_fee = schema.Float( 86 91 title = _(u'ND Statement of Result Fee'), … … 93 98 required = True, 94 99 ) 100 pgd_state_result_fee = schema.Float( 101 title = _(u'PGD Statement of Result Fee'), 102 default = 0.0, 103 required = True, 104 ) 95 105 transcript_local_fee = schema.Float( 96 106 title = _(u'ND Transcript (local) Fee'), … … 185 195 hnd_conv_brochure_fee = schema.Float( 186 196 title = _(u'HND Convocation Brochure Fee'), 197 default = 0.0, 198 required = True, 199 ) 200 pgd_conv_brochure_fee = schema.Float( 201 title = _(u'PGD Convocation Brochure Fee'), 187 202 default = 0.0, 188 203 required = True, -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interswitch/browser.py
r11682 r11683 174 174 elif self.context.p_category == 'hnd_conv_brochure': 175 175 self.pay_item_id = '133' 176 elif self.context.p_category == 'pgd_state_result': 177 self.pay_item_id = '134' 178 elif self.context.p_category == 'pgd_conv_brochure': 179 self.pay_item_id = '135' 180 elif self.context.p_category == 'pgd_certificate': 181 self.pay_item_id = '136' 176 182 elif 'maintenance' in self.context.p_category: 177 183 self.pay_item_id = '102' … … 329 335 elif self.context.p_category == 'hnd_conv_brochure': 330 336 self.pay_item_id = '133' 337 elif self.context.p_category == 'pgd_state_result': 338 self.pay_item_id = '134' 339 elif self.context.p_category == 'pgd_conv_brochure': 340 self.pay_item_id = '135' 341 elif self.context.p_category == 'pgd_certificate': 342 self.pay_item_id = '136' 331 343 else: 332 344 xmldict['institution_acct'] = '00000000000' -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/utils/utils.py
r11663 r11683 60 60 'certificate': 'ND Certificate', 61 61 'hnd_certificate': 'HND Certificate', 62 'pgd_certificate': 'PGD Certificate', 62 63 'state_result': 'ND Statement of Result', 63 64 'hnd_state_result': 'HND Statement of Result', 65 'pgd_state_result': 'PGD Statement of Result', 64 66 'transcript_local': 'ND Transcript (local)', 65 67 'hnd_transcript_local': 'HND Transcript (local)', … … 81 83 'conv_brochure': 'ND Convocation Brochure', 82 84 'hnd_conv_brochure': 'HND Convocation Brochure', 85 'pgd_conv_brochure': 'PGD Convocation Brochure', 83 86 } 84 87
Note: See TracChangeset for help on using the changeset viewer.