Changeset 1771
- Timestamp:
- 11 May 2007, 11:37:16 (18 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/profiles/default/layouts/import_student.xml
r1754 r1771 56 56 <property name="vocabulary">states</property> 57 57 </widget> 58 <widget name="lga" meta_type="S electWidget">58 <widget name="lga" meta_type="String Widget"> 59 59 <property name="title">LGA</property> 60 60 <property name="fields"> … … 66 66 <property name="hidden_layout_modes"/> 67 67 <property name="hidden_readonly_layout_modes"/> 68 <property name="vocabulary">local_gov_areas</property>69 68 </widget> 70 69 <widget name="firstname" meta_type="String Widget"> … … 271 270 <row> 272 271 <cell name="current_mode"/> 273 </row> 272 </row> 274 273 <row> 275 274 <cell name="entry_session"/> … … 296 295 <cell name="study_course"/> 297 296 </row> 298 297 299 298 </table> 300 299 </object> -
WAeUP_SRP/trunk/skins/waeup_default/getNextSessionId.py
r1764 r1771 13 13 """ 14 14 15 if session != context.getSessionId()[ 2:]:15 if session != context.getSessionId()[-2:]: 16 16 ns = int(session) + 1 17 17 else: -
WAeUP_SRP/trunk/skins/waeup_default/import_form.pt
r1759 r1771 3 3 data_storage options/ds; 4 4 formaction options/formaction|string:import; 5 button options/button|string: import;5 button options/button|string:Import; 6 6 creation creation|nothing;" 7 7 > … … 18 18 <br /> 19 19 <input type="submit" class="standalone" 20 name="import" value=" Import"20 name="import" value="import" 21 21 tal:attributes="value button" 22 22 tal:condition="not:creation" /> -
WAeUP_SRP/trunk/skins/waeup_epayment/pay_by_sc.py
r1765 r1771 92 92 payment.getContent().edit(mapping=info) 93 93 wftool.doActionFor(payment,'close') 94 if next_session == context.getSessionId()[ 2:]:94 if next_session == context.getSessionId()[-2:]: 95 95 wftool.doActionFor(student,'pay_school_fee') 96 96 else: -
WAeUP_SRP/trunk/skins/waeup_utilities/ti_188_resolve.py
r1687 r1771 49 49 res = scat() 50 50 for sbrain in res: 51 if not sbrain.matric_no: 52 continue 51 53 if str(sbrain.level) == '100': 52 54 ec = "new"
Note: See TracChangeset for help on using the changeset viewer.