first commit
This commit is contained in:
137
hrmsEjb/wenrgise/hrms/businessdelegate/HrmPrmKPARatingBD.java
Normal file
137
hrmsEjb/wenrgise/hrms/businessdelegate/HrmPrmKPARatingBD.java
Normal file
@@ -0,0 +1,137 @@
|
||||
package wenrgise.hrms.businessdelegate;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
import java.sql.Timestamp;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
import javax.ejb.CreateException;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
import wenrgise.common.exception.EnrgiseApplicationException;
|
||||
import wenrgise.common.exception.EnrgiseSystemException;
|
||||
import wenrgise.common.utility.RecordMetaInfo;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
import wenrgise.common.vo.ThisPageVO;
|
||||
import wenrgise.ejb.common.utility.ServiceLocator;
|
||||
import wenrgise.hrms.bean.HrmPrmKPAPoswiseDtlBean;
|
||||
import wenrgise.hrms.bean.HrmPrmKPARatingHdrBean;
|
||||
import wenrgise.hrms.ejb.facade.HrmSecondFacade;
|
||||
import wenrgise.hrms.ejb.facade.HrmSecondFacadeHome;
|
||||
import wenrgise.hrms.vo.HrmPrmKPARatingQVO;
|
||||
|
||||
public class HrmPrmKPARatingBD extends HrmBaseBD {
|
||||
public RecordMetaInfo getHeaderMetaImpl(BaseQueryVO oQueryVO) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
try {
|
||||
HrmSecondFacadeHome oHome = (HrmSecondFacadeHome)ServiceLocator.getLocator().getService("HrmSecondFacade");
|
||||
HrmSecondFacade oHrmSecondFacade = oHome.create();
|
||||
return oHrmSecondFacade.getKPARatingHeaderMetaInfo((HrmPrmKPARatingQVO)oQueryVO);
|
||||
} catch (RemoteException oRe) {
|
||||
throw new EnrgiseSystemException(oRe);
|
||||
} catch (CreateException oCrt) {
|
||||
throw new EnrgiseSystemException(oCrt);
|
||||
}
|
||||
}
|
||||
|
||||
public ArrayList getHeaderRecordImpl(BaseQueryVO oQueryVO, long lStartPosition, long lLastPosition) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
||||
try {
|
||||
HrmSecondFacadeHome oHome = (HrmSecondFacadeHome)ServiceLocator.getLocator().getService("HrmSecondFacade");
|
||||
HrmSecondFacade oHrmSecondFacade = oHome.create();
|
||||
ArrayList oHeaderList = oHrmSecondFacade.getKPARatingHeaderInfo((HrmPrmKPARatingQVO)oQueryVO, lStartPosition, lLastPosition);
|
||||
return oHeaderList;
|
||||
} catch (RemoteException oRe) {
|
||||
throw new EnrgiseSystemException(oRe);
|
||||
} catch (CreateException oCrt) {
|
||||
throw new EnrgiseSystemException(oCrt);
|
||||
}
|
||||
}
|
||||
|
||||
public RecordMetaInfo getTotalDetailRecordCountImpl(String lPrimaryKey, String sScreenName) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
try {
|
||||
HrmSecondFacadeHome oHome = (HrmSecondFacadeHome)ServiceLocator.getLocator().getService("HrmSecondFacade");
|
||||
HrmSecondFacade oHrmSecondFacade = oHome.create();
|
||||
RecordMetaInfo oRecordMetaInfo = new RecordMetaInfo();
|
||||
if (sScreenName.equalsIgnoreCase("HrmPrmKPARating")) {
|
||||
oRecordMetaInfo = oHrmSecondFacade.getPrmKPARatingPosDetailMetaInfo(lPrimaryKey);
|
||||
} else {
|
||||
oRecordMetaInfo = oHrmSecondFacade.getPrmKPARatingFinDetailMetaInfo(lPrimaryKey);
|
||||
}
|
||||
return oRecordMetaInfo;
|
||||
} catch (RemoteException oRe) {
|
||||
throw new EnrgiseSystemException(oRe);
|
||||
} catch (CreateException oCrt) {
|
||||
throw new EnrgiseSystemException(oCrt);
|
||||
}
|
||||
}
|
||||
|
||||
public ArrayList getDetailRecordImpl(String lPrimaryKey, String sScreenName, long lAbsoluteStart, long lAbsoluteEnd) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
||||
try {
|
||||
HrmSecondFacadeHome oHome = (HrmSecondFacadeHome)ServiceLocator.getLocator().getService("HrmSecondFacade");
|
||||
HrmSecondFacade oHrmSecondFacade = oHome.create();
|
||||
ArrayList oDetailList = new ArrayList();
|
||||
if (sScreenName.equalsIgnoreCase("HrmPrmKPARating")) {
|
||||
oDetailList = oHrmSecondFacade.getPrmKPARatingPosDetail(lPrimaryKey, lAbsoluteStart, lAbsoluteEnd);
|
||||
} else {
|
||||
oDetailList = oHrmSecondFacade.getPrmKPARatingFinDetail(lPrimaryKey, lAbsoluteStart, lAbsoluteEnd);
|
||||
}
|
||||
return oDetailList;
|
||||
} catch (RemoteException oRe) {
|
||||
throw new EnrgiseSystemException(oRe);
|
||||
} catch (CreateException oCrt) {
|
||||
throw new EnrgiseSystemException(oCrt);
|
||||
}
|
||||
}
|
||||
|
||||
public boolean updateHeaderRecordImpl(BaseHeaderBean oBaseHeaderBean) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
||||
return true;
|
||||
}
|
||||
|
||||
public String saveImpl(BaseHeaderBean oBaseHeaderBean, Timestamp oWhenPicked, String sScreenName, String sScreenMode, boolean bHeaderDataChanged, ArrayList oDetailBeanArray, boolean bDetailDataChanged, Timestamp oDetailPicked) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
||||
try {
|
||||
HrmSecondFacadeHome oHome = (HrmSecondFacadeHome)ServiceLocator.getLocator().getService("HrmSecondFacade");
|
||||
HrmSecondFacade oHrmSecondFacade = oHome.create();
|
||||
return oHrmSecondFacade.saveData((HrmPrmKPARatingHdrBean)oBaseHeaderBean, oWhenPicked, sScreenName, sScreenMode, bHeaderDataChanged, oDetailBeanArray, bDetailDataChanged, oDetailPicked, this.oUserInfo);
|
||||
} catch (CreateException oCrtExcep) {
|
||||
throw new EnrgiseSystemException(oCrtExcep);
|
||||
}
|
||||
}
|
||||
|
||||
public String getInsertDataImpl(BaseQueryVO oQueryVO) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
||||
return "Only Implementation";
|
||||
}
|
||||
|
||||
public Map getDisabledFieldsImpl(ThisPageVO oThisPageVO) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
HashMap oHashMap = new HashMap();
|
||||
ArrayList oEnableList = new ArrayList();
|
||||
ArrayList oDisableList = new ArrayList();
|
||||
ArrayList oList = oThisPageVO.getODetailList();
|
||||
int sCount = 0;
|
||||
ArrayList oDetailList = new ArrayList();
|
||||
oDisableList.add("butDelete");
|
||||
if (oThisPageVO.getScreenMode().equals("Q")) {
|
||||
oDisableList.add("butGrade");
|
||||
oDisableList.add("butDesig");
|
||||
}
|
||||
if (oThisPageVO.getScreenMode().equals("U")) {
|
||||
oDisableList.add("butGrade");
|
||||
oDisableList.add("butDesig");
|
||||
oDisableList.add("butRatingNo");
|
||||
if (oList != null)
|
||||
if (oThisPageVO.getScreenName().equalsIgnoreCase("HrmPrmKPARating")) {
|
||||
Iterator oIt = oList.iterator();
|
||||
while (oIt.hasNext()) {
|
||||
HrmPrmKPAPoswiseDtlBean oHrmPrmKPAPoswiseDtlBean = oIt.next();
|
||||
if (!oHrmPrmKPAPoswiseDtlBean.getStatus().equalsIgnoreCase("N"))
|
||||
oHrmPrmKPAPoswiseDtlBean.setDisabbutForPos("true");
|
||||
}
|
||||
}
|
||||
}
|
||||
oHashMap.put("D", oDisableList);
|
||||
oHashMap.put("E", oEnableList);
|
||||
return oHashMap;
|
||||
}
|
||||
|
||||
public String submitImpl(String sButtonName, BaseHeaderBean oBaseHeaderBean, Timestamp oWhenPicked, String sScreenName, String sScreenMode, boolean bHeaderDataChanged, ArrayList oDetailBeanArray, boolean bDetailDataChanged, Timestamp oDetailPicked) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
||||
return new String();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user