1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.service.impl;
17
18 import org.kuali.rice.krad.bo.AdHocRoutePerson;
19 import org.kuali.rice.krad.bo.AdHocRouteWorkgroup;
20 import org.kuali.rice.krad.rules.rule.event.AddAdHocRoutePersonEvent;
21 import org.kuali.rice.krad.rules.rule.event.AddAdHocRouteWorkgroupEvent;
22 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
23 import org.kuali.rice.krad.service.KualiRuleService;
24 import org.kuali.rice.krad.uif.container.CollectionGroup;
25 import org.kuali.rice.krad.uif.view.View;
26 import org.kuali.rice.krad.uif.view.ViewModel;
27 import org.kuali.rice.krad.web.form.DocumentFormBase;
28
29
30
31
32 public class DocumentViewHelperServiceImpl extends ViewHelperServiceImpl {
33
34 private transient KualiRuleService kualiRuleService;
35
36
37
38
39
40
41
42
43
44
45
46
47
48 @Override
49 protected boolean performAddLineValidation(ViewModel model, Object addLine, String collectionId,
50 String collectionPath) {
51 boolean isValidLine = super.performAddLineValidation(model, addLine, collectionId, collectionPath);
52
53 if (model instanceof DocumentFormBase && addLine instanceof AdHocRoutePerson) {
54 DocumentFormBase form = (DocumentFormBase) model;
55 isValidLine &= getKualiRuleService()
56 .applyRules(new AddAdHocRoutePersonEvent(form.getDocument(), (AdHocRoutePerson) addLine));
57 } else if (model instanceof DocumentFormBase && addLine instanceof AdHocRouteWorkgroup) {
58 DocumentFormBase form = (DocumentFormBase) model;
59 isValidLine &= getKualiRuleService()
60 .applyRules(new AddAdHocRouteWorkgroupEvent(form.getDocument(), (AdHocRouteWorkgroup) addLine));
61 }
62
63 return isValidLine;
64 }
65
66
67
68
69
70
71 protected KualiRuleService getKualiRuleService() {
72 if (kualiRuleService == null) {
73 kualiRuleService = KRADServiceLocatorWeb.getKualiRuleService();
74 }
75
76 return this.kualiRuleService;
77 }
78 }