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.PurchasingAccountsPayableDocumentBase;
21  import org.kuali.ole.sys.businessobject.AccountingLine;
22  import org.kuali.ole.sys.document.service.impl.ObjectCodeDynamicNameLabelGeneratorImpl;
23  
24  public class PurapObjectCodeDynamicNameLabelGeneratorImpl extends ObjectCodeDynamicNameLabelGeneratorImpl {
25  
26      /**
27       * Overrides the method in ObjectCodeDynamicNameLabelGeneratorImpl so that we could control whether
28       * to display or hide the dynamic name label in certain conditions in purap documents.
29       *
30       * @see org.kuali.ole.sys.document.service.DynamicNameLabelGenerator#getDynamicNameLabelFieldName(org.kuali.ole.sys.businessobject.AccountingLine, java.lang.String)
31       */
32      @Override
33      public String getDynamicNameLabelValue(AccountingLine line, String accountingLineProperty) {
34          PurApAccountingLineBase purapLine = (PurApAccountingLineBase) line;
35          PurApItemBase purapItem = purapLine.getPurapItem();
36          PurchasingAccountsPayableDocumentBase purapDocument = null;
37          if (purapItem != null) {
38              purapDocument = purapItem.getPurapDocument();
39          }
40          if (purapItem == null || purapDocument == null || purapDocument.isInquiryRendered()) {
41              return super.getDynamicNameLabelValue(line, accountingLineProperty);
42          } else {
43              return null;
44          }
45      }
46  
47  
48  }