protected void Save_Click(object sender, EventArgs e)
    {
        PageErrors errors = PageErrors.getErrors(db, Page.Master);

        errors.clear();

        EAuthorizationWorkFlow obj = new EAuthorizationWorkFlow();
        Hashtable values           = new Hashtable();


        binding.toValues(values);
        db.validate(errors, values);

        if (!errors.isEmpty())
        {
            return;
        }

        db.parse(values, obj);
        if (!AppUtils.checkDuplicate(dbConn, db, obj, errors, "AuthorizationWorkFlowCode"))
        {
            return;
        }

        WebUtils.StartFunction(Session, FUNCTION_CODE);
        if (CurID < 0)
        {
            db.insert(dbConn, obj);
            CurID = obj.AuthorizationWorkFlowID;
        }
        else
        {
            db.update(dbConn, obj);
        }
        DBFilter previousDetailFilter = new DBFilter();

        previousDetailFilter.add(new Match("AuthorizationWorkFlowID", obj.AuthorizationWorkFlowID));
        ArrayList previousDetailList = EAuthorizationWorkFlowDetail.db.select(dbConn, previousDetailFilter);

        foreach (EAuthorizationWorkFlowDetail previousDetail in previousDetailList)
        {
            EAuthorizationWorkFlowDetail.db.delete(dbConn, previousDetail);
        }

        foreach (DataRow row in AuthorizationWorkFlowDetailDataTable.Rows)
        {
            EAuthorizationWorkFlowDetail detail = new EAuthorizationWorkFlowDetail();
            detail.AuthorizationGroupID       = (int)row["AuthorizationGroupID"];
            detail.AuthorizationWorkFlowIndex = (int)row["AuthorizationWorkFlowIndex"];
            detail.AuthorizationWorkFlowID    = obj.AuthorizationWorkFlowID;
            EAuthorizationWorkFlowDetail.db.insert(dbConn, detail);
        }
        WebUtils.EndFunction(dbConn);

        HROne.Common.WebUtility.RedirectURLwithEncryptedQueryString(Response, Session, "~/ESS_AuthorizationWorkFlow_View.aspx?AuthorizationWorkFlowID=" + CurID);
    }
