129 lines
6.1 KiB
Java
129 lines
6.1 KiB
Java
package WEB-INF.classes.wenrgise.hrms.businessdelegate;
|
|
|
|
import java.rmi.RemoteException;
|
|
import java.sql.Timestamp;
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
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.HrmClaimMstHdrBean;
|
|
import wenrgise.hrms.businessdelegate.HrmBaseBD;
|
|
import wenrgise.hrms.ejb.facade.HrmFacade;
|
|
import wenrgise.hrms.ejb.facade.HrmFacadeHome;
|
|
import wenrgise.hrms.vo.HrmClaimMstQVO;
|
|
|
|
public class HrmClaimMstBD extends HrmBaseBD {
|
|
public RecordMetaInfo getHeaderMetaImpl(BaseQueryVO oQueryVO) throws EnrgiseApplicationException, EnrgiseSystemException {
|
|
try {
|
|
HrmFacadeHome oHome = (HrmFacadeHome)ServiceLocator.getLocator().getService("HrmFacade");
|
|
HrmFacade oHrmFacade = oHome.create();
|
|
return oHrmFacade.getHrmClaimMstHdrMetaInfo((HrmClaimMstQVO)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 {
|
|
HrmFacadeHome oHome = (HrmFacadeHome)ServiceLocator.getLocator().getService("HrmFacade");
|
|
HrmFacade oHrmFacade = oHome.create();
|
|
ArrayList oHeaderList = oHrmFacade.getHrmClaimMstHdrInfo((HrmClaimMstQVO)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 {
|
|
HrmFacadeHome oHome = (HrmFacadeHome)ServiceLocator.getLocator().getService("HrmFacade");
|
|
HrmFacade oHrmFacade = oHome.create();
|
|
return oHrmFacade.getHrmClaimMstDtlMetaInfo(lPrimaryKey);
|
|
} 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 {
|
|
HrmFacadeHome oHome = (HrmFacadeHome)ServiceLocator.getLocator().getService("HrmFacade");
|
|
HrmFacade oHrmFacade = oHome.create();
|
|
return oHrmFacade.getHrmClaimMstDtlInfo(lPrimaryKey, lAbsoluteStart, lAbsoluteEnd);
|
|
} 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 getInsertDataImpl(BaseQueryVO oQueryVO) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
|
return new String();
|
|
}
|
|
|
|
public Map getDisabledFieldsImpl(ThisPageVO oThisPageVO) throws EnrgiseApplicationException, EnrgiseSystemException {
|
|
HashMap oHashMap = new HashMap();
|
|
ArrayList oEnableList = new ArrayList();
|
|
ArrayList oDisableList = new ArrayList();
|
|
HrmClaimMstHdrBean oHrmClaimMstHdrBean = (HrmClaimMstHdrBean)oThisPageVO.getOHeaderBean();
|
|
ArrayList oDetailList = oThisPageVO.getODetailList();
|
|
if (!oHrmClaimMstHdrBean.equals(null))
|
|
if (oThisPageVO.getScreenMode().equalsIgnoreCase("Q")) {
|
|
oEnableList.add("butClaimCode");
|
|
oDisableList.add("claimCode");
|
|
oDisableList.add("claimName");
|
|
oDisableList.add("docReqFlag");
|
|
oDisableList.add("butCalendarCode");
|
|
oDisableList.add("payrollFlag");
|
|
} else if (oThisPageVO.getScreenMode().equalsIgnoreCase("U")) {
|
|
oDisableList.add("butClaimCode");
|
|
oEnableList.add("claimCode");
|
|
oEnableList.add("claimName");
|
|
oEnableList.add("docReqFlag");
|
|
oEnableList.add("butCalendarCode");
|
|
oEnableList.add("payrollFlag");
|
|
} else if (oThisPageVO.getScreenMode().equalsIgnoreCase("N")) {
|
|
oDisableList.add("butClaimCode");
|
|
oEnableList.add("claimCode");
|
|
oEnableList.add("claimName");
|
|
oEnableList.add("docReqFlag");
|
|
oEnableList.add("butCalendarCode");
|
|
oEnableList.add("payrollFlag");
|
|
}
|
|
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();
|
|
}
|
|
|
|
public String saveImpl(BaseHeaderBean oBaseHeaderBean, Timestamp oWhenPicked, String sScreenName, String sScreenMode, boolean bHeaderDataChanged, ArrayList oDetailBeanArray, boolean bDetailDataChanged, Timestamp oDetailPicked) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
|
try {
|
|
HrmFacadeHome oHome = (HrmFacadeHome)ServiceLocator.getLocator().getService("HrmFacade");
|
|
HrmFacade oHrmFacade = oHome.create();
|
|
String sHeaderPrimaryKey = oHrmFacade.saveHrmClaimMst((HrmClaimMstHdrBean)oBaseHeaderBean, oWhenPicked, sScreenName, sScreenMode, bHeaderDataChanged, oDetailBeanArray, bDetailDataChanged, oDetailPicked, this.oUserInfo);
|
|
return sHeaderPrimaryKey;
|
|
} catch (CreateException oCrtExcep) {
|
|
throw new EnrgiseSystemException(oCrtExcep);
|
|
}
|
|
}
|
|
}
|