package 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.HrmOrgWorkGroupMstHdrBean; import wenrgise.hrms.ejb.facade.HrmFacade; import wenrgise.hrms.ejb.facade.HrmFacadeHome; import wenrgise.hrms.vo.HrmOrgWorkGroupMstQVO; public class HrmOrgWorkGroupMstBD extends HrmBaseBD { public RecordMetaInfo getHeaderMetaImpl(BaseQueryVO oQueryVO) throws EnrgiseApplicationException, EnrgiseSystemException { try { HrmFacadeHome oHome = (HrmFacadeHome)ServiceLocator.getLocator().getService("HrmFacade"); HrmFacade oHrmFacade = oHome.create(); return oHrmFacade.getHrmOrgWorkGroupMstHeaderMetaInfo((HrmOrgWorkGroupMstQVO)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.getHrmOrgWorkGroupMstHeader((HrmOrgWorkGroupMstQVO)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 { RecordMetaInfo oRecordMetaInfo = null; return oRecordMetaInfo; } public ArrayList getDetailRecordImpl(String lPrimaryKey, String sScreenName, long lAbsoluteStart, long lAbsoluteEnd) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException { ArrayList oRet = null; return oRet; } 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 { HrmFacadeHome oHome = (HrmFacadeHome)ServiceLocator.getLocator().getService("HrmFacade"); HrmFacade oHrmFacade = oHome.create(); return oHrmFacade.saveHrmOrgWorkGroupMst((HrmOrgWorkGroupMstHdrBean)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 oDetailList = oThisPageVO.getODetailList(); HrmOrgWorkGroupMstHdrBean oHrmOrgWorkGroupMstHdrBean = (HrmOrgWorkGroupMstHdrBean)oThisPageVO.getOHeaderBean(); if (!oHrmOrgWorkGroupMstHdrBean.equals(null)) { if (oThisPageVO.getScreenMode().equalsIgnoreCase("Q")) { oDisableList.add("butDelete"); oDisableList.add("code"); oEnableList.add("butWorkGroupCode"); oDisableList.add("name"); oDisableList.add("butSiteCode"); oDisableList.add("deptFlag"); oDisableList.add("temporaryFlag"); oDisableList.add("butCostCode"); oDisableList.add("butContactEmployeeNo"); oDisableList.add("phone"); oDisableList.add("EMail"); oDisableList.add("fax"); oDisableList.add("textarea"); oDisableList.add("refDocNo"); oDisableList.add("butCreationDate"); oDisableList.add("butDocumentDate"); oDisableList.add("butEndDate"); oDisableList.add("specialRemarks"); } if (oThisPageVO.getScreenMode().equalsIgnoreCase("U")) { oDisableList.add("butDelete"); oDisableList.add("code"); oDisableList.add("butWorkGroupCode"); oEnableList.add("name"); oEnableList.add("butSiteCode"); oEnableList.add("deptFlag"); oEnableList.add("temporaryFlag"); oEnableList.add("butCostCode"); oEnableList.add("butContactEmployeeNo"); oEnableList.add("phone"); oEnableList.add("EMail"); oEnableList.add("fax"); oEnableList.add("textarea"); oEnableList.add("refDocNo"); oEnableList.add("butCreationDate"); oEnableList.add("butDocumentDate"); oEnableList.add("butEndDate"); oEnableList.add("specialRemarks"); } if (oThisPageVO.getScreenMode().equalsIgnoreCase("N")) { oDisableList.add("butDelete"); oEnableList.add("code"); oEnableList.add("name"); oDisableList.add("butWorkGroupCode"); oEnableList.add("butSiteCode"); oEnableList.add("deptFlag"); oEnableList.add("temporaryFlag"); oEnableList.add("butCostCode"); oEnableList.add("butContactEmployeeNo"); oEnableList.add("phone"); oEnableList.add("EMail"); oEnableList.add("fax"); oEnableList.add("textarea"); oEnableList.add("refDocNo"); oEnableList.add("butCreationDate"); oEnableList.add("butDocumentDate"); oEnableList.add("butEndDate"); oEnableList.add("specialRemarks"); } } 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(""); } }