Example #2
0
    protected void Repeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
    {
        DataRowView row = (DataRowView)e.Item.DataItem;
        //CheckBox cb = (CheckBox)e.Item.FindControl("ItemSelect");
        HtmlAnchor requestLink = (HtmlAnchor)e.Item.FindControl("requestLink");

        //WebFormUtils.LoadKeys(db, row, cb);
        //cb.Checked=false;
        //cb.Visible = false;

        EEmpRequest obj = new EEmpRequest();

        EEmpRequest.db.toObject(((DataRowView)e.Item.DataItem).Row, obj);
        //// Start 0000047, Miranda, 2014-06-04
        //if (obj.EmpRequestStatus.Equals(EEmpRequest.STATUS_APPROVED) || obj.EmpRequestStatus.Equals(EEmpRequest.STATUS_REJECTED))
        //{
        //    requestLink.HRef = "";
        //    requestLink.Title = generateToolTipMessage(obj);
        //}
        //else if (obj.EmpRequestStatus.Equals(EEmpRequest.STATUS_CANCELLED))
        //{
        //    requestLink.HRef = "";
        //    requestLink.Title = "";
        //}
        //else
        //{
        requestLink.HRef = HROne.Common.WebUtility.URLwithEncryptQueryString(Session, "~/ESS_EmpRequestDetail.aspx?TargetEmpID=" + obj.EmpID + "&EmpRequestRecordID=" + obj.EmpRequestRecordID + "&EmpRequestID=" + obj.EmpRequestID);
        //requestLink.InnerText = row["EmpNo"].ToString();
        requestLink.Title = generateToolTipMessage(obj);
        //}
        //// End 0000047, Miranda, 2014-06-04
        ESSAuthorizationProcess authorization       = new ESSAuthorizationProcess(dbConn);
        ArrayList workFlowDetailList                = authorization.GetAuthorizationWorkFlowDetailList(obj.EmpID, obj.EmpRequestType);
        EAuthorizationWorkFlowDetail workFlowDetail = authorization.GetCurrentWorkFlowDetailObject(workFlowDetailList, obj.EmpRequestLastAuthorizationWorkFlowIndex, CurID);
        //if (workFlowDetail != null)
        //{
        //    ArrayList authorizerList =  workFlowDetail.GetActualAutorizerObjectList(dbConn, CurID);
        //    foreach (EAuthorizer authorizer in authorizerList)
        //        if (!authorizer.AuthorizerIsReadOnly)
        //            cb.Visible = true;
        //}
    }
    protected void Repeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
    {
        DataRowView row         = (DataRowView)e.Item.DataItem;
        CheckBox    cb          = (CheckBox)e.Item.FindControl("ItemSelect");
        HtmlAnchor  requestLink = (HtmlAnchor)e.Item.FindControl("requestLink");

        WebFormUtils.LoadKeys(db, row, cb);
        cb.Checked = false;
        cb.Visible = false;

        EEmpRequest obj = new EEmpRequest();

        EEmpRequest.db.toObject(((DataRowView)e.Item.DataItem).Row, obj);

        // resolve Request Type --> Description
        Label lblEmpRequestType = (Label)e.Item.FindControl("EmpRequestType");

        switch (obj.EmpRequestType)
        {
        case EEmpRequest.TYPE_EELEAVEAPP:
            lblEmpRequestType.Text = "Leave Application";
            break;

        case EEmpRequest.TYPE_EELEAVECANCEL:
            lblEmpRequestType.Text = "Leave Application Cancellation";
            break;

        case EEmpRequest.TYPE_EEOTCLAIM:
            lblEmpRequestType.Text = "CL Requisition";
            break;

        case EEmpRequest.TYPE_EEOTCLAIMCANCEL:
            lblEmpRequestType.Text = "CL Requisition Cancel";
            break;

        // Start 0000112, Miranda, 2014-12-10
        case EEmpRequest.TYPE_EELATEWAIVE:
            lblEmpRequestType.Text = "Late Waive";
            break;

        case EEmpRequest.TYPE_EELATEWAIVECANCEL:
            lblEmpRequestType.Text = "Late Waive Cancel";
            break;

        // End 0000112, Miranda, 2014-12-10
        case EEmpRequest.TYPE_EEPROFILE:
            lblEmpRequestType.Text = "Personal Information";
            break;

        default:
            lblEmpRequestType.Text = obj.EmpRequestType;
            break;
        }


        requestLink.HRef = HROne.Common.WebUtility.URLwithEncryptQueryString(Session, "~/ESS_EmpRequestDetail.aspx?TargetEmpID=" + obj.EmpID + "&EmpRequestRecordID=" + obj.EmpRequestRecordID + "&EmpRequestID=" + obj.EmpRequestID);
        //requestLink.InnerText = row["EmpNo"].ToString();
        requestLink.Title = generateToolTipMessage(obj);
        ESSAuthorizationProcess authorization       = new ESSAuthorizationProcess(dbConn);
        ArrayList workFlowDetailList                = authorization.GetAuthorizationWorkFlowDetailList(obj.EmpID, obj.EmpRequestType);
        EAuthorizationWorkFlowDetail workFlowDetail = authorization.GetCurrentWorkFlowDetailObject(workFlowDetailList, obj.EmpRequestLastAuthorizationWorkFlowIndex, CurID);

        if (workFlowDetail != null)
        {
            ArrayList authorizerList = workFlowDetail.GetActualAutorizerObjectList(dbConn, CurID);
            foreach (EAuthorizer authorizer in authorizerList)
            {
                if (!authorizer.AuthorizerIsReadOnly)
                {
                    cb.Visible = true;
                }
            }
        }
    }
