View Javadoc

1   /**
2    * Copyright 2004-2013 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.hr.time.earncode;
17  
18  import java.sql.Date;
19  import java.text.ParseException;
20  import java.text.SimpleDateFormat;
21  import java.util.Map;
22  
23  import org.apache.commons.lang.StringUtils;
24  import org.kuali.hr.time.service.base.TkServiceLocator;
25  import org.kuali.rice.krad.bo.BusinessObject;
26  import org.kuali.rice.kns.inquiry.KualiInquirableImpl;
27  
28  public class EarnCodeInquirableImpl extends KualiInquirableImpl {
29  	
30  	@Override
31  	public BusinessObject getBusinessObject(Map fieldValues) {
32  		EarnCode ec = null;
33  		if(StringUtils.isNotBlank((String)fieldValues.get("hrEarnCodeId"))) {
34  			ec = TkServiceLocator.getEarnCodeService().getEarnCodeById((String)fieldValues.get("hrEarnCodeId"));
35  			
36  		} else if(StringUtils.isNotBlank((String)fieldValues.get("earnCode"))
37  					&& StringUtils.isNotBlank((String)fieldValues.get("effectiveDate"))) {
38  			java.util.Date uDate = null;
39  			try {
40  				uDate = new SimpleDateFormat("MM/dd/yyyy").parse(fieldValues.get("effectiveDate").toString());
41  			} catch (ParseException e) {
42  				// TODO Auto-generated catch block
43  				e.printStackTrace();
44  			}
45  			Date effdt = new java.sql.Date(uDate.getTime());
46  			ec = TkServiceLocator.getEarnCodeService().getEarnCode((String)fieldValues.get("earnCode"), effdt);
47  			
48  		} else {
49  			ec = (EarnCode) super.getBusinessObject(fieldValues);
50  		}
51  
52  		return ec;
53  	}
54  
55  }