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

215 lines
10 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.HrmOrgTehsilMstDtlBean;
public class HrmOrgTehMstBO extends HrmBaseBO {
public HrmOrgTehMstBO() {}
public HrmOrgTehMstBO(UserInfo oUserInfo) {
super(oUserInfo);
}
public RecordMetaInfo getHrmTehsilDtlMetaInfo(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, "HRMORGTEHSILMST.proc_HrTehsilDtlCount(?,?,?,?,?)");
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 getHrmTehsilDetailInfo(String lPrimaryKey, long lDetailFirstPosition, long lDetailLastPosition) throws EnrgiseApplicationException, EnrgiseSystemException {
ArrayList arylstParameters = new ArrayList();
DBUtilitiesBean oBean = new DBUtilitiesBean();
int count = 0;
BaseDetailVO oBaseDetailVO = null;
ArrayList arylstHrmTehsilDetail = 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, "HRMORGTEHSILMST.proc_GetTehsilDtl(?,?,?,?,?,?)");
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)
arylstHrmTehsilDetail = new ArrayList();
count++;
oRow = itrBean.next();
HrmOrgTehsilMstDtlBean oTehsilBean = new HrmOrgTehsilMstDtlBean();
oTehsilBean.setDetailId(oRow.get("ID").getString());
oTehsilBean.setTxtTehsilCode(oRow.get("CODE").getString());
oTehsilBean.setTxtTehsilName(oRow.get("DESCRIPTION").getString());
arylstHrmTehsilDetail.add(oTehsilBean);
}
return arylstHrmTehsilDetail;
}
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_TEHSIL_MST";
}
public void saveDetailImpl(String sHeaderPrimaryKey, String sScreenName, ArrayList arylstDetailBeanArray) throws EnrgiseSystemException {
if (sScreenName.equalsIgnoreCase("HrmOrgTehMst"))
saveHrmTehsilDetail(arylstDetailBeanArray);
}
private void saveHrmTehsilDetail(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()) {
HrmOrgTehsilMstDtlBean oHrmOrgTehMstDtlBean = itrBean.next();
if (oHrmOrgTehMstDtlBean.getStatus().equals("N")) {
if (!bInsert) {
oBean = new DBUtilitiesBean();
oBean.createBatch("HRMORGTEHSILMST.proc_UpsertHrTehsilMst(?,?,?,?,?,?)");
bInsert = true;
}
arylstParameters = new ArrayList();
arylstParameters.add(new DBObject(1, 1, 12, "I"));
arylstParameters.add(new DBObject(2, 1, 12, oHrmOrgTehMstDtlBean.getTxtTehsilCode()));
arylstParameters.add(new DBObject(3, 1, 12, oHrmOrgTehMstDtlBean.getTxtTehsilName()));
arylstParameters.add(new DBObject(4, 1, 12, this.oUserInfo.getUserTypeId()));
arylstParameters.add(new DBObject(5, 1, 12, this.oUserInfo.getSiteId()));
arylstParameters.add(new DBObject(6, 1, 12, null));
oBean.addToBatch(arylstParameters);
continue;
}
if (oHrmOrgTehMstDtlBean.getStatus().equals("U")) {
if (!bUpdate) {
oBean = new DBUtilitiesBean();
oBean.createBatch("HRMORGTEHSILMST.proc_UpsertHrTehsilMst(?,?,?,?,?,?)");
bUpdate = true;
}
arylstParameters = new ArrayList();
arylstParameters.add(new DBObject(1, 1, 12, "U"));
arylstParameters.add(new DBObject(2, 1, 12, oHrmOrgTehMstDtlBean.getTxtTehsilCode()));
arylstParameters.add(new DBObject(3, 1, 12, oHrmOrgTehMstDtlBean.getTxtTehsilName()));
arylstParameters.add(new DBObject(4, 1, 12, this.oUserInfo.getUserTypeId()));
arylstParameters.add(new DBObject(5, 1, 12, this.oUserInfo.getSiteId()));
arylstParameters.add(new DBObject(6, 1, 12, oHrmOrgTehMstDtlBean.getDetailId()));
oBean.addToBatch(arylstParameters);
continue;
}
if (oHrmOrgTehMstDtlBean.getStatus().equals("D")) {
if (!bDelete) {
oBean1 = new DBUtilitiesBean();
oBean1.createBatch("HRMORGTEHSILMST.proc_DeleteTehMst(?)");
bDelete = true;
}
arylstParameters = new ArrayList();
arylstParameters.add(new DBObject(1, 1, 12, oHrmOrgTehMstDtlBean.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("HrmOrgTehMst")) {
Iterator itrBean1 = arylstDetailBeanArray.iterator();
int iCount = 1;
while (itrBean1.hasNext()) {
HrmOrgTehsilMstDtlBean oHrmOrgTehMstDtlBean = itrBean1.next();
if (!oHrmOrgTehMstDtlBean.getStatus().equalsIgnoreCase("D"))
checkMandatory(oHrmOrgTehMstDtlBean, iCount, arylstErrorList);
iCount++;
}
}
reportError(arylstErrorList);
}
private void checkMandatory(HrmOrgTehsilMstDtlBean oHrmOrgTehMstDtlBean, int iCount, ArrayList arylstErrorList) throws EnrgiseSystemException, EnrgiseApplicationException {
if (!EnrgiseUtil.checkString(oHrmOrgTehMstDtlBean.getTxtTehsilCode())) {
MessageKey oMessageKey = new MessageKey("hrm.HrmTehsilMaster.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(oHrmOrgTehMstDtlBean.getTxtTehsilName())) {
MessageKey oMessageKey = new MessageKey("hrm.HrmTehsilMaster.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("HrmOrgTehMst")) {
Iterator itrBean1 = arylstDetailBeanArray.iterator();
while (itrBean1.hasNext()) {
HrmOrgTehsilMstDtlBean oHrmOrgTehMstDtlBean = itrBean1.next();
if (!oHrmOrgTehMstDtlBean.getStatus().equalsIgnoreCase("D"))
EnrgiseUtil.checkDuplicate(arylstDetailBeanArray, "txtTehsilCode", "hrm.HrmTehsilMaster.txtCode", arylstErrorList, true);
}
}
reportError(arylstErrorList);
}
public void additionalTimestampValidationImpl(BaseHeaderBean param1, Timestamp param2, String param3, String param4, boolean param5, ArrayList param6, boolean param7, Timestamp param8) {}
}