View Javadoc
1   /*
2    * Copyright 2010 The Kuali Foundation.
3    * 
4    * Licensed under the Educational Community License, Version 1.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/ecl1.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.SubObjectCodeDynamicNameLabelGeneratorImpl;
23  
24  public class PurapSubObjectCodeDynamicNameLabelGeneratorImpl extends SubObjectCodeDynamicNameLabelGeneratorImpl {
25      /**
26       * Overrides the method in SubObjectCodeDynamicNameLabelGeneratorImpl so that we could control whether
27       * to display or hide the dynamic name label in certain conditions in purap documents.
28       *
29       * @see org.kuali.ole.sys.document.service.DynamicNameLabelGenerator#getDynamicNameLabelFieldName(org.kuali.ole.sys.businessobject.AccountingLine, java.lang.String)
30       */
31      @Override
32      public String getDynamicNameLabelValue(AccountingLine line, String accountingLineProperty) {
33          PurApAccountingLineBase purapLine = (PurApAccountingLineBase) line;
34          PurApItemBase purapItem = purapLine.getPurapItem();
35          PurchasingAccountsPayableDocumentBase purapDocument = null;
36          if (purapItem != null) {
37              purapDocument = purapItem.getPurapDocument();
38          }
39          if (purapItem == null || purapDocument == null || purapDocument.isInquiryRendered()) {
40              return super.getDynamicNameLabelValue(line, accountingLineProperty);
41          } else {
42              return null;
43          }
44      }
45  
46  }