first commit
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDocMstAttrDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtAttrName;
|
||||
|
||||
private String txtType;
|
||||
|
||||
private String txtDesc;
|
||||
|
||||
private String docTypeHdrId;
|
||||
|
||||
public String txtLovKey;
|
||||
|
||||
public String getTxtAttrName() {
|
||||
return this.txtAttrName;
|
||||
}
|
||||
|
||||
public void setTxtAttrName(String newTxtAttrName) {
|
||||
this.txtAttrName = newTxtAttrName;
|
||||
}
|
||||
|
||||
public String getTxtType() {
|
||||
return this.txtType;
|
||||
}
|
||||
|
||||
public void setTxtType(String newTxtType) {
|
||||
this.txtType = newTxtType;
|
||||
}
|
||||
|
||||
public String getTxtDesc() {
|
||||
return this.txtDesc;
|
||||
}
|
||||
|
||||
public void setTxtDesc(String newTxtDesc) {
|
||||
this.txtDesc = newTxtDesc;
|
||||
}
|
||||
|
||||
public String getDocTypeHdrId() {
|
||||
return this.docTypeHdrId;
|
||||
}
|
||||
|
||||
public void setDocTypeHdrId(String newDocTypeHdrId) {
|
||||
this.docTypeHdrId = newDocTypeHdrId;
|
||||
}
|
||||
|
||||
public String getTxtLovKey() {
|
||||
return this.txtLovKey;
|
||||
}
|
||||
|
||||
public void setTxtLovKey(String newTxtLovKey) {
|
||||
this.txtLovKey = newTxtLovKey;
|
||||
}
|
||||
}
|
@@ -0,0 +1,26 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDocMstConditionsDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String docTypeDtlDesc;
|
||||
|
||||
private String conditionExpression;
|
||||
|
||||
public String getDocTypeDtlDesc() {
|
||||
return this.docTypeDtlDesc;
|
||||
}
|
||||
|
||||
public void setDocTypeDtlDesc(String newDocTypeDtlDesc) {
|
||||
this.docTypeDtlDesc = newDocTypeDtlDesc;
|
||||
}
|
||||
|
||||
public String getConditionExpression() {
|
||||
return this.conditionExpression;
|
||||
}
|
||||
|
||||
public void setConditionExpression(String newConditionExpression) {
|
||||
this.conditionExpression = newConditionExpression;
|
||||
}
|
||||
}
|
@@ -0,0 +1,46 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class WflDocMstHdrBean extends BaseHeaderBean implements Serializable {
|
||||
String documentDesc;
|
||||
|
||||
String documentCode;
|
||||
|
||||
private String screenName;
|
||||
|
||||
String maxAppLevel;
|
||||
|
||||
public String getDocumentDesc() {
|
||||
return this.documentDesc;
|
||||
}
|
||||
|
||||
public void setDocumentDesc(String newDocumentDesc) {
|
||||
this.documentDesc = newDocumentDesc;
|
||||
}
|
||||
|
||||
public String getDocumentCode() {
|
||||
return this.documentCode;
|
||||
}
|
||||
|
||||
public void setDocumentCode(String newDocumentCode) {
|
||||
this.documentCode = newDocumentCode;
|
||||
}
|
||||
|
||||
public String getScreenName() {
|
||||
return this.screenName;
|
||||
}
|
||||
|
||||
public void setScreenName(String newScreenName) {
|
||||
this.screenName = newScreenName;
|
||||
}
|
||||
|
||||
public String getMaxAppLevel() {
|
||||
return this.maxAppLevel;
|
||||
}
|
||||
|
||||
public void setMaxAppLevel(String newMaxAppLevel) {
|
||||
this.maxAppLevel = newMaxAppLevel;
|
||||
}
|
||||
}
|
@@ -0,0 +1,36 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDocTypeDtlBean extends BaseDetailBean implements Serializable {
|
||||
public String txtCode;
|
||||
|
||||
public String txtDesc;
|
||||
|
||||
public String txtActFlag;
|
||||
|
||||
public String getTxtCode() {
|
||||
return this.txtCode;
|
||||
}
|
||||
|
||||
public void setTxtCode(String newTxtCode) {
|
||||
this.txtCode = newTxtCode;
|
||||
}
|
||||
|
||||
public String getTxtDesc() {
|
||||
return this.txtDesc;
|
||||
}
|
||||
|
||||
public void setTxtDesc(String newTxtDesc) {
|
||||
this.txtDesc = newTxtDesc;
|
||||
}
|
||||
|
||||
public String getTxtActFlag() {
|
||||
return this.txtActFlag;
|
||||
}
|
||||
|
||||
public void setTxtActFlag(String newTxtActFlag) {
|
||||
this.txtActFlag = newTxtActFlag;
|
||||
}
|
||||
}
|
@@ -0,0 +1,76 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDtlDocTypeDtlBean extends BaseDetailBean implements Serializable {
|
||||
public String txtDtlDocCode;
|
||||
|
||||
public String txtDtlDocDesc;
|
||||
|
||||
public String txtConDesc;
|
||||
|
||||
public String txtExp;
|
||||
|
||||
public String txtPriority;
|
||||
|
||||
public String txtConditionId;
|
||||
|
||||
String disabbutCondDesc;
|
||||
|
||||
public String getTxtDtlDocCode() {
|
||||
return this.txtDtlDocCode;
|
||||
}
|
||||
|
||||
public void setTxtDtlDocCode(String newTxtDtlDocCode) {
|
||||
this.txtDtlDocCode = newTxtDtlDocCode;
|
||||
}
|
||||
|
||||
public String getTxtDtlDocDesc() {
|
||||
return this.txtDtlDocDesc;
|
||||
}
|
||||
|
||||
public void setTxtDtlDocDesc(String newTxtDtlDocDesc) {
|
||||
this.txtDtlDocDesc = newTxtDtlDocDesc;
|
||||
}
|
||||
|
||||
public String getTxtConDesc() {
|
||||
return this.txtConDesc;
|
||||
}
|
||||
|
||||
public void setTxtConDesc(String newTxtConDesc) {
|
||||
this.txtConDesc = newTxtConDesc;
|
||||
}
|
||||
|
||||
public String getTxtExp() {
|
||||
return this.txtExp;
|
||||
}
|
||||
|
||||
public void setTxtExp(String newTxtExp) {
|
||||
this.txtExp = newTxtExp;
|
||||
}
|
||||
|
||||
public String getTxtPriority() {
|
||||
return this.txtPriority;
|
||||
}
|
||||
|
||||
public void setTxtPriority(String newTxtPriority) {
|
||||
this.txtPriority = newTxtPriority;
|
||||
}
|
||||
|
||||
public String getTxtConditionId() {
|
||||
return this.txtConditionId;
|
||||
}
|
||||
|
||||
public void setTxtConditionId(String newTxtConditionId) {
|
||||
this.txtConditionId = newTxtConditionId;
|
||||
}
|
||||
|
||||
public String getDisabbutCondDesc() {
|
||||
return this.disabbutCondDesc;
|
||||
}
|
||||
|
||||
public void setDisabbutCondDesc(String newDisabbutCondDesc) {
|
||||
this.disabbutCondDesc = newDisabbutCondDesc;
|
||||
}
|
||||
}
|
@@ -0,0 +1,3 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.bean;
|
||||
|
||||
public class WflDtlDocTypeHdrBean {}
|
@@ -0,0 +1,96 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.workflow.utility.Node;
|
||||
|
||||
public class WflWorkListInfoBean implements Serializable {
|
||||
String docTypeCode;
|
||||
|
||||
String docId;
|
||||
|
||||
Node oNode;
|
||||
|
||||
String creatorempId;
|
||||
|
||||
String requestorEmpId;
|
||||
|
||||
String siteId;
|
||||
|
||||
String lastEmpId;
|
||||
|
||||
String assignedOn;
|
||||
|
||||
String status;
|
||||
|
||||
public String getDocTypeCode() {
|
||||
return this.docTypeCode;
|
||||
}
|
||||
|
||||
public void setDocTypeCode(String newDocTypeCode) {
|
||||
this.docTypeCode = newDocTypeCode;
|
||||
}
|
||||
|
||||
public String getDocId() {
|
||||
return this.docId;
|
||||
}
|
||||
|
||||
public void setDocId(String newDocId) {
|
||||
this.docId = newDocId;
|
||||
}
|
||||
|
||||
public Node getONode() {
|
||||
return this.oNode;
|
||||
}
|
||||
|
||||
public void setONode(Node newONode) {
|
||||
this.oNode = newONode;
|
||||
}
|
||||
|
||||
public String getCreatorempId() {
|
||||
return this.creatorempId;
|
||||
}
|
||||
|
||||
public void setCreatorempId(String newCreatorempId) {
|
||||
this.creatorempId = newCreatorempId;
|
||||
}
|
||||
|
||||
public String getRequestorEmpId() {
|
||||
return this.requestorEmpId;
|
||||
}
|
||||
|
||||
public void setRequestorEmpId(String newRequestorEmpId) {
|
||||
this.requestorEmpId = newRequestorEmpId;
|
||||
}
|
||||
|
||||
public String getSiteId() {
|
||||
return this.siteId;
|
||||
}
|
||||
|
||||
public void setSiteId(String newSiteId) {
|
||||
this.siteId = newSiteId;
|
||||
}
|
||||
|
||||
public String getLastEmpId() {
|
||||
return this.lastEmpId;
|
||||
}
|
||||
|
||||
public void setLastEmpId(String newLastEmpId) {
|
||||
this.lastEmpId = newLastEmpId;
|
||||
}
|
||||
|
||||
public String getAssignedOn() {
|
||||
return this.assignedOn;
|
||||
}
|
||||
|
||||
public void setAssignedOn(String newAssignedOn) {
|
||||
this.assignedOn = newAssignedOn;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(String newStatus) {
|
||||
this.status = newStatus;
|
||||
}
|
||||
}
|
@@ -0,0 +1,91 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.core;
|
||||
|
||||
public class WflConstants {
|
||||
public static final String APPROVE = "Approve";
|
||||
|
||||
public static final String SUBMIT = "Submit";
|
||||
|
||||
public static final String REJECT = "Reject";
|
||||
|
||||
public static final String REVISE = "Revise";
|
||||
|
||||
public static final String CLOSE = "Close";
|
||||
|
||||
public static final String CANCEL = "Cancel";
|
||||
|
||||
public static final String PI = "PurchaseIndent";
|
||||
|
||||
public static final String TE = "TenderEnquiry";
|
||||
|
||||
public static final String QT = "Quotation";
|
||||
|
||||
public static final String TEP = "TenderEnquiryProposal";
|
||||
|
||||
public static final String PP = "PurchaseProposal";
|
||||
|
||||
public static final String PO = "PurchaseOrder";
|
||||
|
||||
public static final String DO = "DeliveryOrder";
|
||||
|
||||
public static final String DS = "DeliverySchedule";
|
||||
|
||||
public static final String LEAVE = "Leave";
|
||||
|
||||
public static final String LOAN = "Loan";
|
||||
|
||||
public static final String APPRAISAL = "Appraisal";
|
||||
|
||||
public static final String ADVANCE = "Advance";
|
||||
|
||||
public static final String TRANSFER = "Transfer";
|
||||
|
||||
public static final String DEPUTATION = "Deputation";
|
||||
|
||||
public static final String SEPARATION = "Separation";
|
||||
|
||||
public static final String TRAINING = "Training";
|
||||
|
||||
public static final String MR = "Marerial Requisition";
|
||||
|
||||
public static final String GRS = "Good Receipt Sheet";
|
||||
|
||||
public static final String MRN = "Material Return Note";
|
||||
|
||||
public static final String MIN = "Material Issue Note";
|
||||
|
||||
public static final String STNIN = "Stores Transfer Note IN";
|
||||
|
||||
public static final String STNOUT = "Stores Transfer Note Out";
|
||||
|
||||
public static final String SAJ = "Stores Adjustment";
|
||||
|
||||
public static final String CHALLAN = "Challan";
|
||||
|
||||
public static final String RSV = "Reservation";
|
||||
|
||||
public static final String REJECTED = "Rejected";
|
||||
|
||||
public static final String PENDING = "Pending";
|
||||
|
||||
public static final String FINALLY_APPROVED = "FinallyApproved";
|
||||
|
||||
public static final String APPROVED = "Approved";
|
||||
|
||||
public static final String REVISED = "Revised";
|
||||
|
||||
public static final String CLOSED = "Closed";
|
||||
|
||||
public static final String INITIATED = "Initiated";
|
||||
|
||||
public static final String SUCCESS = "Success";
|
||||
|
||||
public static final String ERROR = "Error";
|
||||
|
||||
public static final String MAIL_SENT = "MailSent";
|
||||
|
||||
public static final String TRUE = "true";
|
||||
|
||||
public static final String FALSE = "false";
|
||||
|
||||
public static final String SYSTEM_MAIL_ADDRESS = "enrgise@tcs.com";
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.service;
|
||||
|
||||
import wenrgise.common.exception.EnrgiseApplicationException;
|
||||
import wenrgise.common.exception.EnrgiseSystemException;
|
||||
import wenrgise.workflow.bean.WflWorkListInfoBean;
|
||||
|
||||
public interface WorkFlowService {
|
||||
WflWorkListInfoBean getWorkListInfo(String paramString) throws EnrgiseApplicationException, EnrgiseSystemException;
|
||||
}
|
@@ -0,0 +1,12 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.service;
|
||||
|
||||
import wenrgise.hrms.helper.WorkFlowSimulator;
|
||||
import wenrgise.workflow.service.WorkFlowService;
|
||||
|
||||
public class WorkFlowServiceFactory {
|
||||
private static wenrgise.workflow.service.WorkFlowServiceFactory workFlowServiceFactory = new wenrgise.workflow.service.WorkFlowServiceFactory();
|
||||
|
||||
public static WorkFlowService getService() {
|
||||
return (WorkFlowService)new WorkFlowSimulator();
|
||||
}
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class WflDocMstQVO extends BaseQueryVO implements Serializable {}
|
@@ -0,0 +1,168 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.webtier.action;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.rmi.RemoteException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
import java.util.Stack;
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import org.apache.struts.action.ActionForm;
|
||||
import org.apache.struts.action.ActionForward;
|
||||
import org.apache.struts.action.ActionMapping;
|
||||
import wenrgise.common.exception.EnrgiseApplicationException;
|
||||
import wenrgise.common.exception.EnrgiseSystemException;
|
||||
import wenrgise.common.utility.EnrgiseUtil;
|
||||
import wenrgise.common.webtier.action.BaseAction;
|
||||
import wenrgise.ejb.common.session.UserSession;
|
||||
import wenrgise.workflow.bean.WflDocMstAttrDtlBean;
|
||||
import wenrgise.workflow.businessdelegate.WflConditionsBD;
|
||||
import wenrgise.workflow.webtier.form.WflConditionForm;
|
||||
|
||||
public class WflWorkFlowCondAction extends BaseAction {
|
||||
private Stack stkFormula = null;
|
||||
|
||||
private Map mapAlias = new HashMap();
|
||||
|
||||
private int iAlias = 1;
|
||||
|
||||
private boolean bOrFlag = false;
|
||||
|
||||
public ActionForward executeImpl(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws EnrgiseApplicationException, EnrgiseSystemException, IllegalAccessException, InvocationTargetException, InstantiationException, ClassNotFoundException, ServletException, IOException {
|
||||
WflConditionForm oWflConditionForm = (WflConditionForm)form;
|
||||
if (oWflConditionForm.getHidAction().equalsIgnoreCase("classinfo")) {
|
||||
getDocAttr(oWflConditionForm, request);
|
||||
refreshForm(oWflConditionForm);
|
||||
}
|
||||
if (oWflConditionForm.getHidAction().equalsIgnoreCase("validate"))
|
||||
getLovKeyValue(oWflConditionForm);
|
||||
if (oWflConditionForm.getHidAction().equalsIgnoreCase("and") || oWflConditionForm.getHidAction().equalsIgnoreCase("or"))
|
||||
setFormula(oWflConditionForm);
|
||||
if (oWflConditionForm.getHidAction().equalsIgnoreCase("show"))
|
||||
if (!oWflConditionForm.getValues().equals(""))
|
||||
setFormula(oWflConditionForm);
|
||||
if (oWflConditionForm.getHidAction().equalsIgnoreCase("refresh"))
|
||||
refreshForm(oWflConditionForm);
|
||||
return mapping.findForward("success");
|
||||
}
|
||||
|
||||
private void refreshForm(WflConditionForm oWflConditionForm) {
|
||||
oWflConditionForm.setHidAction("");
|
||||
oWflConditionForm.setFormula("");
|
||||
oWflConditionForm.setValues("");
|
||||
oWflConditionForm.setOperator("");
|
||||
oWflConditionForm.setDocAttr("");
|
||||
oWflConditionForm.setDisaboperator("false");
|
||||
oWflConditionForm.setDisabdocAttr("false");
|
||||
oWflConditionForm.setDisabvalues("false");
|
||||
oWflConditionForm.setDisabbutOr("false");
|
||||
oWflConditionForm.setDisabbutAnd("false");
|
||||
oWflConditionForm.setDisabbutShowFormula("false");
|
||||
oWflConditionForm.setDisabbutValues("true");
|
||||
oWflConditionForm.setDisabbutSelect("true");
|
||||
}
|
||||
|
||||
private void getDocAttr(WflConditionForm oWflConditionForm, HttpServletRequest request) throws RemoteException, EnrgiseApplicationException, EnrgiseSystemException {
|
||||
WflConditionsBD oWflConditionsBD = new WflConditionsBD();
|
||||
UserSession oUser = getUserSessionBean(request);
|
||||
oWflConditionsBD.setOUserInfo(oUser.getUserInfo());
|
||||
ArrayList docAttributes = oWflConditionsBD.getDocAttributes(oWflConditionForm.getDocId());
|
||||
Iterator oIt = docAttributes.iterator();
|
||||
HashMap oDocAttrTypeMap = new HashMap();
|
||||
HashMap oDocAttrNameMap = new HashMap();
|
||||
HashMap oDocLovKeyMap = new HashMap();
|
||||
while (oIt.hasNext()) {
|
||||
WflDocMstAttrDtlBean oWflDocMstAttrDtlBean = oIt.next();
|
||||
oDocAttrTypeMap.put(oWflDocMstAttrDtlBean.getTxtAttrName(), oWflDocMstAttrDtlBean.getTxtType());
|
||||
oDocAttrNameMap.put(oWflDocMstAttrDtlBean.getTxtAttrName(), oWflDocMstAttrDtlBean.getTxtAttrName());
|
||||
oDocLovKeyMap.put(oWflDocMstAttrDtlBean.getTxtAttrName(), oWflDocMstAttrDtlBean.getTxtLovKey());
|
||||
}
|
||||
oWflConditionForm.setDocAttributes(oDocAttrNameMap);
|
||||
oWflConditionForm.setDocTypes(oDocAttrTypeMap);
|
||||
oWflConditionForm.setDocLovKey(oDocLovKeyMap);
|
||||
oWflConditionForm.setFormStatus("false");
|
||||
}
|
||||
|
||||
private void getLovKeyValue(WflConditionForm oWflConditionForm) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
HashMap oMap = oWflConditionForm.getDocLovKey();
|
||||
if (oMap.get(oWflConditionForm.getDocAttr()) != null) {
|
||||
oWflConditionForm.setConditionLovKey(oMap.get(oWflConditionForm.getDocAttr()).toString());
|
||||
oWflConditionForm.setDisabbutValues("false");
|
||||
} else {
|
||||
oWflConditionForm.setDisabbutValues("true");
|
||||
}
|
||||
}
|
||||
|
||||
private void setFormula(WflConditionForm oWflConditionForm) throws EnrgiseApplicationException, EnrgiseSystemException {
|
||||
StringBuffer sNewFormula = new StringBuffer();
|
||||
if (!EnrgiseUtil.checkString(oWflConditionForm.getDocAttr()))
|
||||
return;
|
||||
if (!EnrgiseUtil.checkString(oWflConditionForm.getOperator()))
|
||||
return;
|
||||
if (!EnrgiseUtil.checkString(oWflConditionForm.getValues()))
|
||||
return;
|
||||
StringBuffer sFormula = new StringBuffer(oWflConditionForm.getFormula());
|
||||
if (sFormula.toString().equalsIgnoreCase(""))
|
||||
sNewFormula.append("( ");
|
||||
HashMap oDocAttributes = oWflConditionForm.getDocAttributes();
|
||||
HashMap oDocType = oWflConditionForm.getDocTypes();
|
||||
String operandName = oDocAttributes.get(oWflConditionForm.getDocAttr()).toString();
|
||||
String operandType = oDocType.get(operandName).toString().trim();
|
||||
sNewFormula.append(operandName);
|
||||
sNewFormula.append(" ");
|
||||
sNewFormula.append(oWflConditionForm.getOperator());
|
||||
sNewFormula.append(" ");
|
||||
if (operandType.equalsIgnoreCase("S")) {
|
||||
sNewFormula.append('"');
|
||||
sNewFormula.append(oWflConditionForm.getValues());
|
||||
sNewFormula.append('"');
|
||||
} else {
|
||||
sNewFormula.append(oWflConditionForm.getValues());
|
||||
}
|
||||
sNewFormula.append(" ");
|
||||
if (oWflConditionForm.getHidAction().equalsIgnoreCase("and")) {
|
||||
sNewFormula.append(" && ");
|
||||
sNewFormula.append(" ");
|
||||
}
|
||||
if (oWflConditionForm.getHidAction().equalsIgnoreCase("or")) {
|
||||
sNewFormula.append(" ) ");
|
||||
sNewFormula.append(" || ( ");
|
||||
}
|
||||
if (oWflConditionForm.getHidAction().equalsIgnoreCase("show")) {
|
||||
sNewFormula.append(" ) ");
|
||||
sFormula.append(sNewFormula);
|
||||
oWflConditionForm.setDocAttr("");
|
||||
oWflConditionForm.setOperator("");
|
||||
oWflConditionForm.setValues("");
|
||||
oWflConditionForm.setFormula(sFormula.toString());
|
||||
oWflConditionForm.setDocAttr("");
|
||||
oWflConditionForm.setDisaboperator("true");
|
||||
oWflConditionForm.setDisabdocAttr("true");
|
||||
oWflConditionForm.setDisabvalues("true");
|
||||
oWflConditionForm.setDisabbutOr("true");
|
||||
oWflConditionForm.setDisabbutAnd("true");
|
||||
oWflConditionForm.setDisabbutShowFormula("true");
|
||||
oWflConditionForm.setDisabbutValues("true");
|
||||
oWflConditionForm.setDisabbutSelect("false");
|
||||
} else {
|
||||
sFormula.append(sNewFormula);
|
||||
oWflConditionForm.setDocAttr("");
|
||||
oWflConditionForm.setOperator("");
|
||||
oWflConditionForm.setValues("");
|
||||
oWflConditionForm.setFormula(sFormula.toString());
|
||||
oWflConditionForm.setDocAttr("");
|
||||
}
|
||||
}
|
||||
|
||||
private String unescape(String sSQL) {
|
||||
if (sSQL.indexOf(">") != -1)
|
||||
sSQL.replaceAll(">", ">");
|
||||
if (sSQL.indexOf("<") != -1)
|
||||
sSQL.replaceAll("<", "<");
|
||||
return sSQL;
|
||||
}
|
||||
}
|
@@ -0,0 +1,35 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.webtier.form;
|
||||
|
||||
import wenrgise.common.webtier.form.BaseForm;
|
||||
|
||||
public class WFLBaseForm extends BaseForm {
|
||||
private String txtDisplayFields;
|
||||
|
||||
private String txtSearchFields;
|
||||
|
||||
private String queryParam;
|
||||
|
||||
public String getTxtDisplayFields() {
|
||||
return this.txtDisplayFields;
|
||||
}
|
||||
|
||||
public void setTxtDisplayFields(String newTxtDisplayFields) {
|
||||
this.txtDisplayFields = newTxtDisplayFields;
|
||||
}
|
||||
|
||||
public String getTxtSearchFields() {
|
||||
return this.txtSearchFields;
|
||||
}
|
||||
|
||||
public void setTxtSearchFields(String newTxtSearchFields) {
|
||||
this.txtSearchFields = newTxtSearchFields;
|
||||
}
|
||||
|
||||
public String getQueryParam() {
|
||||
return this.queryParam;
|
||||
}
|
||||
|
||||
public void setQueryParam(String newQueryParam) {
|
||||
this.queryParam = newQueryParam;
|
||||
}
|
||||
}
|
@@ -0,0 +1,166 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.webtier.form;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import wenrgise.workflow.webtier.form.WFLBaseForm;
|
||||
|
||||
public class WFLDocAttrDtlForm extends WFLBaseForm {
|
||||
private String documentCode;
|
||||
|
||||
private String userId;
|
||||
|
||||
private String documentDesc;
|
||||
|
||||
private String butDocumentCode;
|
||||
|
||||
private String disabbutDocumentCode;
|
||||
|
||||
String[] txtAttrName;
|
||||
|
||||
String[] txtType;
|
||||
|
||||
String[] txtDesc;
|
||||
|
||||
private ArrayList arylstDocAttrDetail = new ArrayList();
|
||||
|
||||
private String maxAppLevel;
|
||||
|
||||
private String[] docTypeHdrId;
|
||||
|
||||
String disabdocumentCode;
|
||||
|
||||
String disabdocumentDesc;
|
||||
|
||||
String disabmaxAppLevel;
|
||||
|
||||
String[] txtLovKey;
|
||||
|
||||
String disabtxtLovKey;
|
||||
|
||||
public String getDocumentCode() {
|
||||
return this.documentCode;
|
||||
}
|
||||
|
||||
public void setDocumentCode(String newDocumentCode) {
|
||||
this.documentCode = newDocumentCode;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public void setUserId(String newUserId) {
|
||||
this.userId = newUserId;
|
||||
}
|
||||
|
||||
public String getButDocumentCode() {
|
||||
return this.butDocumentCode;
|
||||
}
|
||||
|
||||
public void setButDocumentCode(String newButDocumentCode) {
|
||||
this.butDocumentCode = newButDocumentCode;
|
||||
}
|
||||
|
||||
public String getDisabbutDocumentCode() {
|
||||
return this.disabbutDocumentCode;
|
||||
}
|
||||
|
||||
public void setDisabbutDocumentCode(String newDisabbutDocumentCode) {
|
||||
this.disabbutDocumentCode = newDisabbutDocumentCode;
|
||||
}
|
||||
|
||||
public String[] getTxtAttrName() {
|
||||
return this.txtAttrName;
|
||||
}
|
||||
|
||||
public void setTxtAttrName(String[] newTxtAttrName) {
|
||||
this.txtAttrName = newTxtAttrName;
|
||||
}
|
||||
|
||||
public String[] getTxtType() {
|
||||
return this.txtType;
|
||||
}
|
||||
|
||||
public void setTxtType(String[] newTxtType) {
|
||||
this.txtType = newTxtType;
|
||||
}
|
||||
|
||||
public String[] getTxtDesc() {
|
||||
return this.txtDesc;
|
||||
}
|
||||
|
||||
public void setTxtDesc(String[] newTxtDesc) {
|
||||
this.txtDesc = newTxtDesc;
|
||||
}
|
||||
|
||||
public ArrayList getArylstDocAttrDetail() {
|
||||
return this.arylstDocAttrDetail;
|
||||
}
|
||||
|
||||
public void setArylstDocAttrDetail(ArrayList newArylstDocAttrDetail) {
|
||||
this.arylstDocAttrDetail = newArylstDocAttrDetail;
|
||||
}
|
||||
|
||||
public String getDocumentDesc() {
|
||||
return this.documentDesc;
|
||||
}
|
||||
|
||||
public void setDocumentDesc(String newDocumentDesc) {
|
||||
this.documentDesc = newDocumentDesc;
|
||||
}
|
||||
|
||||
public String getMaxAppLevel() {
|
||||
return this.maxAppLevel;
|
||||
}
|
||||
|
||||
public void setMaxAppLevel(String newMaxAppLevel) {
|
||||
this.maxAppLevel = newMaxAppLevel;
|
||||
}
|
||||
|
||||
public String[] getDocTypeHdrId() {
|
||||
return this.docTypeHdrId;
|
||||
}
|
||||
|
||||
public void setDocTypeHdrId(String[] newDocTypeHdrId) {
|
||||
this.docTypeHdrId = newDocTypeHdrId;
|
||||
}
|
||||
|
||||
public String getDisabdocumentCode() {
|
||||
return this.disabdocumentCode;
|
||||
}
|
||||
|
||||
public void setDisabdocumentCode(String newDisabdocumentCode) {
|
||||
this.disabdocumentCode = newDisabdocumentCode;
|
||||
}
|
||||
|
||||
public String getDisabdocumentDesc() {
|
||||
return this.disabdocumentDesc;
|
||||
}
|
||||
|
||||
public void setDisabdocumentDesc(String newDisabdocumentDesc) {
|
||||
this.disabdocumentDesc = newDisabdocumentDesc;
|
||||
}
|
||||
|
||||
public String getDisabmaxAppLevel() {
|
||||
return this.disabmaxAppLevel;
|
||||
}
|
||||
|
||||
public void setDisabmaxAppLevel(String newDisabmaxAppLevel) {
|
||||
this.disabmaxAppLevel = newDisabmaxAppLevel;
|
||||
}
|
||||
|
||||
public String[] getTxtLovKey() {
|
||||
return this.txtLovKey;
|
||||
}
|
||||
|
||||
public void setTxtLovKey(String[] newTxtLovKey) {
|
||||
this.txtLovKey = newTxtLovKey;
|
||||
}
|
||||
|
||||
public String getDisabtxtLovKey() {
|
||||
return this.disabtxtLovKey;
|
||||
}
|
||||
|
||||
public void setDisabtxtLovKey(String newDisabtxtLovKey) {
|
||||
this.disabtxtLovKey = newDisabtxtLovKey;
|
||||
}
|
||||
}
|
@@ -0,0 +1,206 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.webtier.form;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import wenrgise.workflow.webtier.form.WFLBaseForm;
|
||||
|
||||
public class WFLDtlDocTypeForm extends WFLBaseForm {
|
||||
String[] txtDtlDocCode;
|
||||
|
||||
String[] txtDtlDocDesc;
|
||||
|
||||
String[] txtCondition;
|
||||
|
||||
String[] txtPriority;
|
||||
|
||||
String[] txtExp;
|
||||
|
||||
private String dtlDocCode;
|
||||
|
||||
private String butdtlDocCode;
|
||||
|
||||
private String disabbutdtlDocCode;
|
||||
|
||||
private String condition;
|
||||
|
||||
private String butcondition;
|
||||
|
||||
private String disabbutcondition;
|
||||
|
||||
private String documentCode;
|
||||
|
||||
private String documentDesc;
|
||||
|
||||
private ArrayList arylstDtlDocType = new ArrayList();
|
||||
|
||||
String disabbutDocCode;
|
||||
|
||||
String docId;
|
||||
|
||||
String[] txtConditionId;
|
||||
|
||||
String butCondDesc;
|
||||
|
||||
String disabbutCondDesc;
|
||||
|
||||
String[] txtConDesc;
|
||||
|
||||
public String[] getTxtDtlDocCode() {
|
||||
return this.txtDtlDocCode;
|
||||
}
|
||||
|
||||
public void setTxtDtlDocCode(String[] newTxtDtlDocCode) {
|
||||
this.txtDtlDocCode = newTxtDtlDocCode;
|
||||
}
|
||||
|
||||
public String[] getTxtDtlDocDesc() {
|
||||
return this.txtDtlDocDesc;
|
||||
}
|
||||
|
||||
public void setTxtDtlDocDesc(String[] newTxtDtlDocDesc) {
|
||||
this.txtDtlDocDesc = newTxtDtlDocDesc;
|
||||
}
|
||||
|
||||
public String[] getTxtCondition() {
|
||||
return this.txtCondition;
|
||||
}
|
||||
|
||||
public void setTxtCondition(String[] newTxtCondition) {
|
||||
this.txtCondition = newTxtCondition;
|
||||
}
|
||||
|
||||
public String[] getTxtPriority() {
|
||||
return this.txtPriority;
|
||||
}
|
||||
|
||||
public void setTxtPriority(String[] newTxtPriority) {
|
||||
this.txtPriority = newTxtPriority;
|
||||
}
|
||||
|
||||
public String getDtlDocCode() {
|
||||
return this.dtlDocCode;
|
||||
}
|
||||
|
||||
public void setDtlDocCode(String newDtlDocCode) {
|
||||
this.dtlDocCode = newDtlDocCode;
|
||||
}
|
||||
|
||||
public String getButdtlDocCode() {
|
||||
return this.butdtlDocCode;
|
||||
}
|
||||
|
||||
public void setButdtlDocCode(String newButdtlDocCode) {
|
||||
this.butdtlDocCode = newButdtlDocCode;
|
||||
}
|
||||
|
||||
public String getDisabbutdtlDocCode() {
|
||||
return this.disabbutdtlDocCode;
|
||||
}
|
||||
|
||||
public void setDisabbutdtlDocCode(String newDisabbutdtlDocCode) {
|
||||
this.disabbutdtlDocCode = newDisabbutdtlDocCode;
|
||||
}
|
||||
|
||||
public String getCondition() {
|
||||
return this.condition;
|
||||
}
|
||||
|
||||
public void setCondition(String newCondition) {
|
||||
this.condition = newCondition;
|
||||
}
|
||||
|
||||
public String[] getTxtExp() {
|
||||
return this.txtExp;
|
||||
}
|
||||
|
||||
public void setTxtExp(String[] newTxtExp) {
|
||||
this.txtExp = newTxtExp;
|
||||
}
|
||||
|
||||
public String getButcondition() {
|
||||
return this.butcondition;
|
||||
}
|
||||
|
||||
public void setButcondition(String newButcondition) {
|
||||
this.butcondition = newButcondition;
|
||||
}
|
||||
|
||||
public String getDisabbutcondition() {
|
||||
return this.disabbutcondition;
|
||||
}
|
||||
|
||||
public void setDisabbutcondition(String newDisabbutcondition) {
|
||||
this.disabbutcondition = newDisabbutcondition;
|
||||
}
|
||||
|
||||
public String getDocumentCode() {
|
||||
return this.documentCode;
|
||||
}
|
||||
|
||||
public void setDocumentCode(String newDocumentCode) {
|
||||
this.documentCode = newDocumentCode;
|
||||
}
|
||||
|
||||
public String getDocumentDesc() {
|
||||
return this.documentDesc;
|
||||
}
|
||||
|
||||
public void setDocumentDesc(String newDocumentDesc) {
|
||||
this.documentDesc = newDocumentDesc;
|
||||
}
|
||||
|
||||
public ArrayList getArylstDtlDocType() {
|
||||
return this.arylstDtlDocType;
|
||||
}
|
||||
|
||||
public void setArylstDtlDocType(ArrayList newArylstDtlDocType) {
|
||||
this.arylstDtlDocType = newArylstDtlDocType;
|
||||
}
|
||||
|
||||
public String getDisabbutDocCode() {
|
||||
return this.disabbutDocCode;
|
||||
}
|
||||
|
||||
public void setDisabbutDocCode(String newDisabbutDocCode) {
|
||||
this.disabbutDocCode = newDisabbutDocCode;
|
||||
}
|
||||
|
||||
public String getDocId() {
|
||||
return this.docId;
|
||||
}
|
||||
|
||||
public void setDocId(String newDocId) {
|
||||
this.docId = newDocId;
|
||||
}
|
||||
|
||||
public String[] getTxtConditionId() {
|
||||
return this.txtConditionId;
|
||||
}
|
||||
|
||||
public void setTxtConditionId(String[] newTxtConditionId) {
|
||||
this.txtConditionId = newTxtConditionId;
|
||||
}
|
||||
|
||||
public String getButCondDesc() {
|
||||
return this.butCondDesc;
|
||||
}
|
||||
|
||||
public void setButCondDesc(String newButCondDesc) {
|
||||
this.butCondDesc = newButCondDesc;
|
||||
}
|
||||
|
||||
public String getDisabbutCondDesc() {
|
||||
return this.disabbutCondDesc;
|
||||
}
|
||||
|
||||
public void setDisabbutCondDesc(String newDisabbutCondDesc) {
|
||||
this.disabbutCondDesc = newDisabbutCondDesc;
|
||||
}
|
||||
|
||||
public String[] getTxtConDesc() {
|
||||
return this.txtConDesc;
|
||||
}
|
||||
|
||||
public void setTxtConDesc(String[] newTxtConDesc) {
|
||||
this.txtConDesc = newTxtConDesc;
|
||||
}
|
||||
}
|
@@ -0,0 +1,467 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.webtier.form;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import wenrgise.workflow.webtier.form.WFLBaseForm;
|
||||
|
||||
public class WflConditionForm extends WFLBaseForm {
|
||||
String documentCode;
|
||||
|
||||
String documentDesc;
|
||||
|
||||
String butCondDtls;
|
||||
|
||||
String docId;
|
||||
|
||||
String docAttr;
|
||||
|
||||
HashMap docAttributes;
|
||||
|
||||
String operator;
|
||||
|
||||
String values;
|
||||
|
||||
String formula;
|
||||
|
||||
String hidAction;
|
||||
|
||||
String formStatus;
|
||||
|
||||
String docType;
|
||||
|
||||
String hidFormula;
|
||||
|
||||
String disabdocCode;
|
||||
|
||||
String disabdocDesc;
|
||||
|
||||
String disabbutCondDtls;
|
||||
|
||||
String disabtxtDocDtlDesc;
|
||||
|
||||
String disabtxtPriority;
|
||||
|
||||
String disabtxtCondExp;
|
||||
|
||||
String disabdocAttr;
|
||||
|
||||
String disaboperator;
|
||||
|
||||
String disabvalues;
|
||||
|
||||
String disabformula;
|
||||
|
||||
String butOr;
|
||||
|
||||
String butAnd;
|
||||
|
||||
String disabbutOr;
|
||||
|
||||
String disabbutAnd;
|
||||
|
||||
String butShowFormula;
|
||||
|
||||
String disabbutShowFormula;
|
||||
|
||||
String butValues;
|
||||
|
||||
String disabbutValues;
|
||||
|
||||
HashMap docTypes;
|
||||
|
||||
String[] selectAll;
|
||||
|
||||
ArrayList arylstDocAttrDetail = new ArrayList();
|
||||
|
||||
String butDocumentCode;
|
||||
|
||||
String disabbutDocumentCode;
|
||||
|
||||
String[] docTypeDtlDesc;
|
||||
|
||||
String[] priority;
|
||||
|
||||
String[] conditionExpression;
|
||||
|
||||
String butCond;
|
||||
|
||||
String disabbutCond;
|
||||
|
||||
String index;
|
||||
|
||||
String butSelect;
|
||||
|
||||
String disabbutSelect;
|
||||
|
||||
public HashMap docLovKey;
|
||||
|
||||
String ConditionLovKey;
|
||||
|
||||
public String getDocumentCode() {
|
||||
return this.documentCode;
|
||||
}
|
||||
|
||||
public void setDocumentCode(String newDocumentCode) {
|
||||
this.documentCode = newDocumentCode;
|
||||
}
|
||||
|
||||
public String getDocumentDesc() {
|
||||
return this.documentDesc;
|
||||
}
|
||||
|
||||
public void setDocumentDesc(String newDocumentDesc) {
|
||||
this.documentDesc = newDocumentDesc;
|
||||
}
|
||||
|
||||
public String getButCondDtls() {
|
||||
return this.butCondDtls;
|
||||
}
|
||||
|
||||
public void setButCondDtls(String newButCondDtls) {
|
||||
this.butCondDtls = newButCondDtls;
|
||||
}
|
||||
|
||||
public String getDocId() {
|
||||
return this.docId;
|
||||
}
|
||||
|
||||
public void setDocId(String newDocId) {
|
||||
this.docId = newDocId;
|
||||
}
|
||||
|
||||
public String getDocAttr() {
|
||||
return this.docAttr;
|
||||
}
|
||||
|
||||
public void setDocAttr(String newDocAttr) {
|
||||
this.docAttr = newDocAttr;
|
||||
}
|
||||
|
||||
public HashMap getDocAttributes() {
|
||||
return this.docAttributes;
|
||||
}
|
||||
|
||||
public void setDocAttributes(HashMap newDocAttributes) {
|
||||
this.docAttributes = newDocAttributes;
|
||||
}
|
||||
|
||||
public String getOperator() {
|
||||
return this.operator;
|
||||
}
|
||||
|
||||
public void setOperator(String newOperator) {
|
||||
this.operator = newOperator;
|
||||
}
|
||||
|
||||
public String getValues() {
|
||||
return this.values;
|
||||
}
|
||||
|
||||
public void setValues(String newValues) {
|
||||
this.values = newValues;
|
||||
}
|
||||
|
||||
public String getFormula() {
|
||||
return this.formula;
|
||||
}
|
||||
|
||||
public void setFormula(String newFormula) {
|
||||
this.formula = newFormula;
|
||||
}
|
||||
|
||||
public String getHidAction() {
|
||||
return this.hidAction;
|
||||
}
|
||||
|
||||
public void setHidAction(String newHidAction) {
|
||||
this.hidAction = newHidAction;
|
||||
}
|
||||
|
||||
public String getFormStatus() {
|
||||
return this.formStatus;
|
||||
}
|
||||
|
||||
public void setFormStatus(String newFormStatus) {
|
||||
this.formStatus = newFormStatus;
|
||||
}
|
||||
|
||||
public String getDocType() {
|
||||
return this.docType;
|
||||
}
|
||||
|
||||
public void setDocType(String newDocType) {
|
||||
this.docType = newDocType;
|
||||
}
|
||||
|
||||
public String getHidFormula() {
|
||||
return this.hidFormula;
|
||||
}
|
||||
|
||||
public void setHidFormula(String newHidFormula) {
|
||||
this.hidFormula = newHidFormula;
|
||||
}
|
||||
|
||||
public String getDisabdocCode() {
|
||||
return this.disabdocCode;
|
||||
}
|
||||
|
||||
public void setDisabdocCode(String newDisabdocCode) {
|
||||
this.disabdocCode = newDisabdocCode;
|
||||
}
|
||||
|
||||
public String getDisabdocDesc() {
|
||||
return this.disabdocDesc;
|
||||
}
|
||||
|
||||
public void setDisabdocDesc(String newDisabdocDesc) {
|
||||
this.disabdocDesc = newDisabdocDesc;
|
||||
}
|
||||
|
||||
public String getDisabbutCondDtls() {
|
||||
return this.disabbutCondDtls;
|
||||
}
|
||||
|
||||
public void setDisabbutCondDtls(String newDisabbutCondDtls) {
|
||||
this.disabbutCondDtls = newDisabbutCondDtls;
|
||||
}
|
||||
|
||||
public String getDisabtxtDocDtlDesc() {
|
||||
return this.disabtxtDocDtlDesc;
|
||||
}
|
||||
|
||||
public void setDisabtxtDocDtlDesc(String newDisabtxtDocDtlDesc) {
|
||||
this.disabtxtDocDtlDesc = newDisabtxtDocDtlDesc;
|
||||
}
|
||||
|
||||
public String getDisabtxtPriority() {
|
||||
return this.disabtxtPriority;
|
||||
}
|
||||
|
||||
public void setDisabtxtPriority(String newDisabtxtPriority) {
|
||||
this.disabtxtPriority = newDisabtxtPriority;
|
||||
}
|
||||
|
||||
public String getDisabtxtCondExp() {
|
||||
return this.disabtxtCondExp;
|
||||
}
|
||||
|
||||
public void setDisabtxtCondExp(String newDisabtxtCondExp) {
|
||||
this.disabtxtCondExp = newDisabtxtCondExp;
|
||||
}
|
||||
|
||||
public String getDisabdocAttr() {
|
||||
return this.disabdocAttr;
|
||||
}
|
||||
|
||||
public void setDisabdocAttr(String newDisabdocAttr) {
|
||||
this.disabdocAttr = newDisabdocAttr;
|
||||
}
|
||||
|
||||
public String getDisaboperator() {
|
||||
return this.disaboperator;
|
||||
}
|
||||
|
||||
public void setDisaboperator(String newDisaboperator) {
|
||||
this.disaboperator = newDisaboperator;
|
||||
}
|
||||
|
||||
public String getDisabvalues() {
|
||||
return this.disabvalues;
|
||||
}
|
||||
|
||||
public void setDisabvalues(String newDisabvalues) {
|
||||
this.disabvalues = newDisabvalues;
|
||||
}
|
||||
|
||||
public String getDisabformula() {
|
||||
return this.disabformula;
|
||||
}
|
||||
|
||||
public void setDisabformula(String newDisabformula) {
|
||||
this.disabformula = newDisabformula;
|
||||
}
|
||||
|
||||
public String getButOr() {
|
||||
return this.butOr;
|
||||
}
|
||||
|
||||
public void setButOr(String newButOr) {
|
||||
this.butOr = newButOr;
|
||||
}
|
||||
|
||||
public String getButAnd() {
|
||||
return this.butAnd;
|
||||
}
|
||||
|
||||
public void setButAnd(String newButAnd) {
|
||||
this.butAnd = newButAnd;
|
||||
}
|
||||
|
||||
public String getDisabbutOr() {
|
||||
return this.disabbutOr;
|
||||
}
|
||||
|
||||
public void setDisabbutOr(String newDisabbutOr) {
|
||||
this.disabbutOr = newDisabbutOr;
|
||||
}
|
||||
|
||||
public String getDisabbutAnd() {
|
||||
return this.disabbutAnd;
|
||||
}
|
||||
|
||||
public void setDisabbutAnd(String newDisabbutAnd) {
|
||||
this.disabbutAnd = newDisabbutAnd;
|
||||
}
|
||||
|
||||
public String getButShowFormula() {
|
||||
return this.butShowFormula;
|
||||
}
|
||||
|
||||
public void setButShowFormula(String newButShowFormula) {
|
||||
this.butShowFormula = newButShowFormula;
|
||||
}
|
||||
|
||||
public String getDisabbutShowFormula() {
|
||||
return this.disabbutShowFormula;
|
||||
}
|
||||
|
||||
public void setDisabbutShowFormula(String newDisabbutShowFormula) {
|
||||
this.disabbutShowFormula = newDisabbutShowFormula;
|
||||
}
|
||||
|
||||
public String getButValues() {
|
||||
return this.butValues;
|
||||
}
|
||||
|
||||
public void setButValues(String newButValues) {
|
||||
this.butValues = newButValues;
|
||||
}
|
||||
|
||||
public String getDisabbutValues() {
|
||||
return this.disabbutValues;
|
||||
}
|
||||
|
||||
public void setDisabbutValues(String newDisabbutValues) {
|
||||
this.disabbutValues = newDisabbutValues;
|
||||
}
|
||||
|
||||
public HashMap getDocTypes() {
|
||||
return this.docTypes;
|
||||
}
|
||||
|
||||
public void setDocTypes(HashMap newDocTypes) {
|
||||
this.docTypes = newDocTypes;
|
||||
}
|
||||
|
||||
public String[] getSelectAll() {
|
||||
return this.selectAll;
|
||||
}
|
||||
|
||||
public void setSelectAll(String[] newSelectAll) {
|
||||
this.selectAll = newSelectAll;
|
||||
}
|
||||
|
||||
public ArrayList getArylstDocAttrDetail() {
|
||||
return this.arylstDocAttrDetail;
|
||||
}
|
||||
|
||||
public void setArylstDocAttrDetail(ArrayList newArylstDocAttrDetail) {
|
||||
this.arylstDocAttrDetail = newArylstDocAttrDetail;
|
||||
}
|
||||
|
||||
public String getButDocumentCode() {
|
||||
return this.butDocumentCode;
|
||||
}
|
||||
|
||||
public void setButDocumentCode(String newButDocumentCode) {
|
||||
this.butDocumentCode = newButDocumentCode;
|
||||
}
|
||||
|
||||
public String getDisabbutDocumentCode() {
|
||||
return this.disabbutDocumentCode;
|
||||
}
|
||||
|
||||
public void setDisabbutDocumentCode(String newDisabbutDocumentCode) {
|
||||
this.disabbutDocumentCode = newDisabbutDocumentCode;
|
||||
}
|
||||
|
||||
public String[] getDocTypeDtlDesc() {
|
||||
return this.docTypeDtlDesc;
|
||||
}
|
||||
|
||||
public void setDocTypeDtlDesc(String[] newDocTypeDtlDesc) {
|
||||
this.docTypeDtlDesc = newDocTypeDtlDesc;
|
||||
}
|
||||
|
||||
public String[] getPriority() {
|
||||
return this.priority;
|
||||
}
|
||||
|
||||
public void setPriority(String[] newPriority) {
|
||||
this.priority = newPriority;
|
||||
}
|
||||
|
||||
public String[] getConditionExpression() {
|
||||
return this.conditionExpression;
|
||||
}
|
||||
|
||||
public void setConditionExpression(String[] newConditionExpression) {
|
||||
this.conditionExpression = newConditionExpression;
|
||||
}
|
||||
|
||||
public String getButCond() {
|
||||
return this.butCond;
|
||||
}
|
||||
|
||||
public void setButCond(String newButCond) {
|
||||
this.butCond = newButCond;
|
||||
}
|
||||
|
||||
public String getDisabbutCond() {
|
||||
return this.disabbutCond;
|
||||
}
|
||||
|
||||
public void setDisabbutCond(String newDisabbutCond) {
|
||||
this.disabbutCond = newDisabbutCond;
|
||||
}
|
||||
|
||||
public String getIndex() {
|
||||
return this.index;
|
||||
}
|
||||
|
||||
public void setIndex(String newIndex) {
|
||||
this.index = newIndex;
|
||||
}
|
||||
|
||||
public String getButSelect() {
|
||||
return this.butSelect;
|
||||
}
|
||||
|
||||
public void setButSelect(String newButSelect) {
|
||||
this.butSelect = newButSelect;
|
||||
}
|
||||
|
||||
public String getDisabbutSelect() {
|
||||
return this.disabbutSelect;
|
||||
}
|
||||
|
||||
public void setDisabbutSelect(String newDisabbutSelect) {
|
||||
this.disabbutSelect = newDisabbutSelect;
|
||||
}
|
||||
|
||||
public HashMap getDocLovKey() {
|
||||
return this.docLovKey;
|
||||
}
|
||||
|
||||
public void setDocLovKey(HashMap newDocLovKey) {
|
||||
this.docLovKey = newDocLovKey;
|
||||
}
|
||||
|
||||
public String getConditionLovKey() {
|
||||
return this.ConditionLovKey;
|
||||
}
|
||||
|
||||
public void setConditionLovKey(String newConditionLovKey) {
|
||||
this.ConditionLovKey = newConditionLovKey;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user