Files
HRMS/hrmsEjb/wenrgise/hrms/ejb/business/HrmOrgReligionMstBO.java
2025-07-28 13:56:49 +05:30

205 lines
9.5 KiB
Java

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.HrmOrgReligionMstDtlBean;
public class HrmOrgReligionMstBO extends HrmBaseBO {
public HrmOrgReligionMstBO() {}
public HrmOrgReligionMstBO(UserInfo oUserInfo) {
super(oUserInfo);
}
public RecordMetaInfo getHrmRelDtlMetaInfo(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, "HRMORGRELIGIONMST.proc_HrRelDtlCount(?,?,?,?,?)");
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 getHrmReligionDetailInfo(String lPrimaryKey, long lDetailFirstPosition, long lDetailLastPosition) throws EnrgiseApplicationException, EnrgiseSystemException {
ArrayList arylstParameters = new ArrayList();
DBUtilitiesBean oBean = new DBUtilitiesBean();
int count = 0;
BaseDetailVO oBaseDetailVO = null;
ArrayList arylstHrmRelDetail = 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, "HRMORGRELIGIONMST.proc_GetReligionDtl(?,?,?,?,?,?)");
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)
arylstHrmRelDetail = new ArrayList();
count++;
oRow = itrBean.next();
HrmOrgReligionMstDtlBean oReligionBean = new HrmOrgReligionMstDtlBean();
oReligionBean.setDetailId(oRow.get("ID").getString());
oReligionBean.setTxtReligionName(oRow.get("DESCRIPTION").getString());
arylstHrmRelDetail.add(oReligionBean);
}
return arylstHrmRelDetail;
}
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_RELIGION_MST";
}
public void saveDetailImpl(String sHeaderPrimaryKey, String sScreenName, ArrayList arylstDetailBeanArray) throws EnrgiseSystemException {
if (sScreenName.equalsIgnoreCase("HrmOrgReligionMst"))
saveHrmReligionDetail(arylstDetailBeanArray);
}
private void saveHrmReligionDetail(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()) {
HrmOrgReligionMstDtlBean oHrmOrgReligionMstDtlBean = itrBean.next();
if (oHrmOrgReligionMstDtlBean.getStatus().equals("N")) {
if (!bInsert) {
oBean = new DBUtilitiesBean();
oBean.createBatch("HRMORGRELIGIONMST.proc_UpsertHrReligionMst(?,?,?,?,?)");
bInsert = true;
}
arylstParameters = new ArrayList();
arylstParameters.add(new DBObject(1, 1, 12, "I"));
arylstParameters.add(new DBObject(2, 1, 12, null));
arylstParameters.add(new DBObject(3, 1, 12, oHrmOrgReligionMstDtlBean.getTxtReligionName()));
arylstParameters.add(new DBObject(4, 1, 12, this.oUserInfo.getUserTypeId()));
arylstParameters.add(new DBObject(5, 1, 12, this.oUserInfo.getSiteId()));
oBean.addToBatch(arylstParameters);
continue;
}
if (oHrmOrgReligionMstDtlBean.getStatus().equals("U")) {
if (!bUpdate) {
oBean = new DBUtilitiesBean();
oBean.createBatch("HRMORGRELIGIONMST.proc_UpsertHrReligionMst(?,?,?,?,?)");
bUpdate = true;
}
arylstParameters = new ArrayList();
arylstParameters.add(new DBObject(1, 1, 12, "U"));
arylstParameters.add(new DBObject(2, 1, 12, oHrmOrgReligionMstDtlBean.getDetailId()));
arylstParameters.add(new DBObject(3, 1, 12, oHrmOrgReligionMstDtlBean.getTxtReligionName()));
arylstParameters.add(new DBObject(4, 1, 12, this.oUserInfo.getUserTypeId()));
arylstParameters.add(new DBObject(5, 1, 12, this.oUserInfo.getSiteId()));
oBean.addToBatch(arylstParameters);
continue;
}
if (oHrmOrgReligionMstDtlBean.getStatus().equals("D")) {
if (!bDelete) {
oBean1 = new DBUtilitiesBean();
oBean1.createBatch("HRMORGRELIGIONMST.proc_DeleteRelMst(?)");
bDelete = true;
}
arylstParameters = new ArrayList();
arylstParameters.add(new DBObject(1, 1, 12, oHrmOrgReligionMstDtlBean.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("HrmOrgReligionMst")) {
Iterator itrBean1 = arylstDetailBeanArray.iterator();
int iCount = 1;
while (itrBean1.hasNext()) {
HrmOrgReligionMstDtlBean oHrmOrgReligionMstDtlBean = itrBean1.next();
if (!oHrmOrgReligionMstDtlBean.getStatus().equalsIgnoreCase("D"))
checkMandatory(oHrmOrgReligionMstDtlBean, iCount, arylstErrorList);
iCount++;
}
}
reportError(arylstErrorList);
}
private void checkMandatory(HrmOrgReligionMstDtlBean oHrmOrgReligionMstDtlBean, int iCount, ArrayList arylstErrorList) throws EnrgiseSystemException, EnrgiseApplicationException {
if (!EnrgiseUtil.checkString(oHrmOrgReligionMstDtlBean.getTxtReligionName())) {
MessageKey oMessageKey = new MessageKey("hrm.HrmReligionMaster.txtReligionName");
ArrayList oParams = new ArrayList();
oParams.add(oMessageKey);
oParams.add(new Integer(iCount));
arylstErrorList.add(new EnrgiseMessageKeyException("wenrgise.common.detail.mandatoryFieldMissing", oParams, "E"));
}
reportError(arylstErrorList);
}
public void additionalTimestampValidationImpl(BaseHeaderBean param1, Timestamp param2, String param3, String param4, boolean param5, ArrayList param6, boolean param7, Timestamp param8) {}
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("HrmOrgReligionMst")) {
Iterator itrBean1 = arylstDetailBeanArray.iterator();
while (itrBean1.hasNext()) {
HrmOrgReligionMstDtlBean oHrmOrgReligionMstDtlBean = itrBean1.next();
if (!oHrmOrgReligionMstDtlBean.getStatus().equalsIgnoreCase("D"))
EnrgiseUtil.checkDuplicate(arylstDetailBeanArray, "txtReligionName", "hrm.HrmReligionMaster.txtReligionName", arylstErrorList, true);
}
}
reportError(arylstErrorList);
}
}