1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
package org.kuali.student.core.workflow.ui.client.widgets; |
16 | |
|
17 | |
import java.util.ArrayList; |
18 | |
import java.util.HashSet; |
19 | |
import java.util.List; |
20 | |
|
21 | |
import org.kuali.student.common.assembly.data.Metadata; |
22 | |
import org.kuali.student.common.assembly.data.MetadataInterrogator; |
23 | |
import org.kuali.student.common.assembly.data.ModelDefinition; |
24 | |
import org.kuali.student.common.assembly.data.QueryPath; |
25 | |
import org.kuali.student.common.dto.DtoConstants.DtoState; |
26 | |
import org.kuali.student.common.dto.RichTextInfo; |
27 | |
import org.kuali.student.common.ui.client.application.Application; |
28 | |
import org.kuali.student.common.ui.client.application.KSAsyncCallback; |
29 | |
import org.kuali.student.common.ui.client.configurable.mvc.FieldDescriptor; |
30 | |
import org.kuali.student.common.ui.client.configurable.mvc.FieldDescriptorReadOnly; |
31 | |
import org.kuali.student.common.ui.client.configurable.mvc.LayoutController; |
32 | |
import org.kuali.student.common.ui.client.configurable.mvc.SectionTitle; |
33 | |
import org.kuali.student.common.ui.client.configurable.mvc.binding.ModelWidgetBinding; |
34 | |
import org.kuali.student.common.ui.client.configurable.mvc.views.VerticalSectionView; |
35 | |
import org.kuali.student.common.ui.client.event.ActionEvent; |
36 | |
import org.kuali.student.common.ui.client.event.SaveActionEvent; |
37 | |
import org.kuali.student.common.ui.client.mvc.ActionCompleteCallback; |
38 | |
import org.kuali.student.common.ui.client.mvc.Callback; |
39 | |
import org.kuali.student.common.ui.client.mvc.DataModel; |
40 | |
import org.kuali.student.common.ui.client.mvc.HasCrossConstraints; |
41 | |
import org.kuali.student.common.ui.client.mvc.ModelRequestCallback; |
42 | |
import org.kuali.student.common.ui.client.util.SearchUtils; |
43 | |
import org.kuali.student.common.ui.client.widgets.KSButtonAbstract.ButtonStyle; |
44 | |
import org.kuali.student.common.ui.client.widgets.KSDropDown; |
45 | |
import org.kuali.student.common.ui.client.widgets.KSLabel; |
46 | |
import org.kuali.student.common.ui.client.widgets.KSLightBox; |
47 | |
import org.kuali.student.common.ui.client.widgets.KSRichEditor; |
48 | |
import org.kuali.student.common.ui.client.widgets.StylishDropDown; |
49 | |
import org.kuali.student.common.ui.client.widgets.buttongroups.AcknowledgeCancelGroup; |
50 | |
import org.kuali.student.common.ui.client.widgets.buttongroups.ButtonEnumerations; |
51 | |
import org.kuali.student.common.ui.client.widgets.buttongroups.ButtonEnumerations.AcknowledgeCancelEnum; |
52 | |
import org.kuali.student.common.ui.client.widgets.buttongroups.ButtonEnumerations.ConfirmCancelEnum; |
53 | |
import org.kuali.student.common.ui.client.widgets.buttongroups.ButtonEnumerations.RejectCancelEnum; |
54 | |
import org.kuali.student.common.ui.client.widgets.buttongroups.ConfirmCancelGroup; |
55 | |
import org.kuali.student.common.ui.client.widgets.buttongroups.RejectCancelGroup; |
56 | |
import org.kuali.student.common.ui.client.widgets.dialog.ConfirmationDialog; |
57 | |
import org.kuali.student.common.ui.client.widgets.field.layout.button.ActionCancelGroup; |
58 | |
import org.kuali.student.common.ui.client.widgets.field.layout.element.AbbrPanel; |
59 | |
import org.kuali.student.common.ui.client.widgets.field.layout.element.MessageKeyInfo; |
60 | |
import org.kuali.student.common.ui.client.widgets.list.KSSelectItemWidgetAbstract; |
61 | |
import org.kuali.student.common.ui.client.widgets.list.SelectionChangeEvent; |
62 | |
import org.kuali.student.common.ui.client.widgets.list.SelectionChangeHandler; |
63 | |
import org.kuali.student.common.ui.client.widgets.list.impl.SimpleListItems; |
64 | |
import org.kuali.student.common.ui.client.widgets.menus.KSMenuItemData; |
65 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotification; |
66 | |
import org.kuali.student.common.ui.client.widgets.notification.KSNotifier; |
67 | |
import org.kuali.student.common.ui.client.widgets.search.KSPicker; |
68 | |
import org.kuali.student.common.validation.dto.ValidationResultInfo; |
69 | |
import org.kuali.student.common.validation.dto.ValidationResultInfo.ErrorLevel; |
70 | |
import org.kuali.student.core.comment.dto.CommentInfo; |
71 | |
import org.kuali.student.core.comments.ui.client.service.CommentRpcService; |
72 | |
import org.kuali.student.core.comments.ui.client.service.CommentRpcServiceAsync; |
73 | |
import org.kuali.student.core.proposal.dto.ProposalInfo; |
74 | |
import org.kuali.student.core.proposal.ui.client.service.ProposalRpcService; |
75 | |
import org.kuali.student.core.proposal.ui.client.service.ProposalRpcServiceAsync; |
76 | |
import org.kuali.student.core.workflow.ui.client.WorkflowConstants; |
77 | |
import org.kuali.student.core.workflow.ui.client.service.WorkflowRpcService; |
78 | |
import org.kuali.student.core.workflow.ui.client.service.WorkflowRpcServiceAsync; |
79 | |
|
80 | |
import com.google.gwt.core.client.GWT; |
81 | |
import com.google.gwt.event.dom.client.ClickEvent; |
82 | |
import com.google.gwt.event.dom.client.ClickHandler; |
83 | |
import com.google.gwt.event.dom.client.KeyUpEvent; |
84 | |
import com.google.gwt.event.dom.client.KeyUpHandler; |
85 | |
import com.google.gwt.user.client.Window; |
86 | |
import com.google.gwt.user.client.rpc.AsyncCallback; |
87 | |
import com.google.gwt.user.client.ui.HorizontalPanel; |
88 | |
import com.google.gwt.user.client.ui.VerticalPanel; |
89 | |
import com.google.gwt.user.client.ui.Widget; |
90 | |
|
91 | 0 | public class WorkflowUtilities{ |
92 | |
|
93 | |
|
94 | |
public static final String PROPOSAL_REF_TYPE_KEY = "referenceType.clu.proposal"; |
95 | |
|
96 | 0 | public static enum DecisionRationaleDetail { |
97 | 0 | APPROVE("kuali.comment.type.workflowDecisionRationale.approve", "Approved"), |
98 | 0 | REJECT("kuali.comment.type.workflowDecisionRationale.reject", "Rejected"), |
99 | 0 | RETURN_TO_PREVIOUS("kuali.comment.type.workflowDecisionRationale.return", "Sent for Revisions"), |
100 | 0 | WITHDRAW("kuali.comment.type.workflowDecisionRationale.withdraw", "Withdrawn"), |
101 | 0 | ACKNOWLEDGE("kuali.comment.type.workflowDecisionRationale.acknowledge", "Acknowledged"), |
102 | 0 | FYI("kuali.comment.type.workflowDecisionRationale.fyi", "FYI"), |
103 | 0 | CANCEL_WORKFLOW("kuali.comment.type.workflowDecisionRationale.cancelWorkflow", "Cancelled"), |
104 | 0 | BLANKET_APPROVE("kuali.comment.type.workflowDecisionRationale.blanketApprove", "Blanket Approved") |
105 | |
; |
106 | |
|
107 | 0 | private String type = ""; |
108 | 0 | private String label = ""; |
109 | |
|
110 | |
|
111 | |
|
112 | 0 | private DecisionRationaleDetail(String type, String label) { |
113 | 0 | this.type = type; |
114 | 0 | this.label = label; |
115 | 0 | } |
116 | |
|
117 | |
public String getType() { |
118 | 0 | return type; |
119 | |
} |
120 | |
|
121 | |
public String getLabel() { |
122 | 0 | return label; |
123 | |
} |
124 | |
|
125 | |
public static DecisionRationaleDetail getByType(String type) { |
126 | 0 | for (DecisionRationaleDetail detail : DecisionRationaleDetail.values()) { |
127 | 0 | if (detail.getType().equals(type)) { |
128 | 0 | return detail; |
129 | |
} |
130 | |
} |
131 | 0 | return null; |
132 | |
} |
133 | |
|
134 | |
} |
135 | |
|
136 | 0 | DataModel dataModel=null; |
137 | |
|
138 | |
|
139 | |
|
140 | 0 | boolean loaded=false; |
141 | |
|
142 | 0 | private boolean workflowWidgetsEnabled = true; |
143 | |
|
144 | |
private KSMenuItemData wfApproveItem; |
145 | |
private KSMenuItemData wfDisApproveItem; |
146 | |
private KSMenuItemData wfAcknowledgeItem; |
147 | |
private KSMenuItemData wfStartWorkflowItem; |
148 | |
private KSMenuItemData wfCancelWorkflowItem; |
149 | |
private KSMenuItemData wfFYIWorkflowItem; |
150 | |
private KSMenuItemData wfWithdrawItem; |
151 | |
private KSMenuItemData wfReturnToPreviousItem; |
152 | |
private KSMenuItemData wfBlanketApproveItem; |
153 | |
|
154 | 0 | private final List<KSMenuItemData> items = new ArrayList<KSMenuItemData>(); |
155 | 0 | private final List<KSMenuItemData> additionalItems = new ArrayList<KSMenuItemData>(); |
156 | |
|
157 | |
|
158 | |
SaveActionEvent approveSaveActionEvent; |
159 | |
SaveActionEvent startWorkflowSaveActionEvent; |
160 | |
|
161 | 0 | WorkflowRpcServiceAsync workflowRpcServiceAsync = GWT.create(WorkflowRpcService.class); |
162 | 0 | private final CommentRpcServiceAsync commentServiceAsync = GWT.create(CommentRpcService.class); |
163 | 0 | private final ProposalRpcServiceAsync proposalServiceAsync = GWT.create(ProposalRpcService.class); |
164 | |
|
165 | |
private String modelName; |
166 | |
private String proposalPath; |
167 | 0 | private String proposalId = ""; |
168 | |
private String workflowId; |
169 | 0 | private String proposalName=""; |
170 | 0 | private String workflowActions=""; |
171 | |
|
172 | 0 | private final List<StylishDropDown> workflowWidgets = new ArrayList<StylishDropDown>(); |
173 | |
private Callback<Boolean> submitCallback; |
174 | 0 | private final ConfirmationDialog dialog = new ConfirmationDialog("Submit Proposal", "Are you sure you want to submit the proposal to workflow?", "Submit"); |
175 | |
private AbbrPanel required; |
176 | |
private KSLightBox submitSuccessDialog; |
177 | |
private VerticalPanel dialogPanel; |
178 | |
private VerticalSectionView approveDialogView; |
179 | |
private VerticalSectionView blanketApproveDialogView; |
180 | 0 | private HashSet<String> ignoredApproveDialogFields = new HashSet<String>(); |
181 | |
|
182 | 0 | private final KSLabel workflowStatusLabel = new KSLabel(""); |
183 | |
|
184 | 0 | private final KSLabel proposalStatusLabel = new KSLabel(""); |
185 | |
|
186 | |
private final LayoutController parentController; |
187 | |
|
188 | 0 | private String dropDownLabel = "Workflow Actions"; |
189 | |
|
190 | 0 | ActionCancelGroup approveCancelButtons = new ActionCancelGroup(ButtonEnumerations.ApproveCancelEnum.APPROVE, ButtonEnumerations.ApproveCancelEnum.CANCEL); |
191 | |
|
192 | 0 | public WorkflowUtilities(LayoutController parentController, String proposalPath) { |
193 | 0 | this.parentController = parentController; |
194 | 0 | this.proposalPath = proposalPath; |
195 | 0 | setupWFButtons(); |
196 | 0 | setupDialog(); |
197 | 0 | } |
198 | |
|
199 | 0 | public WorkflowUtilities(LayoutController parentController, String proposalPath, String dropDownLabel) { |
200 | 0 | this.dropDownLabel = dropDownLabel; |
201 | 0 | this.parentController = parentController; |
202 | 0 | this.proposalPath = proposalPath; |
203 | 0 | setupWFButtons(); |
204 | 0 | setupDialog(); |
205 | 0 | } |
206 | |
|
207 | 0 | public WorkflowUtilities(LayoutController parentController, String proposalPath, String dropDownLabel, Enum<?> viewEnum, String name, String modelId) { |
208 | 0 | this.dropDownLabel = dropDownLabel; |
209 | 0 | this.parentController = parentController; |
210 | 0 | this.proposalPath = proposalPath; |
211 | |
|
212 | 0 | approveDialogView = new VerticalSectionView(viewEnum, name, modelId); |
213 | 0 | approveDialogView.setController(parentController); |
214 | |
|
215 | 0 | blanketApproveDialogView = new VerticalSectionView(viewEnum, name, modelId); |
216 | 0 | blanketApproveDialogView.setController(parentController); |
217 | |
|
218 | 0 | setupWFButtons(); |
219 | 0 | setupDialog(); |
220 | 0 | } |
221 | |
|
222 | |
public void addApproveDialogMsg(String messageText) { |
223 | 0 | KSLabel textArea = new KSLabel(); |
224 | 0 | textArea.setText(messageText); |
225 | |
|
226 | 0 | approveDialogView.addWidget(textArea); |
227 | 0 | } |
228 | |
|
229 | |
public FieldDescriptor addApproveDialogField(String parentPath, String fieldKey, MessageKeyInfo messageKey, ModelDefinition modelDefinition, boolean forceAdd){ |
230 | 0 | return addApproveDialogField(parentPath, fieldKey, messageKey, modelDefinition, forceAdd, false, null); |
231 | |
|
232 | |
} |
233 | |
|
234 | |
public FieldDescriptor addApproveDialogField(String parentPath, String fieldKey, MessageKeyInfo messageKey, ModelDefinition modelDefinition, boolean forceAdd, boolean readOnly){ |
235 | 0 | return addApproveDialogField(parentPath, fieldKey, messageKey, modelDefinition, forceAdd, readOnly, null); |
236 | |
|
237 | |
} |
238 | |
|
239 | |
public FieldDescriptor addApproveDialogField(String parentPath, String fieldKey, MessageKeyInfo messageKey, ModelDefinition modelDefinition, boolean forceAdd, boolean readOnly, Widget widget){ |
240 | |
|
241 | 0 | QueryPath path = QueryPath.concat(parentPath, fieldKey); |
242 | 0 | Metadata meta = modelDefinition.getMetadata(path); |
243 | |
|
244 | |
FieldDescriptor blanketApproveFd; |
245 | |
FieldDescriptor approveFd; |
246 | |
|
247 | |
|
248 | 0 | if(blanketApproveDialogView != null){ |
249 | 0 | if(!readOnly){ |
250 | 0 | blanketApproveFd = new FieldDescriptor(path.toString(), messageKey, meta); |
251 | |
} else { |
252 | 0 | blanketApproveFd = new FieldDescriptorReadOnly(path.toString(), messageKey, meta); |
253 | |
} |
254 | 0 | blanketApproveFd.setHasHadFocus(true); |
255 | 0 | blanketApproveDialogView.addField(blanketApproveFd); |
256 | |
} |
257 | |
|
258 | |
|
259 | 0 | if(approveDialogView != null){ |
260 | 0 | if(forceAdd || |
261 | |
(meta.isCanEdit() && |
262 | |
(MetadataInterrogator.isRequiredForNextState(meta) || |
263 | |
(meta.getConstraints() != null && meta.getConstraints().get(0)!=null && meta.getConstraints().get(0).getMinOccurs()!= null && meta.getConstraints().get(0).getMinOccurs()>0)))){ |
264 | 0 | if(!readOnly){ |
265 | 0 | approveFd = new FieldDescriptor(path.toString(), messageKey, meta); |
266 | |
} else { |
267 | 0 | approveFd = new FieldDescriptorReadOnly(path.toString(), messageKey, meta); |
268 | |
} |
269 | 0 | approveFd.setHasHadFocus(true); |
270 | 0 | approveDialogView.addField(approveFd); |
271 | 0 | return approveFd; |
272 | |
} |
273 | |
} |
274 | 0 | return null; |
275 | |
} |
276 | |
|
277 | |
public void updateApproveFields(){ |
278 | 0 | parentController.requestModel(new ModelRequestCallback<DataModel>(){ |
279 | |
public void onModelReady(final DataModel model) { |
280 | 0 | if(approveDialogView!=null){ |
281 | 0 | approveDialogView.updateView(model); |
282 | 0 | for (final FieldDescriptor fd:approveDialogView.getFields()){ |
283 | 0 | updateCrossField(fd,model); |
284 | |
} |
285 | |
} |
286 | 0 | if(blanketApproveDialogView!=null){ |
287 | 0 | blanketApproveDialogView.updateView(model); |
288 | 0 | for (final FieldDescriptor fd:blanketApproveDialogView.getFields()){ |
289 | 0 | updateCrossField(fd,model); |
290 | |
} |
291 | |
} |
292 | 0 | } |
293 | |
public void onRequestFail(Throwable cause) { |
294 | 0 | } |
295 | |
|
296 | |
}); |
297 | 0 | } |
298 | |
|
299 | |
|
300 | |
|
301 | |
|
302 | |
|
303 | |
|
304 | |
|
305 | |
|
306 | |
|
307 | |
|
308 | |
|
309 | |
public static void updateCrossField(final FieldDescriptor fd, final DataModel dataModel){ |
310 | |
|
311 | 0 | if (fd.getFieldWidget() instanceof KSPicker && ((KSPicker) fd.getFieldWidget()).getInputWidget() instanceof KSSelectItemWidgetAbstract) { |
312 | 0 | if (fd.getFieldWidget() instanceof HasCrossConstraints) { |
313 | 0 | HashSet<String> constraints = ((HasCrossConstraints) fd.getFieldWidget()).getCrossConstraints(); |
314 | 0 | if (constraints != null) { |
315 | 0 | for (String path : constraints) { |
316 | 0 | final String finalPath = SearchUtils.resolvePath(path); |
317 | 0 | final FieldDescriptor crossField = Application.getApplicationContext().getPathToFieldMapping(null, finalPath); |
318 | 0 | if (crossField != null) { |
319 | 0 | final ModelWidgetBinding mwb = crossField.getModelWidgetBinding(); |
320 | 0 | if (mwb != null) { |
321 | |
|
322 | |
|
323 | 0 | if (crossField.getFieldWidget() instanceof KSPicker && ((KSPicker) crossField.getFieldWidget()).getInputWidget() instanceof KSSelectItemWidgetAbstract) { |
324 | 0 | ((KSSelectItemWidgetAbstract) ((KSPicker) crossField.getFieldWidget()).getInputWidget()).addWidgetReadyCallback(new Callback<Widget>() { |
325 | |
public void exec(Widget result) { |
326 | 0 | mwb.setWidgetValue(crossField.getFieldWidget(), dataModel, finalPath); |
327 | 0 | ((HasCrossConstraints) fd.getFieldWidget()).reprocessWithUpdatedConstraints(); |
328 | 0 | } |
329 | |
}); |
330 | |
} else { |
331 | 0 | mwb.setWidgetValue(crossField.getFieldWidget(), dataModel, finalPath); |
332 | |
} |
333 | |
} |
334 | |
} |
335 | 0 | } |
336 | |
} |
337 | 0 | ((HasCrossConstraints) fd.getFieldWidget()).reprocessWithUpdatedConstraints(); |
338 | |
} |
339 | |
} |
340 | 0 | } |
341 | |
public void requestAndSetupModel(final Callback<Boolean> onModelReadyCallback) { |
342 | |
|
343 | 0 | if(null==dataModel){ |
344 | |
|
345 | 0 | parentController.requestModel(modelName, new ModelRequestCallback<DataModel>() { |
346 | |
|
347 | |
@Override |
348 | |
public void onRequestFail(Throwable cause) { |
349 | 0 | Window.alert("Model Request Failed. "+cause.getMessage()); |
350 | 0 | } |
351 | |
|
352 | |
@Override |
353 | |
public void onModelReady(DataModel model) { |
354 | |
|
355 | 0 | dataModel = model; |
356 | 0 | updateWorkflow(dataModel); |
357 | 0 | onModelReadyCallback.exec(true); |
358 | 0 | } |
359 | |
}); |
360 | |
}else{ |
361 | |
|
362 | |
|
363 | 0 | updateWorkflow(dataModel); |
364 | 0 | onModelReadyCallback.exec(true); |
365 | |
} |
366 | 0 | } |
367 | |
|
368 | |
private void setupWFButtons() { |
369 | 0 | wfApproveItem = getApproveItem(); |
370 | 0 | wfDisApproveItem = getDisApproveItem(); |
371 | 0 | wfAcknowledgeItem = getAcknowledgeItem(); |
372 | 0 | wfStartWorkflowItem = getStartItem(); |
373 | 0 | wfCancelWorkflowItem = getCancelWorkflowItem(); |
374 | 0 | wfFYIWorkflowItem = getFYIWorkflowItem(); |
375 | 0 | wfWithdrawItem = getWithdrawItem(); |
376 | 0 | wfReturnToPreviousItem = getReturnToPreviousItem(); |
377 | 0 | wfBlanketApproveItem = getBlanketApproveItem(); |
378 | 0 | } |
379 | |
|
380 | |
private void setupSubmitSuccessDialog(){ |
381 | 0 | if(submitSuccessDialog==null){ |
382 | 0 | submitSuccessDialog= new KSLightBox(); |
383 | 0 | submitSuccessDialog.setSize(580, 480); |
384 | 0 | dialogPanel = new VerticalPanel(); |
385 | 0 | submitSuccessDialog.setWidget(dialogPanel); |
386 | |
|
387 | |
} |
388 | |
|
389 | 0 | } |
390 | |
|
391 | |
private void setupDialog(){ |
392 | |
|
393 | 0 | dialog.getConfirmButton().addClickHandler(new ClickHandler(){ |
394 | |
|
395 | |
@Override |
396 | |
public void onClick(ClickEvent event) { |
397 | 0 | dialog.getConfirmButton().setEnabled(false); |
398 | 0 | workflowRpcServiceAsync.submitDocumentWithId(workflowId, new KSAsyncCallback<Boolean>(){ |
399 | |
@Override |
400 | |
public void handleFailure(Throwable caught) { |
401 | 0 | Window.alert("Error starting Proposal workflow"); |
402 | 0 | dialog.getConfirmButton().setEnabled(true); |
403 | 0 | } |
404 | |
public void onSuccess(Boolean result) { |
405 | 0 | if (result){ |
406 | 0 | updateWorkflow(dataModel); |
407 | 0 | dialog.hide(); |
408 | 0 | dialog.getConfirmButton().setEnabled(true); |
409 | 0 | if(submitCallback != null){ |
410 | 0 | submitCallback.exec(true); |
411 | |
} |
412 | |
|
413 | 0 | KSNotifier.add(new KSNotification("Proposal has been routed to workflow", false)); |
414 | |
} else { |
415 | 0 | Window.alert("Error starting Proposal workflow"); |
416 | |
} |
417 | 0 | } |
418 | |
}); |
419 | |
|
420 | 0 | } |
421 | |
}); |
422 | 0 | } |
423 | |
|
424 | |
public Widget getWorkflowActionsWidget(){ |
425 | |
|
426 | 0 | StylishDropDown workflowActionsDropDown = GWT.create(StylishDropDown.class); |
427 | 0 | workflowActionsDropDown.initialise(dropDownLabel ); |
428 | 0 | workflowActionsDropDown.makeAButtonWhenOneItem(true); |
429 | 0 | workflowActionsDropDown.addStyleName("KS-Workflow-DropDown"); |
430 | 0 | workflowWidgets.add(workflowActionsDropDown); |
431 | 0 | workflowActionsDropDown.setVisible(false); |
432 | 0 | updateWorkflow(dataModel); |
433 | |
|
434 | |
|
435 | |
|
436 | |
|
437 | 0 | return workflowActionsDropDown; |
438 | |
} |
439 | |
|
440 | |
public void enableWorkflowActionsWidgets(boolean enable) { |
441 | 0 | workflowWidgetsEnabled = enable; |
442 | 0 | updateWorkflowActionsWidget(); |
443 | 0 | } |
444 | |
|
445 | |
|
446 | |
public void doValidationCheck(Callback<List<ValidationResultInfo>> callback){ |
447 | 0 | dataModel.validateNextState(callback); |
448 | 0 | } |
449 | |
|
450 | |
public KSLabel getWorkflowStatusLabel(){ |
451 | 0 | return workflowStatusLabel; |
452 | |
} |
453 | |
|
454 | |
public KSLabel getProposalStatusLabel() { |
455 | 0 | return proposalStatusLabel; |
456 | |
} |
457 | |
|
458 | |
private void updateWorkflowIdFromModel(final DataModel model) { |
459 | 0 | if(model!=null){ |
460 | 0 | String modelProposalId = model.get(QueryPath.parse(proposalPath + "/id")); |
461 | |
|
462 | |
|
463 | 0 | if (modelProposalId != null && !modelProposalId.isEmpty() && !modelProposalId.equals(proposalId)){ |
464 | 0 | proposalId = modelProposalId; |
465 | 0 | workflowId = model.get(QueryPath.parse(proposalPath + "/workflowId")); |
466 | 0 | proposalName = model.get(QueryPath.parse(proposalPath + "/name")); |
467 | |
} |
468 | |
} |
469 | 0 | } |
470 | |
|
471 | |
private void updateWorkflow(DataModel model){ |
472 | 0 | updateWorkflowIdFromModel(model); |
473 | |
|
474 | 0 | if (workflowId != null && !workflowId.isEmpty()){ |
475 | |
|
476 | 0 | workflowRpcServiceAsync.getActionsRequested(workflowId, new KSAsyncCallback<String>(){ |
477 | |
|
478 | |
public void onSuccess(String result) { |
479 | 0 | workflowActions = result; |
480 | 0 | updateWorkflowActionsWidget(); |
481 | 0 | } |
482 | |
}); |
483 | |
|
484 | 0 | workflowRpcServiceAsync.getDocumentStatus(workflowId, new KSAsyncCallback<String>(){ |
485 | |
@Override |
486 | |
public void handleFailure(Throwable caught) { |
487 | 0 | setWorkflowStatus("Unknown"); |
488 | 0 | } |
489 | |
|
490 | |
@Override |
491 | |
public void onSuccess(String result) { |
492 | 0 | setWorkflowStatus(result); |
493 | 0 | } |
494 | |
}); |
495 | 0 | proposalServiceAsync.getProposalByWorkflowId(workflowId, new KSAsyncCallback<ProposalInfo>() { |
496 | |
@Override |
497 | |
public void handleFailure(Throwable caught) { |
498 | 0 | setProposalStatus("Unknown"); |
499 | 0 | } |
500 | |
|
501 | |
@Override |
502 | |
public void onSuccess(ProposalInfo result) { |
503 | 0 | setProposalStatus(result.getState()); |
504 | 0 | } |
505 | |
}); |
506 | |
} else { |
507 | 0 | setWorkflowStatus("Draft"); |
508 | 0 | setProposalStatus("Draft"); |
509 | |
} |
510 | 0 | } |
511 | |
|
512 | |
private void updateWorkflowActionsWidget(){ |
513 | 0 | items.clear(); |
514 | |
|
515 | |
|
516 | |
|
517 | 0 | if (workflowWidgetsEnabled){ |
518 | |
|
519 | 0 | String workflowNode = null; |
520 | 0 | if(dataModel!=null){ |
521 | 0 | workflowNode = dataModel.get("proposal/workflowNode"); |
522 | |
} |
523 | |
|
524 | 0 | if(workflowActions.contains("S")){ |
525 | 0 | items.add(wfStartWorkflowItem); |
526 | |
} |
527 | 0 | if(workflowActions.contains("C")){ |
528 | 0 | items.add(wfCancelWorkflowItem); |
529 | |
} |
530 | 0 | if(workflowActions.contains("A")){ |
531 | 0 | items.add(wfApproveItem); |
532 | |
|
533 | 0 | if("PreRoute".equals(workflowNode)){ |
534 | 0 | wfApproveItem.setLabel("Resubmit Proposal"); |
535 | |
}else{ |
536 | 0 | wfApproveItem.setLabel("Approve Proposal"); |
537 | |
|
538 | 0 | items.add(wfDisApproveItem); |
539 | |
} |
540 | |
} |
541 | 0 | if(workflowActions.contains("K")){ |
542 | 0 | items.add(wfAcknowledgeItem); |
543 | |
} |
544 | 0 | if(workflowActions.contains("F")){ |
545 | 0 | items.add(wfFYIWorkflowItem); |
546 | |
} |
547 | 0 | if(workflowActions.contains("R")){ |
548 | |
|
549 | |
|
550 | 0 | if(!"PreRoute".equals(workflowNode)){ |
551 | 0 | items.add(wfReturnToPreviousItem); |
552 | |
} |
553 | |
} |
554 | 0 | if(workflowActions.contains("B")){ |
555 | 0 | items.add(wfBlanketApproveItem); |
556 | |
} |
557 | 0 | if(workflowActions.contains("W")){ |
558 | 0 | items.add(wfWithdrawItem); |
559 | |
} |
560 | 0 | } else { |
561 | 0 | if(workflowActions.contains("C")){ |
562 | 0 | items.add(wfCancelWorkflowItem); |
563 | |
} |
564 | 0 | if(workflowActions.contains("K")){ |
565 | 0 | items.add(wfAcknowledgeItem); |
566 | |
} |
567 | 0 | if(workflowActions.contains("F")){ |
568 | 0 | items.add(wfFYIWorkflowItem); |
569 | |
} |
570 | 0 | if(workflowActions.contains("W")){ |
571 | 0 | items.add(wfWithdrawItem); |
572 | |
} |
573 | 0 | if(workflowActions.contains("A")){ |
574 | 0 | items.add(wfDisApproveItem); |
575 | |
} |
576 | |
} |
577 | |
|
578 | |
|
579 | 0 | items.addAll(additionalItems); |
580 | |
|
581 | 0 | for(StylishDropDown widget: workflowWidgets){ |
582 | |
|
583 | 0 | widget.setItems(items); |
584 | 0 | widget.setEnabled(true); |
585 | 0 | if(items.isEmpty()){ |
586 | 0 | widget.setVisible(false); |
587 | |
} |
588 | |
else{ |
589 | 0 | widget.setVisible(true); |
590 | |
} |
591 | |
} |
592 | 0 | } |
593 | |
|
594 | |
private KSMenuItemData getFYIWorkflowItem() { |
595 | |
KSMenuItemData wfFYIWorkflowItem; |
596 | 0 | final KSRichEditor rationaleEditor = new KSRichEditor(); |
597 | 0 | wfFYIWorkflowItem = new KSMenuItemData("FYI Proposal", new ClickHandler(){ |
598 | |
public void onClick(ClickEvent event) { |
599 | 0 | addRationale(rationaleEditor,DecisionRationaleDetail.FYI.getType()); |
600 | 0 | workflowRpcServiceAsync.fyiDocumentWithId(workflowId, new KSAsyncCallback<Boolean>(){ |
601 | |
@Override |
602 | |
public void handleFailure(Throwable caught) { |
603 | 0 | Window.alert("Error FYIing Proposal"); |
604 | 0 | } |
605 | |
public void onSuccess( |
606 | |
Boolean result) { |
607 | 0 | if(result){ |
608 | 0 | updateWorkflow(dataModel); |
609 | 0 | if(submitCallback != null){ |
610 | 0 | submitCallback.exec(true); |
611 | |
} |
612 | |
|
613 | 0 | KSNotifier.add(new KSNotification("Proposal was FYIed", false)); |
614 | |
}else{ |
615 | 0 | Window.alert("Error FYIing Proposal"); |
616 | |
} |
617 | 0 | } |
618 | |
|
619 | |
}); |
620 | 0 | } |
621 | |
}); |
622 | 0 | return wfFYIWorkflowItem; |
623 | |
} |
624 | |
|
625 | |
private KSMenuItemData getAcknowledgeItem() { |
626 | |
KSMenuItemData wfAcknowledgeItem; |
627 | 0 | wfAcknowledgeItem = new KSMenuItemData("Acknowledge Proposal", new ClickHandler(){ |
628 | |
public void onClick(ClickEvent event) { |
629 | 0 | setupSubmitSuccessDialog(); |
630 | 0 | final KSRichEditor rationaleEditor = new KSRichEditor(); |
631 | 0 | final AcknowledgeCancelGroup approvalButton = new AcknowledgeCancelGroup(new Callback<AcknowledgeCancelEnum>(){ |
632 | |
|
633 | |
@Override |
634 | |
public void exec(AcknowledgeCancelEnum result) { |
635 | 0 | if(!result.name().equals("CANCEL")){ |
636 | 0 | addRationale(rationaleEditor,DecisionRationaleDetail.ACKNOWLEDGE.getType()); |
637 | 0 | workflowRpcServiceAsync.acknowledgeDocumentWithId(workflowId, new KSAsyncCallback<Boolean>(){ |
638 | |
@Override |
639 | |
public void handleFailure(Throwable caught) { |
640 | 0 | submitSuccessDialog.hide(); |
641 | 0 | Window.alert("Error acknowledging Proposal"); |
642 | 0 | } |
643 | |
public void onSuccess(Boolean result) { |
644 | 0 | submitSuccessDialog.hide(); |
645 | 0 | if(result){ |
646 | 0 | updateWorkflow(dataModel); |
647 | 0 | if(submitCallback != null){ |
648 | 0 | submitCallback.exec(true); |
649 | |
} |
650 | |
|
651 | 0 | KSNotifier.add(new KSNotification("Proposal was acknowledged", false)); |
652 | |
}else{ |
653 | 0 | Window.alert("Error acknowledging Proposal"); |
654 | |
} |
655 | 0 | } |
656 | |
}); |
657 | |
} |
658 | |
else{ |
659 | 0 | submitSuccessDialog.hide(); |
660 | |
} |
661 | 0 | } |
662 | |
}); |
663 | |
|
664 | 0 | approvalButton.getButton(ButtonEnumerations.AcknowledgeCancelEnum.ACKNOWLEDGE).setEnabled(false); |
665 | |
|
666 | 0 | rationaleEditor.getRichTextArea().addKeyUpHandler(new KeyUpHandler(){ |
667 | |
|
668 | |
@Override |
669 | |
public void onKeyUp(KeyUpEvent event) { |
670 | 0 | if(!rationaleEditor.getText().trim().isEmpty()){ |
671 | 0 | approvalButton.getButton(ButtonEnumerations.AcknowledgeCancelEnum.ACKNOWLEDGE).setEnabled(true); |
672 | |
} else { |
673 | 0 | approvalButton.getButton(ButtonEnumerations.AcknowledgeCancelEnum.ACKNOWLEDGE).setEnabled(false); |
674 | |
} |
675 | 0 | } |
676 | |
|
677 | |
}); |
678 | |
|
679 | 0 | SectionTitle headerTitle = SectionTitle.generateH3Title("Acknowledge Proposal"); |
680 | 0 | SectionTitle dialogLabel = SectionTitle.generateH4Title("You are acknowledging the " + proposalName +" proposal"); |
681 | 0 | SectionTitle fieldLabel = SectionTitle.generateH4Title("Decision Rationale"); |
682 | 0 | rationaleEditor.addStyleName("KS-Comment-Create-Editor"); |
683 | 0 | dialogPanel.clear(); |
684 | 0 | submitSuccessDialog.clearButtons(); |
685 | 0 | submitSuccessDialog.setNonCaptionHeader(headerTitle); |
686 | 0 | dialogPanel.add(dialogLabel); |
687 | 0 | dialogPanel.add(fieldLabel); |
688 | 0 | dialogPanel.add(rationaleEditor); |
689 | 0 | submitSuccessDialog.addButtonGroup(approvalButton); |
690 | 0 | submitSuccessDialog.show(); |
691 | 0 | } |
692 | |
}); |
693 | 0 | return wfAcknowledgeItem; |
694 | |
} |
695 | |
|
696 | |
private KSMenuItemData getDisApproveItem() { |
697 | |
KSMenuItemData wfDisApproveItem; |
698 | 0 | wfDisApproveItem = new KSMenuItemData("Reject Proposal", new ClickHandler(){ |
699 | |
public void onClick(ClickEvent event) { |
700 | 0 | setupSubmitSuccessDialog(); |
701 | 0 | final KSRichEditor rationaleEditor = new KSRichEditor(); |
702 | |
|
703 | 0 | final RejectCancelGroup disapprovalButton = new RejectCancelGroup(new Callback<RejectCancelEnum>(){ |
704 | |
|
705 | |
@Override |
706 | |
public void exec(RejectCancelEnum result) { |
707 | 0 | if(!result.name().equals("CANCEL")){ |
708 | 0 | if(rationaleEditor.getText().trim().equals("")){ |
709 | 0 | required.setText("Please enter the decision rationale"); |
710 | |
} |
711 | |
else{ |
712 | 0 | addRationale(rationaleEditor,DecisionRationaleDetail.REJECT.getType()); |
713 | 0 | workflowRpcServiceAsync.disapproveDocumentWithId(workflowId, new KSAsyncCallback<Boolean>(){ |
714 | |
@Override |
715 | |
public void handleFailure(Throwable caught) { |
716 | 0 | submitSuccessDialog.hide(); |
717 | 0 | Window.alert("Error rejecting Proposal"); |
718 | 0 | } |
719 | |
public void onSuccess(Boolean result) { |
720 | 0 | submitSuccessDialog.hide(); |
721 | 0 | if(submitCallback != null){ |
722 | 0 | submitCallback.exec(result); |
723 | |
} |
724 | 0 | if(result){ |
725 | 0 | KSNotifier.add(new KSNotification("Proposal was rejected", false)); |
726 | 0 | updateWorkflow(dataModel); |
727 | |
}else{ |
728 | 0 | Window.alert("Error rejecting Proposal"); |
729 | |
} |
730 | 0 | } |
731 | |
|
732 | |
}); |
733 | |
} |
734 | |
|
735 | |
} |
736 | |
else{ |
737 | 0 | submitSuccessDialog.hide(); |
738 | |
} |
739 | 0 | } |
740 | |
}); |
741 | |
|
742 | 0 | disapprovalButton.getButton(ButtonEnumerations.RejectCancelEnum.REJECT).setEnabled(false); |
743 | |
|
744 | 0 | rationaleEditor.getRichTextArea().addKeyUpHandler(new KeyUpHandler(){ |
745 | |
|
746 | |
@Override |
747 | |
public void onKeyUp(KeyUpEvent event) { |
748 | 0 | if(!rationaleEditor.getText().trim().isEmpty()){ |
749 | 0 | disapprovalButton.getButton(ButtonEnumerations.RejectCancelEnum.REJECT).setEnabled(true); |
750 | |
} else { |
751 | 0 | disapprovalButton.getButton(ButtonEnumerations.RejectCancelEnum.REJECT).setEnabled(false); |
752 | |
} |
753 | 0 | } |
754 | |
|
755 | |
}); |
756 | |
|
757 | 0 | SectionTitle headerTitle = SectionTitle.generateH3Title("Reject Proposal"); |
758 | 0 | SectionTitle dialogLabel = SectionTitle.generateH4Title("You are rejecting the " + proposalName +" proposal"); |
759 | 0 | SectionTitle fieldLabel = SectionTitle.generateH4Title("Decision Rationale"); |
760 | 0 | required = new AbbrPanel("Required", "ks-form-module-elements-required", " * "); |
761 | 0 | required.setVisible(true); |
762 | |
|
763 | |
|
764 | |
|
765 | 0 | rationaleEditor.addStyleName("KS-Comment-Create-Editor"); |
766 | 0 | dialogPanel.clear(); |
767 | 0 | submitSuccessDialog.clearButtons(); |
768 | 0 | submitSuccessDialog.setNonCaptionHeader(headerTitle); |
769 | 0 | dialogPanel.add(dialogLabel); |
770 | 0 | dialogPanel.add(fieldLabel); |
771 | 0 | dialogPanel.add(required); |
772 | 0 | dialogPanel.add(rationaleEditor); |
773 | 0 | submitSuccessDialog.addButtonGroup(disapprovalButton); |
774 | 0 | submitSuccessDialog.setWidget(dialogPanel); |
775 | 0 | submitSuccessDialog.show(); |
776 | 0 | } |
777 | |
}); |
778 | 0 | return wfDisApproveItem; |
779 | |
} |
780 | |
|
781 | |
private KSMenuItemData getApproveItem() { |
782 | |
KSMenuItemData wfApproveItem; |
783 | |
|
784 | 0 | wfApproveItem= new KSMenuItemData("Approve Proposal", new ClickHandler(){ |
785 | |
public void onClick(ClickEvent event) { |
786 | 0 | setupSubmitSuccessDialog(); |
787 | 0 | final KSRichEditor rationaleEditor = new KSRichEditor(); |
788 | |
|
789 | |
|
790 | |
|
791 | 0 | approveCancelButtons.getButton(ButtonEnumerations.ApproveCancelEnum.APPROVE).setEnabled(false); |
792 | |
|
793 | 0 | approveCancelButtons.addCallback(new Callback<ButtonEnumerations.ButtonEnum>() { |
794 | |
@Override |
795 | |
public void exec(ButtonEnumerations.ButtonEnum result) { |
796 | 0 | if (result != ButtonEnumerations.ApproveCancelEnum.CANCEL) { |
797 | 0 | if (rationaleEditor.getText().trim().equals("")) { |
798 | 0 | required.setText("Please enter the decision rationale"); |
799 | |
} else { |
800 | 0 | if (approveDialogView != null) { |
801 | |
|
802 | 0 | parentController.requestModel(new ModelRequestCallback<DataModel>() { |
803 | |
|
804 | |
@Override |
805 | |
public void onModelReady(DataModel model) { |
806 | 0 | approveDialogView.updateModel(); |
807 | 0 | model.validateNextState(new Callback<List<ValidationResultInfo>>() { |
808 | |
@Override |
809 | |
public void exec(List<ValidationResultInfo> results) { |
810 | |
|
811 | 0 | if (ErrorLevel.OK.equals(approveDialogView.processValidationResults(results))) { |
812 | |
|
813 | 0 | SaveActionEvent saveActionEvent = new SaveActionEvent(); |
814 | 0 | saveActionEvent.setActionCompleteCallback(new ActionCompleteCallback() { |
815 | |
public void onActionComplete(ActionEvent action) { |
816 | 0 | doWorkflowApprove(); |
817 | 0 | } |
818 | |
}); |
819 | 0 | parentController.fireApplicationEvent(saveActionEvent); |
820 | 0 | } else { |
821 | 0 | KSNotifier.add(new KSNotification("Unable to save, please check fields for errors.", false, true, 5000)); |
822 | |
} |
823 | 0 | } |
824 | |
}); |
825 | 0 | } |
826 | |
|
827 | |
@Override |
828 | |
public void onRequestFail(Throwable cause) { |
829 | 0 | KSNotifier.add(new KSNotification("Error requesting data model.", false, true, 5000)); |
830 | 0 | } |
831 | |
|
832 | |
}); |
833 | |
|
834 | |
} else { |
835 | 0 | doWorkflowApprove(); |
836 | |
} |
837 | |
|
838 | |
} |
839 | |
|
840 | |
} else { |
841 | 0 | submitSuccessDialog.hide(); |
842 | |
} |
843 | 0 | } |
844 | |
|
845 | |
private void doWorkflowApprove() { |
846 | 0 | addRationale(rationaleEditor, DecisionRationaleDetail.APPROVE.getType()); |
847 | |
|
848 | 0 | workflowRpcServiceAsync.approveDocumentWithId(workflowId, new KSAsyncCallback<Boolean>() { |
849 | |
@Override |
850 | |
public void handleFailure(Throwable caught) { |
851 | 0 | submitSuccessDialog.hide(); |
852 | 0 | Window.alert("Error approving Proposal"); |
853 | 0 | } |
854 | |
|
855 | |
public void onSuccess(Boolean result) { |
856 | 0 | submitSuccessDialog.hide(); |
857 | 0 | if (result) { |
858 | 0 | updateWorkflow(dataModel); |
859 | 0 | if (submitCallback != null) { |
860 | 0 | submitCallback.exec(result); |
861 | |
} |
862 | |
|
863 | 0 | KSNotifier.add(new KSNotification("Proposal was approved", false)); |
864 | |
} else { |
865 | 0 | Window.alert("Error approving Proposal"); |
866 | |
} |
867 | 0 | } |
868 | |
}); |
869 | |
|
870 | 0 | } |
871 | |
}); |
872 | |
|
873 | 0 | if(approveDialogView.getField("proposal/prevEndTerm") != null){ |
874 | |
|
875 | 0 | approveCancelButtons.getButton(ButtonEnumerations.ApproveCancelEnum.APPROVE).setEnabled(false); |
876 | 0 | rationaleEditor.getRichTextArea().addKeyUpHandler(new KeyUpHandler(){ |
877 | |
|
878 | |
@Override |
879 | |
public void onKeyUp(KeyUpEvent event) { |
880 | 0 | if(!rationaleEditor.getText().trim().isEmpty() && !(((KSPicker) (approveDialogView.getField("proposal/prevEndTerm").getFieldWidget())).getDisplayValue() == "") ){ |
881 | 0 | approveCancelButtons.getButton(ButtonEnumerations.ApproveCancelEnum.APPROVE).setEnabled(true); |
882 | |
} else { |
883 | 0 | approveCancelButtons.getButton(ButtonEnumerations.ApproveCancelEnum.APPROVE).setEnabled(false); |
884 | |
} |
885 | 0 | } |
886 | |
|
887 | |
}); |
888 | |
|
889 | 0 | if (approveDialogView.getField("proposal/prevEndTerm").getFieldWidget() instanceof KSPicker) { |
890 | 0 | ((KSPicker) (approveDialogView.getField("proposal/prevEndTerm").getFieldWidget())).addSelectionChangeHandler(new SelectionChangeHandler(){ |
891 | |
|
892 | |
@Override |
893 | |
public void onSelectionChange(SelectionChangeEvent event) { |
894 | 0 | if(!rationaleEditor.getText().trim().isEmpty() && !(((KSPicker) (approveDialogView.getField("proposal/prevEndTerm").getFieldWidget())).getDisplayValue() == "") ){ |
895 | 0 | approveCancelButtons.getButton(ButtonEnumerations.ApproveCancelEnum.APPROVE).setEnabled(true); |
896 | |
} else { |
897 | 0 | approveCancelButtons.getButton(ButtonEnumerations.ApproveCancelEnum.APPROVE).setEnabled(false); |
898 | |
} |
899 | 0 | } |
900 | |
|
901 | |
}); |
902 | |
} |
903 | |
} else { |
904 | |
|
905 | 0 | rationaleEditor.getRichTextArea().addKeyUpHandler(new KeyUpHandler(){ |
906 | |
|
907 | |
@Override |
908 | |
public void onKeyUp(KeyUpEvent event) { |
909 | 0 | if(!rationaleEditor.getText().trim().isEmpty()){ |
910 | 0 | approveCancelButtons.getButton(ButtonEnumerations.ApproveCancelEnum.APPROVE).setEnabled(true); |
911 | |
} else { |
912 | 0 | approveCancelButtons.getButton(ButtonEnumerations.ApproveCancelEnum.APPROVE).setEnabled(false); |
913 | |
} |
914 | 0 | } |
915 | |
|
916 | |
}); |
917 | |
|
918 | |
} |
919 | |
|
920 | 0 | SectionTitle headerTitle = SectionTitle.generateH3Title("Approve Proposal"); |
921 | 0 | SectionTitle dialogLabel = SectionTitle.generateH4Title("You are approving the " + proposalName +" proposal"); |
922 | 0 | SectionTitle fieldLabel = SectionTitle.generateH4Title("Decision Rationale"); |
923 | 0 | required = new AbbrPanel("Required", "ks-form-module-elements-required", " * "); |
924 | 0 | required.setVisible(true); |
925 | 0 | HorizontalPanel rationalePanel = new HorizontalPanel(); |
926 | 0 | rationalePanel.add(fieldLabel); |
927 | 0 | rationalePanel.add(required); |
928 | 0 | rationaleEditor.addStyleName("KS-Comment-Create-Editor"); |
929 | 0 | dialogPanel.clear(); |
930 | 0 | submitSuccessDialog.clearButtons(); |
931 | 0 | submitSuccessDialog.setNonCaptionHeader(headerTitle); |
932 | 0 | dialogPanel.add(dialogLabel); |
933 | 0 | dialogPanel.add(rationalePanel); |
934 | 0 | dialogPanel.add(rationaleEditor); |
935 | 0 | if(approveDialogView!=null && !approveDialogView.getFields().isEmpty()){ |
936 | 0 | dialogPanel.add(approveDialogView.asWidget()); |
937 | |
} |
938 | 0 | submitSuccessDialog.addButtonGroup(approveCancelButtons); |
939 | |
|
940 | 0 | dialogPanel.setHeight("380px"); |
941 | 0 | submitSuccessDialog.show(); |
942 | 0 | } |
943 | |
}); |
944 | 0 | return wfApproveItem; |
945 | |
} |
946 | |
|
947 | |
private KSMenuItemData getWithdrawItem() { |
948 | |
KSMenuItemData wfWithdrawItem; |
949 | |
|
950 | 0 | wfWithdrawItem = new KSMenuItemData("Withdraw Proposal", new ClickHandler() { |
951 | |
public void onClick(ClickEvent event) { |
952 | 0 | setupSubmitSuccessDialog(); |
953 | 0 | final KSRichEditor rationaleEditor = new KSRichEditor(); |
954 | 0 | final ConfirmCancelGroup withdrawButton = new ConfirmCancelGroup(new Callback<ConfirmCancelEnum>() { |
955 | |
|
956 | |
@Override |
957 | |
public void exec(ConfirmCancelEnum result) { |
958 | 0 | if (!result.name().equals("CANCEL")) { |
959 | 0 | if (rationaleEditor.getText().trim().equals("")) { |
960 | 0 | required.setText("Please enter the decision rationale"); |
961 | |
} else { |
962 | 0 | addRationale(rationaleEditor, DecisionRationaleDetail.WITHDRAW.getType()); |
963 | |
|
964 | 0 | workflowRpcServiceAsync.withdrawDocumentWithId(workflowId, new KSAsyncCallback<Boolean>() { |
965 | |
@Override |
966 | |
public void handleFailure(Throwable caught) { |
967 | 0 | submitSuccessDialog.hide(); |
968 | 0 | Window.alert("Error withdrawing Proposal"); |
969 | 0 | } |
970 | |
|
971 | |
public void onSuccess(Boolean result) { |
972 | 0 | submitSuccessDialog.hide(); |
973 | 0 | if (result) { |
974 | 0 | updateWorkflow(dataModel); |
975 | 0 | if (submitCallback != null) { |
976 | 0 | submitCallback.exec(result); |
977 | |
} |
978 | |
|
979 | 0 | KSNotifier.add(new KSNotification("Proposal will be withdrawn", false)); |
980 | |
} else { |
981 | 0 | Window.alert("Error withdrawing Proposal"); |
982 | |
} |
983 | 0 | } |
984 | |
}); |
985 | |
} |
986 | |
|
987 | |
} else { |
988 | 0 | submitSuccessDialog.hide(); |
989 | |
} |
990 | 0 | } |
991 | |
}); |
992 | |
|
993 | 0 | withdrawButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(false); |
994 | |
|
995 | 0 | rationaleEditor.getRichTextArea().addKeyUpHandler(new KeyUpHandler(){ |
996 | |
|
997 | |
@Override |
998 | |
public void onKeyUp(KeyUpEvent event) { |
999 | 0 | if(!rationaleEditor.getText().trim().isEmpty()){ |
1000 | 0 | withdrawButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(true); |
1001 | |
} else { |
1002 | 0 | withdrawButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(false); |
1003 | |
} |
1004 | 0 | } |
1005 | |
|
1006 | |
}); |
1007 | |
|
1008 | |
|
1009 | 0 | SectionTitle headerTitle = SectionTitle.generateH3Title("Withdraw Proposal"); |
1010 | 0 | SectionTitle dialogLabel = SectionTitle.generateH4Title("You are withdrawing the " + proposalName + " proposal"); |
1011 | 0 | SectionTitle fieldLabel = SectionTitle.generateH4Title("Decision Rationale"); |
1012 | 0 | required = new AbbrPanel("Required", "ks-form-module-elements-required", " * "); |
1013 | 0 | required.setVisible(true); |
1014 | 0 | rationaleEditor.addStyleName("KS-Comment-Create-Editor"); |
1015 | 0 | dialogPanel.clear(); |
1016 | 0 | submitSuccessDialog.clearButtons(); |
1017 | 0 | submitSuccessDialog.setNonCaptionHeader(headerTitle); |
1018 | 0 | dialogPanel.add(dialogLabel); |
1019 | 0 | dialogPanel.add(fieldLabel); |
1020 | 0 | dialogPanel.add(required); |
1021 | 0 | dialogPanel.add(rationaleEditor); |
1022 | 0 | submitSuccessDialog.addButtonGroup(withdrawButton); |
1023 | |
|
1024 | 0 | dialogPanel.setHeight("380px"); |
1025 | |
|
1026 | 0 | submitSuccessDialog.show(); |
1027 | 0 | } |
1028 | |
}); |
1029 | 0 | return wfWithdrawItem; |
1030 | |
} |
1031 | |
|
1032 | |
private KSMenuItemData getBlanketApproveItem() { |
1033 | |
KSMenuItemData wfBlanketApproveItem; |
1034 | |
|
1035 | 0 | wfBlanketApproveItem = new KSMenuItemData("Blanket Approve Proposal", new ClickHandler() { |
1036 | |
public void onClick(ClickEvent event) { |
1037 | 0 | setupSubmitSuccessDialog(); |
1038 | 0 | final KSRichEditor rationaleEditor = new KSRichEditor(); |
1039 | 0 | final ConfirmCancelGroup blanketApprovalButton = new ConfirmCancelGroup(new Callback<ConfirmCancelEnum>() { |
1040 | |
|
1041 | |
@Override |
1042 | |
public void exec(ConfirmCancelEnum result) { |
1043 | 0 | if (!result.name().equals("CANCEL")) { |
1044 | 0 | if (rationaleEditor.getText().trim().equals("")) { |
1045 | 0 | required.setText("Please enter the decision rationale"); |
1046 | |
} else { |
1047 | |
|
1048 | 0 | if(blanketApproveDialogView!=null){ |
1049 | |
|
1050 | 0 | parentController.requestModel(new ModelRequestCallback<DataModel>(){ |
1051 | |
|
1052 | |
@Override |
1053 | |
public void onModelReady(final DataModel model) { |
1054 | 0 | blanketApproveDialogView.updateModel(); |
1055 | 0 | if(parentController instanceof WorkflowEnhancedNavController){ |
1056 | 0 | ((WorkflowEnhancedNavController)parentController).getMetadataForFinalState(new KSAsyncCallback<Metadata>(){ |
1057 | |
|
1058 | |
@Override |
1059 | |
public void onSuccess( |
1060 | |
Metadata metadata) { |
1061 | 0 | model.validateForMetadata(metadata, new Callback<List<ValidationResultInfo>>() { |
1062 | |
@Override |
1063 | |
public void exec(List<ValidationResultInfo> results) { |
1064 | |
|
1065 | |
|
1066 | |
|
1067 | |
|
1068 | 0 | if(ErrorLevel.OK.equals(blanketApproveDialogView.processValidationResults(results))){ |
1069 | 0 | List<String> ignoreFields = new ArrayList<String>(ignoredApproveDialogFields); |
1070 | 0 | for(FieldDescriptor fd:blanketApproveDialogView.getFields()){ |
1071 | 0 | ignoreFields.add(fd.getFieldKey()); |
1072 | |
} |
1073 | 0 | if(!ValidationResultInfo.hasValidationErrors(results,ErrorLevel.WARN,ignoreFields)){ |
1074 | |
|
1075 | 0 | SaveActionEvent saveActionEvent = new SaveActionEvent(); |
1076 | 0 | saveActionEvent.setActionCompleteCallback(new ActionCompleteCallback(){ |
1077 | |
public void onActionComplete(ActionEvent action) { |
1078 | 0 | doBlanketApprove(); |
1079 | 0 | } |
1080 | |
}); |
1081 | 0 | parentController.fireApplicationEvent(saveActionEvent); |
1082 | 0 | }else{ |
1083 | 0 | submitSuccessDialog.hide(); |
1084 | 0 | KSNotifier.add(new KSNotification("Unable to blanket approve, please enter all data required for final approval.", false, true, 5000)); |
1085 | |
} |
1086 | 0 | }else{ |
1087 | 0 | KSNotifier.add(new KSNotification("Unable to blanket approve, please enter all data required for final approval.", false, true, 5000)); |
1088 | |
} |
1089 | 0 | } |
1090 | |
}); |
1091 | 0 | } |
1092 | |
|
1093 | |
}); |
1094 | |
} |
1095 | 0 | } |
1096 | |
|
1097 | |
@Override |
1098 | |
public void onRequestFail( |
1099 | |
Throwable cause) { |
1100 | 0 | KSNotifier.add(new KSNotification("Error requesting data model.", false, true, 5000)); |
1101 | 0 | } |
1102 | |
|
1103 | |
}); |
1104 | |
|
1105 | |
}else{ |
1106 | 0 | doBlanketApprove(); |
1107 | |
} |
1108 | |
|
1109 | |
|
1110 | |
} |
1111 | |
} else { |
1112 | 0 | submitSuccessDialog.hide(); |
1113 | 0 | updateWorkflowActionsWidget(); |
1114 | |
} |
1115 | 0 | } |
1116 | |
|
1117 | |
private void doBlanketApprove() { |
1118 | 0 | addRationale(rationaleEditor, DecisionRationaleDetail.BLANKET_APPROVE.getType()); |
1119 | 0 | workflowRpcServiceAsync.blanketApproveDocumentWithId(workflowId, new KSAsyncCallback<Boolean>() { |
1120 | |
@Override |
1121 | |
public void handleFailure(Throwable caught) { |
1122 | 0 | submitSuccessDialog.hide(); |
1123 | 0 | Window.alert("Error blanket approving Proposal"); |
1124 | 0 | } |
1125 | |
|
1126 | |
public void onSuccess(Boolean result) { |
1127 | 0 | submitSuccessDialog.hide(); |
1128 | 0 | if (result) { |
1129 | |
|
1130 | |
|
1131 | |
|
1132 | 0 | enableWorkflowActionsWidgets(false); |
1133 | |
|
1134 | 0 | updateWorkflow(dataModel); |
1135 | 0 | if (submitCallback != null) { |
1136 | 0 | submitCallback.exec(result); |
1137 | |
} |
1138 | |
|
1139 | 0 | KSNotifier.add(new KSNotification("Proposal will be blanket approved", false)); |
1140 | |
} else { |
1141 | 0 | Window.alert("Error blanket approving Proposal"); |
1142 | |
} |
1143 | 0 | } |
1144 | |
}); |
1145 | 0 | } |
1146 | |
}); |
1147 | |
|
1148 | 0 | blanketApprovalButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(false); |
1149 | |
|
1150 | 0 | rationaleEditor.getRichTextArea().addKeyUpHandler(new KeyUpHandler(){ |
1151 | |
|
1152 | |
@Override |
1153 | |
public void onKeyUp(KeyUpEvent event) { |
1154 | 0 | if(!rationaleEditor.getText().trim().isEmpty()){ |
1155 | 0 | blanketApprovalButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(true); |
1156 | |
} else { |
1157 | 0 | blanketApprovalButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(false); |
1158 | |
} |
1159 | 0 | } |
1160 | |
|
1161 | |
}); |
1162 | |
|
1163 | 0 | SectionTitle headerTitle = SectionTitle.generateH3Title("Blanket Approve Proposal"); |
1164 | 0 | SectionTitle dialogLabel = SectionTitle.generateH4Title("You are blanket approving the " + proposalName + " proposal"); |
1165 | 0 | SectionTitle fieldLabel = SectionTitle.generateH4Title("Decision Rationale"); |
1166 | 0 | required = new AbbrPanel("Required", "ks-form-module-elements-required", " * "); |
1167 | 0 | required.setVisible(true); |
1168 | 0 | rationaleEditor.addStyleName("KS-Comment-Create-Editor"); |
1169 | 0 | dialogPanel.clear(); |
1170 | 0 | submitSuccessDialog.clearButtons(); |
1171 | 0 | submitSuccessDialog.setNonCaptionHeader(headerTitle); |
1172 | 0 | dialogPanel.add(dialogLabel); |
1173 | 0 | dialogPanel.add(fieldLabel); |
1174 | 0 | dialogPanel.add(required); |
1175 | 0 | dialogPanel.add(rationaleEditor); |
1176 | 0 | if(blanketApproveDialogView!=null && !blanketApproveDialogView.getFields().isEmpty()){ |
1177 | 0 | dialogPanel.add(blanketApproveDialogView.asWidget()); |
1178 | |
} |
1179 | 0 | submitSuccessDialog.addButtonGroup(blanketApprovalButton); |
1180 | |
|
1181 | 0 | dialogPanel.setHeight("380px"); |
1182 | |
|
1183 | 0 | submitSuccessDialog.show(); |
1184 | 0 | } |
1185 | |
}); |
1186 | 0 | return wfBlanketApproveItem; |
1187 | |
} |
1188 | |
|
1189 | |
|
1190 | |
|
1191 | |
|
1192 | |
|
1193 | |
|
1194 | |
|
1195 | |
public void blanketApprove(final Callback<Boolean> onSuccessCallback){ |
1196 | 0 | updateWorkflowIdFromModel(dataModel); |
1197 | 0 | workflowRpcServiceAsync.blanketApproveDocumentWithId(workflowId, new KSAsyncCallback<Boolean>() { |
1198 | |
@Override |
1199 | |
public void handleFailure(Throwable caught) { |
1200 | 0 | Window.alert("Error blanket approving Proposal"); |
1201 | 0 | } |
1202 | |
|
1203 | |
public void onSuccess(Boolean result) { |
1204 | 0 | if (result) { |
1205 | 0 | onSuccessCallback.exec(true); |
1206 | |
} else { |
1207 | 0 | Window.alert("Error blanket approving Proposal"); |
1208 | |
} |
1209 | 0 | } |
1210 | |
}); |
1211 | 0 | } |
1212 | |
|
1213 | |
|
1214 | |
|
1215 | |
|
1216 | |
|
1217 | |
|
1218 | |
|
1219 | |
public void cancel(final Callback<Boolean> onSuccessCallback){ |
1220 | 0 | ConfirmationDialog confirmCancelDialog = getConfirmationCancelProposalDialog(onSuccessCallback); |
1221 | 0 | confirmCancelDialog.show(); |
1222 | 0 | } |
1223 | |
|
1224 | |
|
1225 | |
protected KSDropDown setUpReturnToPreviousDropDown(String workflowId) { |
1226 | |
|
1227 | 0 | final KSDropDown nodeNameDropDown = new KSDropDown(); |
1228 | 0 | nodeNameDropDown.setBlankFirstItem(true); |
1229 | 0 | workflowRpcServiceAsync.getPreviousRouteNodeNames(workflowId, new KSAsyncCallback<List<String>>() { |
1230 | |
@Override |
1231 | |
public void handleFailure(Throwable caught) { |
1232 | 0 | Window.alert("Error getting previous node names for Proposal"); |
1233 | 0 | } |
1234 | |
|
1235 | |
public void onSuccess(List<String> result) { |
1236 | 0 | SimpleListItems nodeNameList = new SimpleListItems(); |
1237 | 0 | for (String nodeName : result) { |
1238 | 0 | nodeNameList.addItem(nodeName, nodeName); |
1239 | |
} |
1240 | 0 | nodeNameDropDown.setListItems(nodeNameList); |
1241 | 0 | } |
1242 | |
}); |
1243 | 0 | nodeNameDropDown.setInitialized(true); |
1244 | 0 | return nodeNameDropDown; |
1245 | |
} |
1246 | |
|
1247 | |
private KSMenuItemData getReturnToPreviousItem() { |
1248 | |
KSMenuItemData wfReturnToPreviousItem; |
1249 | |
|
1250 | 0 | wfReturnToPreviousItem = new KSMenuItemData("Return Proposal to Previous Node", new ClickHandler() { |
1251 | |
public void onClick(ClickEvent event) { |
1252 | 0 | setupSubmitSuccessDialog(); |
1253 | 0 | final KSRichEditor rationaleEditor = new KSRichEditor(); |
1254 | 0 | final KSDropDown nodeNameDropDown = setUpReturnToPreviousDropDown(workflowId); |
1255 | 0 | final ConfirmCancelGroup returnButton = new ConfirmCancelGroup(new Callback<ConfirmCancelEnum>() { |
1256 | |
|
1257 | |
@Override |
1258 | |
public void exec(ConfirmCancelEnum result) { |
1259 | 0 | if (!result.name().equals("CANCEL")) { |
1260 | 0 | if ((rationaleEditor.getText().trim().equals("")) && (nodeNameDropDown.getSelectedItem()==null || nodeNameDropDown.getSelectedItem().trim().equals(""))) { |
1261 | 0 | required.setText("Please enter the decision rationale and select a node name to return to"); |
1262 | 0 | } else if (rationaleEditor.getText().trim().equals("")) { |
1263 | 0 | required.setText("Please enter the decision rationale"); |
1264 | 0 | } else if (nodeNameDropDown.getSelectedItem()==null || nodeNameDropDown.getSelectedItem().trim().equals("")) { |
1265 | 0 | required.setText("Please select a node name to return to"); |
1266 | |
} else { |
1267 | 0 | addRationale(rationaleEditor, DecisionRationaleDetail.RETURN_TO_PREVIOUS.getType()); |
1268 | 0 | String nodeName = nodeNameDropDown.getSelectedItem().trim(); |
1269 | 0 | workflowRpcServiceAsync.returnDocumentWithId(workflowId, nodeName, new KSAsyncCallback<Boolean>() { |
1270 | |
@Override |
1271 | |
public void handleFailure(Throwable caught) { |
1272 | 0 | submitSuccessDialog.hide(); |
1273 | 0 | Window.alert("Error returning the Proposal to a previous node"); |
1274 | 0 | } |
1275 | |
|
1276 | |
public void onSuccess(Boolean result) { |
1277 | 0 | submitSuccessDialog.hide(); |
1278 | 0 | if (result) { |
1279 | 0 | updateWorkflow(dataModel); |
1280 | 0 | if (submitCallback != null) { |
1281 | 0 | submitCallback.exec(result); |
1282 | |
} |
1283 | |
|
1284 | 0 | KSNotifier.add(new KSNotification("Proposal was returned", false)); |
1285 | |
} else { |
1286 | 0 | Window.alert("Error returning the Proposal to a previous node"); |
1287 | |
} |
1288 | 0 | } |
1289 | |
}); |
1290 | 0 | } |
1291 | |
|
1292 | |
} else { |
1293 | 0 | submitSuccessDialog.hide(); |
1294 | |
} |
1295 | 0 | } |
1296 | |
}); |
1297 | |
|
1298 | 0 | returnButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(false); |
1299 | |
|
1300 | 0 | rationaleEditor.getRichTextArea().addKeyUpHandler(new KeyUpHandler(){ |
1301 | |
|
1302 | |
@Override |
1303 | |
public void onKeyUp(KeyUpEvent event) { |
1304 | 0 | if(!rationaleEditor.getText().trim().isEmpty() && !(nodeNameDropDown.getSelectedItem() == null)){ |
1305 | 0 | returnButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(true); |
1306 | |
} else { |
1307 | 0 | returnButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(false); |
1308 | |
} |
1309 | 0 | } |
1310 | |
|
1311 | |
}); |
1312 | |
|
1313 | 0 | nodeNameDropDown.addSelectionChangeHandler(new SelectionChangeHandler(){ |
1314 | |
|
1315 | |
@Override |
1316 | |
public void onSelectionChange(SelectionChangeEvent event) { |
1317 | 0 | if(!rationaleEditor.getText().trim().isEmpty() && !(nodeNameDropDown.getSelectedItem() == null)){ |
1318 | 0 | returnButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(true); |
1319 | |
} else { |
1320 | 0 | returnButton.getButton(ButtonEnumerations.ConfirmCancelEnum.CONFIRM).setEnabled(false); |
1321 | |
} |
1322 | 0 | } |
1323 | |
|
1324 | |
}); |
1325 | |
|
1326 | 0 | SectionTitle headerTitle = SectionTitle.generateH3Title("Return Proposal to Previous Node"); |
1327 | 0 | SectionTitle dialogLabel = SectionTitle.generateH4Title("You are returning the " + proposalName + " proposal to a previous node"); |
1328 | 0 | SectionTitle nnFieldLabel = SectionTitle.generateH4Title("Workflow Node Name"); |
1329 | 0 | SectionTitle drFieldLabel = SectionTitle.generateH4Title("Decision Rationale"); |
1330 | 0 | required = new AbbrPanel("Required", "ks-form-module-elements-required", " * "); |
1331 | 0 | required.setVisible(true); |
1332 | 0 | rationaleEditor.addStyleName("KS-Comment-Create-Editor"); |
1333 | 0 | dialogPanel.clear(); |
1334 | 0 | submitSuccessDialog.clearButtons(); |
1335 | 0 | submitSuccessDialog.setNonCaptionHeader(headerTitle); |
1336 | 0 | dialogPanel.add(dialogLabel); |
1337 | 0 | dialogPanel.add(nnFieldLabel); |
1338 | 0 | dialogPanel.add(nodeNameDropDown); |
1339 | 0 | dialogPanel.add(drFieldLabel); |
1340 | 0 | dialogPanel.add(required); |
1341 | 0 | dialogPanel.add(rationaleEditor); |
1342 | 0 | submitSuccessDialog.addButtonGroup(returnButton); |
1343 | |
|
1344 | 0 | dialogPanel.setHeight("380px"); |
1345 | |
|
1346 | 0 | submitSuccessDialog.show(); |
1347 | 0 | } |
1348 | |
}); |
1349 | 0 | return wfReturnToPreviousItem; |
1350 | |
} |
1351 | |
|
1352 | |
private void addRationale(KSRichEditor rationaleEditor, String rationaleType) { |
1353 | 0 | CommentInfo newDecisionRationale = new CommentInfo(); |
1354 | 0 | RichTextInfo text = new RichTextInfo(); |
1355 | 0 | text.setFormatted(rationaleEditor.getHTML()); |
1356 | 0 | text.setPlain(rationaleEditor.getText()); |
1357 | 0 | newDecisionRationale.setReferenceTypeKey(PROPOSAL_REF_TYPE_KEY); |
1358 | 0 | newDecisionRationale.setReferenceId(proposalId); |
1359 | 0 | newDecisionRationale.setState(DtoState.ACTIVE.toString()); |
1360 | 0 | newDecisionRationale.setCommentText(text); |
1361 | 0 | newDecisionRationale.setType(rationaleType); |
1362 | |
|
1363 | |
try { |
1364 | 0 | commentServiceAsync.addComment(proposalId, PROPOSAL_REF_TYPE_KEY, newDecisionRationale, new KSAsyncCallback<CommentInfo>() { |
1365 | |
|
1366 | |
@Override |
1367 | |
public void handleFailure(Throwable caught) { |
1368 | 0 | GWT.log("Add Comment Failed", caught); |
1369 | 0 | } |
1370 | |
|
1371 | |
@Override |
1372 | |
public void onSuccess(CommentInfo result) { |
1373 | 0 | System.out.println("Rationale Added successfully"); |
1374 | 0 | } |
1375 | |
}); |
1376 | 0 | } catch (Exception e) { |
1377 | 0 | GWT.log("Add Comment Failed", e); |
1378 | 0 | } |
1379 | 0 | } |
1380 | |
|
1381 | |
private KSMenuItemData getStartItem() { |
1382 | |
KSMenuItemData wfStartWorkflowItem; |
1383 | 0 | wfStartWorkflowItem = new KSMenuItemData("Submit Proposal", new ClickHandler(){ |
1384 | |
public void onClick(ClickEvent event) { |
1385 | |
|
1386 | 0 | dataModel.validateNextState(new Callback<List<ValidationResultInfo>>() { |
1387 | |
@Override |
1388 | |
public void exec(List<ValidationResultInfo> result) { |
1389 | |
|
1390 | 0 | boolean isValid = parentController.isValid(result, false); |
1391 | 0 | if(isValid){ |
1392 | 0 | dialog.show(); |
1393 | |
} |
1394 | |
else{ |
1395 | 0 | Window.alert("Unable to submit to workflow. Please check sections for missing fields."); |
1396 | |
} |
1397 | 0 | } |
1398 | |
}); |
1399 | 0 | } |
1400 | |
|
1401 | |
}); |
1402 | 0 | return wfStartWorkflowItem; |
1403 | |
} |
1404 | |
|
1405 | |
private KSMenuItemData getCancelWorkflowItem() { |
1406 | |
KSMenuItemData wfCancelWorkflowItem; |
1407 | 0 | wfCancelWorkflowItem = new KSMenuItemData("Cancel Proposal", new ClickHandler() { |
1408 | |
public void onClick(ClickEvent event) { |
1409 | 0 | ConfirmationDialog confirmationCancelProposal = getConfirmationCancelProposalDialog(null); |
1410 | 0 | confirmationCancelProposal.show(); |
1411 | 0 | } |
1412 | |
}); |
1413 | 0 | return wfCancelWorkflowItem; |
1414 | |
} |
1415 | |
|
1416 | |
protected ConfirmationDialog getConfirmationCancelProposalDialog (final Callback<Boolean> onSuccessCallback){ |
1417 | 0 | final ConfirmationDialog confirmationCancelProposal = new ConfirmationDialog("Cancel Proposal","This action is not reversible and all data will be lost. Do you wish to cancel this proposal?"); |
1418 | |
|
1419 | 0 | confirmationCancelProposal.getConfirmButton().setText("Yes, cancel proposal"); |
1420 | 0 | confirmationCancelProposal.getCancelButton().setStyleName(ButtonStyle.PRIMARY_SMALL.getStyle()); |
1421 | 0 | confirmationCancelProposal.getCancelButton().setText("No, return to proposal"); |
1422 | |
|
1423 | 0 | confirmationCancelProposal.getConfirmButton().addClickHandler(new ClickHandler(){ |
1424 | |
@Override |
1425 | |
public void onClick(ClickEvent event) { |
1426 | 0 | workflowRpcServiceAsync.cancelDocumentWithId(workflowId, new KSAsyncCallback<Boolean>() { |
1427 | |
@Override |
1428 | |
public void handleFailure(Throwable caught) { |
1429 | 0 | confirmationCancelProposal.hide(); |
1430 | 0 | Window.alert("Error Cancelling Proposal"); |
1431 | 0 | } |
1432 | |
public void onSuccess(Boolean result) { |
1433 | 0 | confirmationCancelProposal.hide(); |
1434 | 0 | if (result) { |
1435 | 0 | updateWorkflow(dataModel); |
1436 | 0 | if (submitCallback != null) { |
1437 | 0 | submitCallback.exec(true); |
1438 | |
} |
1439 | 0 | if (onSuccessCallback != null){ |
1440 | 0 | onSuccessCallback.exec(true); |
1441 | |
} |
1442 | |
|
1443 | 0 | KSNotifier.add(new KSNotification("Proposal will be Cancelled", false)); |
1444 | |
} else { |
1445 | 0 | Window.alert("Error Cancelling Proposal"); |
1446 | |
} |
1447 | 0 | } |
1448 | |
}); |
1449 | |
|
1450 | 0 | } |
1451 | |
|
1452 | |
}); |
1453 | |
|
1454 | 0 | return confirmationCancelProposal; |
1455 | |
} |
1456 | |
|
1457 | |
private void setWorkflowStatus(String statusCd){ |
1458 | 0 | String statusTranslation = ""; |
1459 | 0 | if (WorkflowConstants.ROUTE_HEADER_SAVED_CD.equals(statusCd)){ |
1460 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_SAVED_LABEL_KEY); |
1461 | 0 | } else if (WorkflowConstants.ROUTE_HEADER_INITIATED_CD.equals(statusCd)){ |
1462 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_INITIATED_LABEL_KEY); |
1463 | 0 | } else if (WorkflowConstants.ROUTE_HEADER_ENROUTE_CD.equals(statusCd)){ |
1464 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_ENROUTE_LABEL_KEY); |
1465 | 0 | } else if (WorkflowConstants.ROUTE_HEADER_APPROVED_CD.equals(statusCd)){ |
1466 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_APPROVED_LABEL_KEY); |
1467 | 0 | } else if (WorkflowConstants.ROUTE_HEADER_CANCEL_CD.equals(statusCd)){ |
1468 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_CANCEL_LABEL_KEY); |
1469 | 0 | } else if (WorkflowConstants.ROUTE_HEADER_EXCEPTION_CD.equals(statusCd)){ |
1470 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_EXCEPTION_LABEL_KEY); |
1471 | 0 | } else if (WorkflowConstants.ROUTE_HEADER_DISAPPROVED_CD.equals(statusCd)){ |
1472 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_DISAPPROVED_LABEL_KEY); |
1473 | 0 | } else if (WorkflowConstants.ROUTE_HEADER_FINAL_CD.equals(statusCd)){ |
1474 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_APPROVED_LABEL_KEY); |
1475 | 0 | } else if (WorkflowConstants.ROUTE_HEADER_DISAPPROVE_CANCEL_CD.equals(statusCd)){ |
1476 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_DISAPPROVE_CANCEL_LABEL_KEY); |
1477 | 0 | } else if (WorkflowConstants.ROUTE_HEADER_PROCESSED_CD.equals(statusCd)){ |
1478 | 0 | statusTranslation = getLabel(WorkflowConstants.ROUTE_HEADER_APPROVED_LABEL_KEY); |
1479 | |
} else { |
1480 | 0 | statusTranslation = statusCd; |
1481 | |
} |
1482 | |
|
1483 | 0 | workflowStatusLabel.setText("Status: " + statusTranslation); |
1484 | 0 | } |
1485 | |
|
1486 | |
private void setProposalStatus(String statusCode) { |
1487 | 0 | String statusLabel = Application.getApplicationContext() |
1488 | |
.getUILabel("common", null, null, "proposalStatusLabel"); |
1489 | 0 | String status = Application.getApplicationContext().getUILabel("common", null, null, statusCode); |
1490 | |
|
1491 | 0 | proposalStatusLabel.setText(statusLabel + ": " + status); |
1492 | 0 | } |
1493 | |
|
1494 | |
|
1495 | |
|
1496 | |
|
1497 | |
|
1498 | |
|
1499 | |
public void setModelName(String modelName) { |
1500 | 0 | this.modelName = modelName; |
1501 | 0 | } |
1502 | |
|
1503 | |
|
1504 | |
|
1505 | |
|
1506 | |
|
1507 | |
public void setProposalPath(String proposalPath) { |
1508 | 0 | this.proposalPath = proposalPath; |
1509 | 0 | } |
1510 | |
|
1511 | |
public void setWorkflowRpcService(WorkflowRpcServiceAsync workflowRpcServiceAsync){ |
1512 | 0 | this.workflowRpcServiceAsync = workflowRpcServiceAsync; |
1513 | 0 | } |
1514 | |
|
1515 | |
|
1516 | |
public void refresh(){ |
1517 | 0 | updateApproveFields(); |
1518 | 0 | updateWorkflow(dataModel); |
1519 | 0 | } |
1520 | |
|
1521 | |
private String getLabel(String labelKey) { |
1522 | 0 | return Application.getApplicationContext().getUILabel("common", null, null, labelKey); |
1523 | |
} |
1524 | |
|
1525 | |
public void getDataIdFromWorkflowId(String workflowId, AsyncCallback<String> callback){ |
1526 | 0 | workflowRpcServiceAsync.getDataIdFromWorkflowId(workflowId, callback); |
1527 | 0 | } |
1528 | |
|
1529 | |
public void addSubmitCallback(Callback<Boolean> callback) { |
1530 | 0 | this.submitCallback = callback; |
1531 | |
|
1532 | 0 | } |
1533 | |
|
1534 | |
public List<KSMenuItemData> getAdditionalItems() { |
1535 | 0 | return additionalItems; |
1536 | |
} |
1537 | |
|
1538 | |
public void addIgnoreDialogField(String string) { |
1539 | 0 | ignoredApproveDialogFields.add(string); |
1540 | 0 | } |
1541 | |
|
1542 | |
public VerticalSectionView getApproveDialogue() { |
1543 | 0 | return approveDialogView; |
1544 | |
} |
1545 | |
|
1546 | |
public void progressiveEnableFields() { |
1547 | 0 | if (getApproveDialogue() != null) { |
1548 | |
|
1549 | 0 | FieldDescriptor prevEndTerm = approveDialogView.getField("proposal/prevEndTerm"); |
1550 | |
|
1551 | 0 | if (prevEndTerm != null) { |
1552 | 0 | approveDialogView.getWidget(0).setVisible(true); |
1553 | 0 | approveDialogView.getField("proposal/prevEndTerm").getMetadata().getConstraints().get(0).setMinOccurs(1); |
1554 | 0 | approveDialogView.getField("proposal/prevEndTerm").getFieldElement().setRequiredString("requiredMarker", "ks-form-module-elements-required"); |
1555 | 0 | approveDialogView.getField("startTerm").getFieldWidget().setVisible(true); |
1556 | |
} else { |
1557 | 0 | approveDialogView.getWidget(0).setVisible(false); |
1558 | 0 | approveDialogView.getField("startTerm").getFieldWidget().setVisible(false); |
1559 | |
} |
1560 | |
} |
1561 | 0 | } |
1562 | |
|
1563 | |
} |