1 | ## $Id: workflow.py 10815 2013-11-29 10:17:00Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
4 | ## This program is free software; you can redistribute it and/or modify |
---|
5 | ## it under the terms of the GNU General Public License as published by |
---|
6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
7 | ## (at your option) any later version. |
---|
8 | ## |
---|
9 | ## This program is distributed in the hope that it will be useful, |
---|
10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
12 | ## GNU General Public License for more details. |
---|
13 | ## |
---|
14 | ## You should have received a copy of the GNU General Public License |
---|
15 | ## along with this program; if not, write to the Free Software |
---|
16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
17 | ## |
---|
18 | """Customized workflow for applicants. |
---|
19 | """ |
---|
20 | import grok |
---|
21 | from hurry.workflow.workflow import Transition, WorkflowState, NullCondition |
---|
22 | from hurry.workflow.interfaces import IWorkflowState, IWorkflowTransitionEvent |
---|
23 | from waeup.kofa.applicants.interfaces import IApplicantBaseData |
---|
24 | from waeup.kofa.interfaces import IObjectHistory, IKofaWorkflowInfo, IKofaUtils |
---|
25 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
26 | from waeup.kofa.workflow import KofaWorkflow, KofaWorkflowInfo |
---|
27 | from waeup.kofa.applicants.workflow import ( ApplicationWorkflowInfo, |
---|
28 | INITIALIZED, STARTED, SUBMITTED, ADMITTED, NOT_ADMITTED, CREATED) |
---|
29 | |
---|
30 | |
---|
31 | application_states_dict = { |
---|
32 | INITIALIZED: _('initialized'), |
---|
33 | STARTED: _('started'), |
---|
34 | SUBMITTED: _('submitted'), |
---|
35 | ADMITTED: _('subscription approved'), |
---|
36 | NOT_ADMITTED: _('subscription not approved'), |
---|
37 | CREATED: _('customer record created'), |
---|
38 | } |
---|
39 | |
---|
40 | APPLICATION_TRANSITIONS = ( |
---|
41 | Transition( |
---|
42 | transition_id = 'init', |
---|
43 | title = _('Initialize subscription'), |
---|
44 | source = None, |
---|
45 | condition = NullCondition, |
---|
46 | msg = _('Subscription initialized'), |
---|
47 | destination = INITIALIZED), |
---|
48 | |
---|
49 | Transition( |
---|
50 | transition_id = 'start', |
---|
51 | title = _('Start subscription'), |
---|
52 | msg = _('Subscription started'), |
---|
53 | source = INITIALIZED, |
---|
54 | destination = STARTED), |
---|
55 | |
---|
56 | Transition( |
---|
57 | transition_id = 'submit', |
---|
58 | title = _('Submit subscription'), |
---|
59 | msg = _('Subscription submitted'), |
---|
60 | source = STARTED, |
---|
61 | destination = SUBMITTED), |
---|
62 | |
---|
63 | Transition( |
---|
64 | transition_id = 'admit', |
---|
65 | title = _('Approve subscription'), |
---|
66 | msg = _('Subscription approved'), |
---|
67 | source = SUBMITTED, |
---|
68 | destination = ADMITTED), |
---|
69 | |
---|
70 | Transition( |
---|
71 | transition_id = 'refuse1', |
---|
72 | title = _('Refuse subscription'), |
---|
73 | msg = _('Subscription refused'), |
---|
74 | source = SUBMITTED, |
---|
75 | destination = NOT_ADMITTED), |
---|
76 | |
---|
77 | Transition( |
---|
78 | transition_id = 'refuse2', |
---|
79 | title = _('Refuse subscription'), |
---|
80 | msg = _('Subscription refused'), |
---|
81 | source = ADMITTED, |
---|
82 | destination = NOT_ADMITTED), |
---|
83 | |
---|
84 | Transition( |
---|
85 | transition_id = 'create', |
---|
86 | title = _('Create student record'), |
---|
87 | msg = _('Customer record created'), |
---|
88 | source = ADMITTED, |
---|
89 | destination = CREATED), |
---|
90 | |
---|
91 | Transition( |
---|
92 | transition_id = 'reset1', |
---|
93 | title = _('Reset subscription to started'), |
---|
94 | msg = _('Subscription reset'), |
---|
95 | source = SUBMITTED, |
---|
96 | destination = STARTED), |
---|
97 | |
---|
98 | Transition( |
---|
99 | transition_id = 'reset2', |
---|
100 | title = _('Reset subscription to started'), |
---|
101 | msg = _('Subscription reset'), |
---|
102 | source = ADMITTED, |
---|
103 | destination = STARTED), |
---|
104 | |
---|
105 | Transition( |
---|
106 | transition_id = 'reset3', |
---|
107 | title = _('Reset subscription to started'), |
---|
108 | msg = _('Subscription reset'), |
---|
109 | source = NOT_ADMITTED, |
---|
110 | destination = STARTED), |
---|
111 | |
---|
112 | Transition( |
---|
113 | transition_id = 'reset4', |
---|
114 | title = _('Reset subscription to started'), |
---|
115 | msg = _('Subscription reset'), |
---|
116 | source = CREATED, |
---|
117 | destination = STARTED), |
---|
118 | |
---|
119 | Transition( |
---|
120 | transition_id = 'reset7', |
---|
121 | title = _('Reset subscription to admitted'), |
---|
122 | msg = _('Subscription reset to admitted'), |
---|
123 | source = CREATED, |
---|
124 | destination = ADMITTED), |
---|
125 | ) |
---|
126 | |
---|
127 | application_workflow = KofaWorkflow(APPLICATION_TRANSITIONS) |
---|
128 | |
---|
129 | class CustomApplicationWorkflowInfo(ApplicationWorkflowInfo): |
---|
130 | """Adapter to adapt Applicant objects to workflow info objects. |
---|
131 | """ |
---|
132 | |
---|
133 | def __init__(self, context): |
---|
134 | self.context = context |
---|
135 | self.wf = application_workflow |
---|