1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.module.purap.document.service.impl;
17
18 import org.kuali.ole.module.purap.businessobject.PurApAccountingLineBase;
19 import org.kuali.ole.module.purap.businessobject.PurApItemBase;
20 import org.kuali.ole.module.purap.document.OlePurchasingAccountsPayableDocumentBase;
21 import org.kuali.ole.module.purap.document.PurchasingAccountsPayableDocumentBase;
22 import org.kuali.ole.sys.businessobject.AccountingLine;
23 import org.kuali.ole.sys.document.service.impl.ObjectCodeDynamicNameLabelGeneratorImpl;
24
25 public class PurapObjectCodeDynamicNameLabelGeneratorImpl extends ObjectCodeDynamicNameLabelGeneratorImpl {
26
27
28
29
30
31
32
33 @Override
34 public String getDynamicNameLabelValue(AccountingLine line, String accountingLineProperty) {
35 PurApAccountingLineBase purapLine = (PurApAccountingLineBase) line;
36 PurApItemBase purapItem = purapLine.getPurapItem();
37 OlePurchasingAccountsPayableDocumentBase purapDocument = null;
38 if (purapItem != null) {
39 purapDocument = purapItem.getOlePurapDocument();
40 }
41 if (purapItem == null || purapDocument == null || purapDocument.isInquiryRendered()) {
42 return super.getDynamicNameLabelValue(line, accountingLineProperty);
43 } else {
44 return null;
45 }
46 }
47
48
49 }