Example #4
0
    protected bool loadObject()
    {
        bool allowApproval = false;

        DBManager Requestdb    = EAuthorizer.db;
        DBFilter  filterStatus = new DBFilter();

        filterStatus.add(new Match("EmpID", CurID));


        int targetEmpID = 0;

        EEmpRequest Request = new EEmpRequest();

        Request.EmpRequestID = CurRequestID;
        if (EEmpRequest.db.select(dbConn, Request))
        {
            targetEmpID = Request.EmpID;
            if (Request.EmpRequestType == EEmpRequest.TYPE_EELEAVEAPP)
            {
                LeaveApplicationRecord1.Visible = true;
                uc1Emp_info.Visible             = true;
                uc1Emp_info.CurID = Request.EmpID;
                uc3Emp_Request_Empinfo.Visible        = false;
                LeaveApplicationCancelRecord1.Visible = false;
                // Start 0000060, Miranda, 2014-07-13
                OTClaimRecord1.Visible       = false;
                OTClaimCancelRecord1.Visible = false;
                // End 0000060, Miranda, 2014-07-13
                // Start 0000112, Miranda, 2014-12-10
                LateWaiveRecord1.Visible       = false;
                LateWaiveCancelRecord1.Visible = false;
                // End 0000112, Miranda, 2014-12-10
            }
            else if (Request.EmpRequestType == EEmpRequest.TYPE_EEPROFILE)
            {
                LeaveApplicationRecord1.Visible = false;
                uc1Emp_info.Visible             = false;
                uc3Emp_Request_Empinfo.Visible  = true;
                uc3Emp_Request_Empinfo.CurrentRequestStatusLabel = HROne.Common.WebUtility.GetLocalizedString(Request.EmpRequestStatus);
                LeaveApplicationCancelRecord1.Visible            = false;
                // Start 0000060, Miranda, 2014-07-13
                OTClaimRecord1.Visible       = false;
                OTClaimCancelRecord1.Visible = false;
                // End 0000060, Miranda, 2014-07-13
                // Start 0000112, Miranda, 2014-12-10
                LateWaiveRecord1.Visible       = false;
                LateWaiveCancelRecord1.Visible = false;
                // End 0000112, Miranda, 2014-12-10
            }
            else if (Request.EmpRequestType == EEmpRequest.TYPE_EELEAVECANCEL)
            {
                LeaveApplicationRecord1.Visible = false;
                uc1Emp_info.Visible             = true;
                uc1Emp_info.CurID = Request.EmpID;
                uc3Emp_Request_Empinfo.Visible        = false;
                LeaveApplicationCancelRecord1.Visible = true;
                // Start 0000060, Miranda, 2014-07-13
                OTClaimRecord1.Visible       = false;
                OTClaimCancelRecord1.Visible = false;
                // End 0000060, Miranda, 2014-07-13
                // Start 0000112, Miranda, 2014-12-10
                LateWaiveRecord1.Visible       = false;
                LateWaiveCancelRecord1.Visible = false;
                // End 0000112, Miranda, 2014-12-10
            }
            // Start 0000060, Miranda, 2014-07-13
            else if (Request.EmpRequestType == EEmpRequest.TYPE_EEOTCLAIM)
            {
                LeaveApplicationRecord1.Visible = false;
                uc1Emp_info.Visible             = true;
                uc1Emp_info.CurID = Request.EmpID;
                uc3Emp_Request_Empinfo.Visible        = false;
                LeaveApplicationCancelRecord1.Visible = false;
                OTClaimRecord1.Visible       = true;
                OTClaimCancelRecord1.Visible = false;
                // Start 0000112, Miranda, 2014-12-10
                LateWaiveRecord1.Visible       = false;
                LateWaiveCancelRecord1.Visible = false;
                // End 0000112, Miranda, 2014-12-10
            }
            else if (Request.EmpRequestType == EEmpRequest.TYPE_EEOTCLAIMCANCEL)
            {
                LeaveApplicationRecord1.Visible = false;
                uc1Emp_info.Visible             = true;
                uc1Emp_info.CurID = Request.EmpID;
                uc3Emp_Request_Empinfo.Visible        = false;
                LeaveApplicationCancelRecord1.Visible = false;
                OTClaimRecord1.Visible       = false;
                OTClaimCancelRecord1.Visible = true;
                // Start 0000112, Miranda, 2014-12-10
                LateWaiveRecord1.Visible       = false;
                LateWaiveCancelRecord1.Visible = false;
                // End 0000112, Miranda, 2014-12-10
            }
            // End 0000060, Miranda, 2014-07-13
            // Start 0000112, Miranda, 2014-12-10
            else if (Request.EmpRequestType == EEmpRequest.TYPE_EELATEWAIVE)
            {
                LeaveApplicationRecord1.Visible = false;
                uc1Emp_info.Visible             = true;
                uc1Emp_info.CurID = Request.EmpID;
                uc3Emp_Request_Empinfo.Visible        = false;
                LeaveApplicationCancelRecord1.Visible = false;
                OTClaimRecord1.Visible         = false;
                OTClaimCancelRecord1.Visible   = false;
                LateWaiveRecord1.Visible       = true;
                LateWaiveCancelRecord1.Visible = false;
            }
            else if (Request.EmpRequestType == EEmpRequest.TYPE_EELATEWAIVECANCEL)
            {
                LeaveApplicationRecord1.Visible = false;
                uc1Emp_info.Visible             = true;
                uc1Emp_info.CurID = Request.EmpID;
                uc3Emp_Request_Empinfo.Visible        = false;
                LeaveApplicationCancelRecord1.Visible = false;
                OTClaimRecord1.Visible         = false;
                OTClaimCancelRecord1.Visible   = false;
                LateWaiveRecord1.Visible       = false;
                LateWaiveCancelRecord1.Visible = true;
            }
            // End 0000112, Miranda, 2014-12-10
        }

        if (Requestdb.count(dbConn, filterStatus) > 0)
        {
            //obj = new EEmpPersonalInfo();
            //obj.EmpID = CurID;
            //if (!db.select(obj))
            //    return false;

            //Hashtable values = new Hashtable();
            //db.populate(obj, values);
            //binding.toControl(values);



            //------------------------------------------------------


            //for (int i = 1; i <= 2; i++)
            //{
            //    ArrayList EmpAuthorizerList = ESSAuthorizerEmail.Get_AuthorizerList(dbConn, targetEmpID, i);
            //    if (!(EmpAuthorizerList == null))
            //    {

            //        foreach (EAuthorizer EmpAuthorizer in EmpAuthorizerList)
            //        {
            //                if (EmpAuthorizer.EmpID  == CurID)
            //                {

            //                    EAuthorizationGroup authGroup = new EAuthorizationGroup();
            //                    authGroup.AuthorizationGroupID = EmpAuthorizer.AuthorizationGroupID;
            //                    if (EAuthorizationGroup.db.select(dbConn, authGroup))
            //                    {
            //                        IsAuthorizer = true;
            //                        if (authGroup.AuthorizationGroupIsApproveEEInfo)
            //                            allowEEInfoApproval = true;
            //                        if (authGroup.AuthorizationGroupIsApproveLeave)
            //                            allowLeaveInfoApproval = true;

            //                    }
            //                    break;
            //                }
            //        }
            //    }
            //}
            //------------------------------------------------------

            ESSAuthorizationProcess authorization = new ESSAuthorizationProcess(dbConn);
            ArrayList workFlowDetailList          = authorization.GetAuthorizationWorkFlowDetailList(Request.EmpID, Request.EmpRequestType);
            EAuthorizationWorkFlowDetail currentWorkFlowDetail = authorization.GetCurrentWorkFlowDetailObject(
                workFlowDetailList,
                Request.EmpRequestLastAuthorizationWorkFlowIndex, CurID);
            if (currentWorkFlowDetail != null
                )
            {
                allowApproval = true;
            }
            else
            {
                allowApproval = false;
            }


            if (allowApproval || Request.EmpID == CurID)
            {
                LeaveApplicationRecord1.Visible       = LeaveApplicationRecord1.Visible & Request.EmpRequestType.Equals(EEmpRequest.TYPE_EELEAVEAPP);
                uc3Emp_Request_Empinfo.Visible        = uc3Emp_Request_Empinfo.Visible & Request.EmpRequestType.Equals(EEmpRequest.TYPE_EEPROFILE);
                LeaveApplicationCancelRecord1.Visible = LeaveApplicationCancelRecord1.Visible & Request.EmpRequestType.Equals(EEmpRequest.TYPE_EELEAVECANCEL);
                // Start 0000060, Miranda, 2014-07-13
                OTClaimRecord1.Visible       = OTClaimRecord1.Visible & Request.EmpRequestType.Equals(EEmpRequest.TYPE_EEOTCLAIM);
                OTClaimCancelRecord1.Visible = OTClaimCancelRecord1.Visible & Request.EmpRequestType.Equals(EEmpRequest.TYPE_EEOTCLAIMCANCEL);
                // End 0000060, Miranda, 2014-07-13
                // Start 0000112, Miranda, 2014-12-10
                LateWaiveRecord1.Visible       = LateWaiveRecord1.Visible & Request.EmpRequestType.Equals(EEmpRequest.TYPE_EELATEWAIVE);
                LateWaiveCancelRecord1.Visible = LateWaiveCancelRecord1.Visible & Request.EmpRequestType.Equals(EEmpRequest.TYPE_EELATEWAIVECANCEL);
                // End 0000112, Miranda, 2014-12-10
            }
            else
            {
                LeaveApplicationRecord1.Visible       = false;
                uc3Emp_Request_Empinfo.Visible        = false;
                LeaveApplicationCancelRecord1.Visible = false;
                // Start 0000060, Miranda, 2014-07-13
                OTClaimRecord1.Visible       = false;
                OTClaimCancelRecord1.Visible = false;
                // End 0000060, Miranda, 2014-07-13
                // Start 0000112, Miranda, 2014-12-10
                LateWaiveRecord1.Visible       = false;
                LateWaiveCancelRecord1.Visible = false;
                // End 0000112, Miranda, 2014-12-10
            }
            LeaveApplicationRecord1.ShowAuthorizeOption       = false;
            uc3Emp_Request_Empinfo.ShowAuthorizeOption        = false;
            LeaveApplicationCancelRecord1.ShowAuthorizeOption = false;
            // Start 0000060, Miranda, 2014-07-13
            OTClaimRecord1.ShowAuthorizeOption       = false;
            OTClaimCancelRecord1.ShowAuthorizeOption = false;
            // End 0000060, Miranda, 2014-07-13
            // Start 0000112, Miranda, 2014-12-10
            LateWaiveRecord1.ShowAuthorizeOption       = false;
            LateWaiveCancelRecord1.ShowAuthorizeOption = false;
            // End 0000112, Miranda, 2014-12-10
            if (allowApproval &&
                Request.EmpRequestStatus != EEmpRequest.STATUS_APPROVED &&
                Request.EmpRequestStatus != EEmpRequest.STATUS_REJECTED &&
                Request.EmpRequestStatus != EEmpRequest.STATUS_CANCELLED
                )
            {
                ArrayList authorizerList = currentWorkFlowDetail.GetActualAutorizerObjectList(dbConn, CurID);
                foreach (EAuthorizer authorizer in authorizerList)
                {
                    if (!authorizer.AuthorizerIsReadOnly)
                    {
                        // **** Start 2014-04-09, 0000027, Ricky So
                        //LeaveApplicationRecord1.ShowAuthorizeOption = true;
                        //uc3Emp_Request_Empinfo.ShowAuthorizeOption = true;
                        //LeaveApplicationCancelRecord1.ShowAuthorizeOption = true;
                        //
                        LeaveApplicationRecord1.ShowAuthorizeOption       = (targetEmpID != CurID);
                        uc3Emp_Request_Empinfo.ShowAuthorizeOption        = (targetEmpID != CurID);
                        LeaveApplicationCancelRecord1.ShowAuthorizeOption = (targetEmpID != CurID);
                        // **** End 2014-04-09, 00000027, Ricky So
                        // Start 0000060, Miranda, 2014-07-13
                        OTClaimRecord1.ShowAuthorizeOption       = (targetEmpID != CurID);
                        OTClaimCancelRecord1.ShowAuthorizeOption = (targetEmpID != CurID);
                        // End 0000060, Miranda, 2014-07-13
                        // Start 0000112, Miranda, 2014-12-10
                        LateWaiveRecord1.ShowAuthorizeOption       = (targetEmpID != CurID);
                        LateWaiveCancelRecord1.ShowAuthorizeOption = (targetEmpID != CurID);
                        // End 0000112, Miranda, 2014-12-10
                    }
                }
            }

            return(true);
        }
        else if (targetEmpID == CurID)
        {
            LeaveApplicationRecord1.ShowAuthorizeOption       = false;
            uc3Emp_Request_Empinfo.ShowAuthorizeOption        = false;
            LeaveApplicationCancelRecord1.ShowAuthorizeOption = false;
            // Start 0000060, Miranda, 2014-07-13
            OTClaimRecord1.ShowAuthorizeOption       = false;
            OTClaimCancelRecord1.ShowAuthorizeOption = false;
            // End 0000060, Miranda, 2014-07-13
            // Start 0000112, Miranda, 2014-12-10
            LateWaiveRecord1.ShowAuthorizeOption       = false;
            LateWaiveCancelRecord1.ShowAuthorizeOption = false;
            // End 0000112, Miranda, 2014-12-10
            return(true);
        }
        else
        {
            LeaveApplicationRecord1.Visible       = false;
            uc3Emp_Request_Empinfo.Visible        = false;
            LeaveApplicationCancelRecord1.Visible = false;
            // Start 0000060, Miranda, 2014-07-13
            OTClaimRecord1.Visible       = false;
            OTClaimCancelRecord1.Visible = false;
            // End 0000060, Miranda, 2014-07-13
            // Start 0000112, Miranda, 2014-12-10
            LateWaiveRecord1.Visible       = false;
            LateWaiveCancelRecord1.Visible = false;
            // End 0000112, Miranda, 2014-12-10
            return(false);
        }
    }