001 /** 002 * Copyright 2004-2012 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package org.kuali.kfs.coa.businessobject.service; 017 018 import java.util.List; 019 import java.util.Properties; 020 021 import org.kuali.kfs.coa.businessobject.Organization; 022 import org.kuali.rice.kns.lookup.HtmlData; 023 import org.kuali.rice.kns.lookup.HtmlData.AnchorHtmlData; 024 import org.kuali.rice.kns.lookup.KualiLookupableHelperServiceImpl; 025 import org.kuali.rice.krad.bo.BusinessObject; 026 import org.kuali.rice.krad.util.KRADConstants; 027 import org.kuali.rice.krad.util.UrlFactory; 028 029 public class OrganizationLookupableHelper extends KualiLookupableHelperServiceImpl { 030 031 private static final long serialVersionUID = 6145986437726258575L; 032 033 @Override 034 public List<HtmlData> getCustomActionUrls(BusinessObject businessObject, List pkNames) { 035 List<HtmlData> customActionUrls = super.getCustomActionUrls(businessObject, pkNames); 036 037 Organization organization = (Organization) businessObject; 038 final String organizationCode = organization.getOrganizationCode(); 039 final String chartOfAccountsCode = organization.getChartOfAccountsCode(); 040 041 Properties params = new Properties(); 042 params.put(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, getBusinessObjectClass().getName()); 043 params.put(KRADConstants.DISPATCH_REQUEST_PARAMETER, KRADConstants.MAINTENANCE_NEW_METHOD_TO_CALL); 044 params.put("organizationCode", organizationCode); 045 params.put("chartOfAccountsCode", chartOfAccountsCode); 046 AnchorHtmlData viewUrl = new AnchorHtmlData(UrlFactory.parameterizeUrl(KRADConstants.INQUIRY_ACTION, params), "view"); 047 viewUrl.setDisplayText("view"); 048 viewUrl.setTarget(AnchorHtmlData.TARGET_BLANK); 049 customActionUrls.add(viewUrl); 050 051 return customActionUrls; 052 } 053 054 }