View Javadoc
1   /*
2    * Copyright 2008 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl2.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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       * Overrides the method in ObjectCodeDynamicNameLabelGeneratorImpl so that we could control whether
29       * to display or hide the dynamic name label in certain conditions in purap documents.
30       *
31       * @see org.kuali.ole.sys.document.service.DynamicNameLabelGenerator#getDynamicNameLabelFieldName(org.kuali.ole.sys.businessobject.AccountingLine, java.lang.String)
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  }