Changeset 3738 for WAeUP_SRP/trunk
- Timestamp:
- 28 Oct 2008, 06:58:41 (16 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/CHANGES.txt
r3736 r3738 102 102 ----------------- 103 103 - implement gown hiring 104 105 1.19 (2008-10-28) 106 ----------------- 107 - allow transition 'pay_school_fee' by import -
WAeUP_SRP/trunk/WAeUPImport.py
r3726 r3738 678 678 'wf_transition_admit': 'remain', 679 679 'wf_transition_graduate': 'close', 680 'wf_transition_pay_school_fee': 'close', 680 681 'fields': 681 682 ('jamb_reg_no', … … 705 706 'wf_transition_admit': 'remain', 706 707 'wf_transition_graduate': 'close', 708 'wf_transition_pay_school_fee': 'close', 707 709 'fields': 708 710 ('matric_no', … … 718 720 'wf_transition_admit': 'remain', 719 721 'wf_transition_graduate': 'close', 722 'wf_transition_pay_school_fee': 'open', 720 723 'fields': 721 724 ('firstname', … … 734 737 'wf_transition_admit': 'remain', 735 738 'wf_transition_graduate': 'close', 739 'wf_transition_pay_school_fee': 'open', 736 740 'fields': 737 741 ('study_course', … … 759 763 'wf_transition_admit': 'open', 760 764 'wf_transition_graduate': 'close', 765 'wf_transition_pay_school_fee': 'open', 761 766 'fields': 762 767 () … … 797 802 d = {} 798 803 transition = mapping.get('reg_transition','admit') 799 if transition not in ('admit','return' ):804 if transition not in ('admit','return','pay_school_fee'): 800 805 msg = "no valid transition provided" 801 806 break … … 891 896 current_level = mapping.get('current_level','') 892 897 transition = mapping.get('reg_transition',None) 893 if transition and transition not in ('admit','return','graduate' ):898 if transition and transition not in ('admit','return','graduate','pay_school_fee'): 894 899 msg = "no valid transition provided" 895 900 break -
WAeUP_SRP/trunk/profiles/default/workflows/waeup_student_wf/definition.xml
r3736 r3738 224 224 <exit-transition transition_id="return"/> 225 225 <exit-transition transition_id="deactivate"/> 226 <exit-transition transition_id="pay_school_fee"/> 226 227 <permission-map name="Delete objects" acquired="False"> 227 228 <permission-role>Manager</permission-role>
Note: See TracChangeset for help on using the changeset viewer.