first commit
This commit is contained in:
217
hrmsEjb/wenrgise/hrms/ejb/business/HrmOrgLangMstBO.java
Normal file
217
hrmsEjb/wenrgise/hrms/ejb/business/HrmOrgLangMstBO.java
Normal file
@@ -0,0 +1,217 @@
|
||||
package wenrgise.hrms.ejb.business;
|
||||
|
||||
import java.sql.Timestamp;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
import wenrgise.common.exception.EnrgiseApplicationException;
|
||||
import wenrgise.common.exception.EnrgiseMessageKeyException;
|
||||
import wenrgise.common.exception.EnrgiseSystemException;
|
||||
import wenrgise.common.utility.EnrgiseUtil;
|
||||
import wenrgise.common.utility.MessageKey;
|
||||
import wenrgise.common.utility.RecordMetaInfo;
|
||||
import wenrgise.common.utility.UserInfo;
|
||||
import wenrgise.common.vo.BaseDetailVO;
|
||||
import wenrgise.ejb.common.helper.DBObject;
|
||||
import wenrgise.ejb.common.helper.QueryRow;
|
||||
import wenrgise.ejb.common.helper.QueryValue;
|
||||
import wenrgise.ejb.common.utility.DBUtilitiesBean;
|
||||
import wenrgise.hrms.bean.HrmOrgLangMstDtlBean;
|
||||
|
||||
public class HrmOrgLangMstBO extends HrmBaseBO {
|
||||
public HrmOrgLangMstBO() {}
|
||||
|
||||
public HrmOrgLangMstBO(UserInfo oUserInfo) {
|
||||
super(oUserInfo);
|
||||
}
|
||||
|
||||
public RecordMetaInfo getHrmLanguageDtlMetaInfo(String lPrimaryKey) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
ArrayList arylstParameters = new ArrayList();
|
||||
DBUtilitiesBean oBean = new DBUtilitiesBean();
|
||||
arylstParameters = new ArrayList();
|
||||
arylstParameters.add(new DBObject(1, 2, -5));
|
||||
arylstParameters.add(new DBObject(2, 2, 93));
|
||||
arylstParameters.add(new DBObject(3, 2, 12));
|
||||
arylstParameters.add(new DBObject(4, 2, 12));
|
||||
arylstParameters.add(new DBObject(5, 2, 4));
|
||||
ArrayList arylstOutArray = oBean.callProc(arylstParameters, "HRMORGLANGUAGEMST.proc_HrLanguageDtlCount(?,?,?,?,?)");
|
||||
RecordMetaInfo oRecordMetaInfo = new RecordMetaInfo();
|
||||
DBObject oTotalRecord = arylstOutArray.get(0);
|
||||
oRecordMetaInfo.setRecordCount(((Long)oTotalRecord.getObject()).longValue());
|
||||
DBObject oTimeObject = arylstOutArray.get(1);
|
||||
oRecordMetaInfo.setOWhenPicked((Timestamp)oTimeObject.getObject());
|
||||
return oRecordMetaInfo;
|
||||
}
|
||||
|
||||
public ArrayList getHrmLanguageDetailInfo(String lPrimaryKey, long lDetailFirstPosition, long lDetailLastPosition) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
ArrayList arylstParameters = new ArrayList();
|
||||
DBUtilitiesBean oBean = new DBUtilitiesBean();
|
||||
int count = 0;
|
||||
BaseDetailVO oBaseDetailVO = null;
|
||||
ArrayList arylstHrmLanguageDetail = null;
|
||||
arylstParameters = new ArrayList();
|
||||
arylstParameters.add(new DBObject(1, 1, -5, new Long(lDetailFirstPosition)));
|
||||
arylstParameters.add(new DBObject(2, 1, -5, new Long(lDetailLastPosition)));
|
||||
arylstParameters.add(new DBObject(3, 2, -10));
|
||||
arylstParameters.add(new DBObject(4, 2, 12));
|
||||
arylstParameters.add(new DBObject(5, 2, 12));
|
||||
arylstParameters.add(new DBObject(6, 2, 4));
|
||||
ArrayList arylstOutArray = oBean.callProc(arylstParameters, "HRMORGLANGUAGEMST.proc_GetLanguageDtl(?,?,?,?,?,?)");
|
||||
DBObject oOutObject = arylstOutArray.get(0);
|
||||
ArrayList arylstList = (ArrayList)oOutObject.getObject();
|
||||
if (arylstList.size() == 0)
|
||||
throw new EnrgiseApplicationException("wenrgise.hrms.norecordfound", "M");
|
||||
QueryRow oRow = null;
|
||||
QueryValue oValue = null;
|
||||
HashMap oColumns = null;
|
||||
Iterator itrBean = arylstList.iterator();
|
||||
while (itrBean.hasNext()) {
|
||||
if (count == 0)
|
||||
arylstHrmLanguageDetail = new ArrayList();
|
||||
count++;
|
||||
oRow = itrBean.next();
|
||||
HrmOrgLangMstDtlBean oLanguageBean = new HrmOrgLangMstDtlBean();
|
||||
oLanguageBean.setDetailId(oRow.get("ID").getString());
|
||||
oLanguageBean.setTxtCode(oRow.get("CODE").getString());
|
||||
oLanguageBean.setTxtDescription(oRow.get("DESCRIPTION").getString());
|
||||
oLanguageBean.setTxtLanguageType(oRow.get("LANGUAGE_TYPE").getString());
|
||||
arylstHrmLanguageDetail.add(oLanguageBean);
|
||||
}
|
||||
return arylstHrmLanguageDetail;
|
||||
}
|
||||
|
||||
public void updateHeaderImpl(BaseHeaderBean oBaseHeaderBean) throws EnrgiseSystemException {
|
||||
System.out.println("Update ille!");
|
||||
}
|
||||
|
||||
public String saveNewHeaderImpl(BaseHeaderBean oBaseHeaderBean) throws EnrgiseSystemException {
|
||||
return "saveNewHeaderImpl ille!";
|
||||
}
|
||||
|
||||
public String saveHeaderImpl(BaseHeaderBean oBaseHeaderBean, String param1) throws EnrgiseSystemException {
|
||||
return "true";
|
||||
}
|
||||
|
||||
public void initializeBOImpl() {
|
||||
this.headerTable = "HRM_lANGUAGE_MST";
|
||||
}
|
||||
|
||||
public void saveDetailImpl(String sHeaderPrimaryKey, String sScreenName, ArrayList arylstDetailBeanArray) throws EnrgiseSystemException {
|
||||
if (sScreenName.equalsIgnoreCase("HrmOrgLangMst"))
|
||||
saveHrmLanguageDetail(arylstDetailBeanArray);
|
||||
}
|
||||
|
||||
private void saveHrmLanguageDetail(ArrayList arylstDetailBeanArray) throws EnrgiseSystemException {
|
||||
boolean bInsert = false;
|
||||
boolean bUpdate = false;
|
||||
boolean bDelete = false;
|
||||
ArrayList arylstParameters = new ArrayList();
|
||||
DBUtilitiesBean oBean = null;
|
||||
DBUtilitiesBean oBean1 = null;
|
||||
Iterator itrBean = arylstDetailBeanArray.iterator();
|
||||
while (itrBean.hasNext()) {
|
||||
HrmOrgLangMstDtlBean oHrmOrgLangMstDtlBean = itrBean.next();
|
||||
if (oHrmOrgLangMstDtlBean.getStatus().equals("N")) {
|
||||
if (!bInsert) {
|
||||
oBean = new DBUtilitiesBean();
|
||||
oBean.createBatch("HRMORGLANGUAGEMST.proc_UpsertHrLanguageMst(?,?,?,?,?,?,?)");
|
||||
bInsert = true;
|
||||
}
|
||||
arylstParameters = new ArrayList();
|
||||
arylstParameters.add(new DBObject(1, 1, 12, "I"));
|
||||
arylstParameters.add(new DBObject(2, 1, 12, oHrmOrgLangMstDtlBean.getTxtCode()));
|
||||
arylstParameters.add(new DBObject(3, 1, 12, oHrmOrgLangMstDtlBean.getTxtDescription()));
|
||||
arylstParameters.add(new DBObject(4, 1, 12, "N"));
|
||||
arylstParameters.add(new DBObject(5, 1, 12, this.oUserInfo.getUserTypeId()));
|
||||
arylstParameters.add(new DBObject(6, 1, 12, this.oUserInfo.getSiteId()));
|
||||
arylstParameters.add(new DBObject(7, 1, 12, null));
|
||||
oBean.addToBatch(arylstParameters);
|
||||
continue;
|
||||
}
|
||||
if (oHrmOrgLangMstDtlBean.getStatus().equals("U")) {
|
||||
if (!bUpdate) {
|
||||
oBean = new DBUtilitiesBean();
|
||||
oBean.createBatch("HRMORGLANGUAGEMST.proc_UpsertHrLanguageMst(?,?,?,?,?,?,?)");
|
||||
bUpdate = true;
|
||||
}
|
||||
arylstParameters = new ArrayList();
|
||||
arylstParameters.add(new DBObject(1, 1, 12, "U"));
|
||||
arylstParameters.add(new DBObject(2, 1, 12, oHrmOrgLangMstDtlBean.getTxtCode()));
|
||||
arylstParameters.add(new DBObject(3, 1, 12, oHrmOrgLangMstDtlBean.getTxtDescription()));
|
||||
arylstParameters.add(new DBObject(4, 1, 12, "N"));
|
||||
arylstParameters.add(new DBObject(5, 1, 12, this.oUserInfo.getUserTypeId()));
|
||||
arylstParameters.add(new DBObject(6, 1, 12, this.oUserInfo.getSiteId()));
|
||||
arylstParameters.add(new DBObject(7, 1, 12, oHrmOrgLangMstDtlBean.getDetailId()));
|
||||
oBean.addToBatch(arylstParameters);
|
||||
continue;
|
||||
}
|
||||
if (oHrmOrgLangMstDtlBean.getStatus().equals("D")) {
|
||||
if (!bDelete) {
|
||||
oBean1 = new DBUtilitiesBean();
|
||||
oBean1.createBatch("HRMORGLANGUAGEMST.proc_DeleteLangMst(?)");
|
||||
bDelete = true;
|
||||
}
|
||||
arylstParameters = new ArrayList();
|
||||
arylstParameters.add(new DBObject(1, 1, 12, oHrmOrgLangMstDtlBean.getDetailId()));
|
||||
oBean1.addToBatch(arylstParameters);
|
||||
}
|
||||
}
|
||||
if (bInsert)
|
||||
oBean.executeBatch();
|
||||
if (bUpdate)
|
||||
oBean.executeBatch();
|
||||
if (bDelete)
|
||||
oBean1.executeBatch();
|
||||
}
|
||||
|
||||
public void additionalFieldValidationImpl(BaseHeaderBean oBaseHeaderBean, Timestamp oWhenPicked, String sScreenName, String sScreenMode, boolean bHeaderDataChanged, ArrayList arylstDetailBeanArray, boolean bDetailDataChanged, Timestamp oDetailPicked) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
ArrayList arylstErrorList = new ArrayList();
|
||||
if (bDetailDataChanged)
|
||||
if (sScreenName.equalsIgnoreCase("HrmOrgLangMst")) {
|
||||
Iterator itrBean1 = arylstDetailBeanArray.iterator();
|
||||
int iCount = 1;
|
||||
while (itrBean1.hasNext()) {
|
||||
HrmOrgLangMstDtlBean oHrmOrgLangMstDtlBean = itrBean1.next();
|
||||
if (!oHrmOrgLangMstDtlBean.getStatus().equalsIgnoreCase("D"))
|
||||
checkMandatory(oHrmOrgLangMstDtlBean, iCount, arylstErrorList);
|
||||
iCount++;
|
||||
}
|
||||
}
|
||||
reportError(arylstErrorList);
|
||||
}
|
||||
|
||||
private void checkMandatory(HrmOrgLangMstDtlBean oHrmOrgLangMstDtlBean, int iCount, ArrayList arylstErrorList) throws EnrgiseSystemException, EnrgiseApplicationException {
|
||||
if (!EnrgiseUtil.checkString(oHrmOrgLangMstDtlBean.getTxtCode())) {
|
||||
MessageKey oMessageKey = new MessageKey("hrm.HrmLanguageMaster.txtCode");
|
||||
ArrayList oParams = new ArrayList();
|
||||
oParams.add(oMessageKey);
|
||||
oParams.add(new Integer(iCount));
|
||||
arylstErrorList.add(new EnrgiseMessageKeyException("wenrgise.common.detail.mandatoryFieldMissing", oParams, "E"));
|
||||
}
|
||||
if (!EnrgiseUtil.checkString(oHrmOrgLangMstDtlBean.getTxtDescription())) {
|
||||
MessageKey oMessageKey = new MessageKey("hrm.HrmLanguageMaster.txtDescription");
|
||||
ArrayList oParams = new ArrayList();
|
||||
oParams.add(oMessageKey);
|
||||
oParams.add(String.valueOf(iCount));
|
||||
arylstErrorList.add(new EnrgiseMessageKeyException("wenrgise.common.detail.mandatoryFieldMissing", oParams, "E"));
|
||||
}
|
||||
reportError(arylstErrorList);
|
||||
}
|
||||
|
||||
public void additionalBusinessValidationImpl(BaseHeaderBean oBaseHeaderBean, Timestamp oWhenPicked, String sScreenName, String sScreenMode, boolean bHeaderDataChanged, ArrayList arylstDetailBeanArray, boolean bDetailDataChanged, Timestamp oDetailPicked) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
ArrayList arylstErrorList = new ArrayList();
|
||||
if (bDetailDataChanged)
|
||||
if (sScreenName.equalsIgnoreCase("HrmOrgLangMst")) {
|
||||
Iterator itrBean1 = arylstDetailBeanArray.iterator();
|
||||
while (itrBean1.hasNext()) {
|
||||
HrmOrgLangMstDtlBean oHrmOrgLangMstDtlBean = itrBean1.next();
|
||||
if (!oHrmOrgLangMstDtlBean.getStatus().equalsIgnoreCase("D"))
|
||||
EnrgiseUtil.checkDuplicate(arylstDetailBeanArray, "txtCode", "hrm.HrmLanguageMaster.txtCode", arylstErrorList, true);
|
||||
}
|
||||
}
|
||||
reportError(arylstErrorList);
|
||||
}
|
||||
|
||||
public void additionalTimestampValidationImpl(BaseHeaderBean param1, Timestamp param2, String param3, String param4, boolean param5, ArrayList param6, boolean param7, Timestamp param8) {}
|
||||
}
|
Reference in New Issue
Block a user