first commit
This commit is contained in:
@@ -0,0 +1,142 @@
|
||||
package WEB-INF.classes.wenrgise.hrms.businessdelegate;
|
||||
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
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 org.apache.commons.beanutils.BeanUtils;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
import wenrgise.common.exception.EnrgiseApplicationException;
|
||||
import wenrgise.common.exception.EnrgiseSystemException;
|
||||
import wenrgise.common.utility.EnrgiseUtil;
|
||||
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.HrmPrmCriteriaHdrBean;
|
||||
import wenrgise.hrms.businessdelegate.HrmBaseBD;
|
||||
import wenrgise.hrms.ejb.facade.HrmSecondFacade;
|
||||
import wenrgise.hrms.ejb.facade.HrmSecondFacadeHome;
|
||||
import wenrgise.hrms.vo.HrmPrmCriteriaQVO;
|
||||
|
||||
public class HrmPrmCriteriaBD extends HrmBaseBD {
|
||||
public RecordMetaInfo getHeaderMetaImpl(BaseQueryVO oQueryVO) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
RecordMetaInfo oInfo = new RecordMetaInfo();
|
||||
try {
|
||||
HrmSecondFacadeHome oHome = (HrmSecondFacadeHome)ServiceLocator.getLocator().getService("HrmSecondFacade");
|
||||
HrmSecondFacade oHrmSecondFacade = oHome.create();
|
||||
oInfo.setRecordCount(1L);
|
||||
oInfo.setOWhenPicked(null);
|
||||
return null;
|
||||
} 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 {
|
||||
ArrayList oHeaderList = null;
|
||||
HrmPrmCriteriaQVO oVo = (HrmPrmCriteriaQVO)oQueryVO;
|
||||
HrmPrmCriteriaHdrBean oBean = new HrmPrmCriteriaHdrBean();
|
||||
BeanUtils.copyProperties(oBean, oVo);
|
||||
oHeaderList.add(oBean);
|
||||
return oHeaderList;
|
||||
} catch (InvocationTargetException oEx) {
|
||||
throw new EnrgiseSystemException(oEx);
|
||||
} catch (IllegalAccessException oEx) {
|
||||
throw new EnrgiseSystemException(oEx);
|
||||
}
|
||||
}
|
||||
|
||||
public RecordMetaInfo getTotalDetailRecordCountImpl(String lPrimaryKey, String sScreenName) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
return null;
|
||||
}
|
||||
|
||||
public RecordMetaInfo getTotalDetailRecordCountImpl(BaseQueryVO oQVO, String sScreenName) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
try {
|
||||
HrmSecondFacadeHome oHome = (HrmSecondFacadeHome)ServiceLocator.getLocator().getService("HrmSecondFacade");
|
||||
HrmSecondFacade oHrmSecondFacade = oHome.create();
|
||||
return oHrmSecondFacade.getHrmPrmCriteriaDetailMetaInfo((HrmPrmCriteriaQVO)oQVO);
|
||||
} 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 {
|
||||
return null;
|
||||
}
|
||||
|
||||
public ArrayList getDetailRecordImpl(BaseQueryVO oQVO, String sScreenName, long lAbsoluteStart, long lAbsoluteEnd) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
||||
try {
|
||||
HrmSecondFacadeHome oHome = (HrmSecondFacadeHome)ServiceLocator.getLocator().getService("HrmSecondFacade");
|
||||
HrmSecondFacade oHrmSecondFacade = oHome.create();
|
||||
return oHrmSecondFacade.getHrmPrmCriteriaDetailInfo((HrmPrmCriteriaQVO)oQVO, 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 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((HrmPrmCriteriaHdrBean)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 void onLoadAction(ThisPageVO oThisPageVO) {}
|
||||
|
||||
public Map getDisabledFieldsImpl(ThisPageVO oThisPageVO) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
HashMap oHashMap = new HashMap();
|
||||
ArrayList arylstEnab = new ArrayList();
|
||||
ArrayList arylstDisab = new ArrayList();
|
||||
HrmPrmCriteriaHdrBean oHdrBean = (HrmPrmCriteriaHdrBean)oThisPageVO.getOHeaderBean();
|
||||
arylstEnab.add("butQuery");
|
||||
arylstDisab.add("butExecute");
|
||||
arylstDisab.add("butDelete");
|
||||
arylstDisab.add("butInsert");
|
||||
if (oThisPageVO.getScreenMode().equals("Q")) {
|
||||
if (EnrgiseUtil.checkString(oHdrBean.getHeaderPrimaryKey())) {
|
||||
arylstEnab.add("butToGrade");
|
||||
if (EnrgiseUtil.checkString(oHdrBean.getToGradeId()) && EnrgiseUtil.checkString(oHdrBean.getToDesigId())) {
|
||||
arylstEnab.add("butGetDetail");
|
||||
} else {
|
||||
arylstDisab.add("butGetDetail");
|
||||
}
|
||||
} else {
|
||||
arylstDisab.add("butToGrade");
|
||||
}
|
||||
if (EnrgiseUtil.checkString(oHdrBean.getFromDesigId())) {
|
||||
arylstEnab.add("butToDesig");
|
||||
} else {
|
||||
arylstDisab.add("butToDesig");
|
||||
}
|
||||
}
|
||||
oHashMap.put("E", arylstEnab);
|
||||
oHashMap.put("D", arylstDisab);
|
||||
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