Пример #1
0
    private void LeaveAction(int leave_id, int action, string leave_status, string comments)
    {
        od_approve   page_object        = new od_approve();
        DBConnection db_connection      = new DBConnection();
        int          user_access_level  = Convert.ToInt32(HttpContext.Current.Session["access_level"]);
        Hashtable    leave_details_data = new Hashtable();
        string       employee_name      = string.Empty;


        if (!string.IsNullOrEmpty(HttpContext.Current.Session["employee_name"].ToString()))
        {
            employee_name = HttpContext.Current.Session["employee_name"].ToString();
        }

        leave_details_data.Add("pialevel", user_access_level);
        leave_details_data.Add("pileave_id", leave_id);
        leave_details_data.Add("pistat", action);
        leave_details_data.Add("pitxt", comments);
        leave_details_data.Add("piapprovedby", employee_name);

        db_connection.ExecuteStoredProcedureWithHashtable_WithoutReturn("SPODApproveall", leave_details_data);

        page_object.UpdateLeave(leave_id, action, leave_status);
        page_object.SendMail(leave_id, leave_status);
    }
Пример #2
0
    public static ReturnObject DoAction(int action, string comments, string selected_rows)
    {
        od_approve    page_object     = new od_approve();
        DBConnection  db_connection   = new DBConnection();
        ReturnObject  return_object   = new ReturnObject();
        List <string> selected_leaves = JsonConvert.DeserializeObject <List <string> >(selected_rows);

        string
            query        = string.Empty,
            leave_status = string.Empty;

        int
            leave_id = 0, current_leave_flag = 0;

        try
        {
            switch (action)
            {
            case 2:
                leave_status = "Approved";
                break;

            case 3:
                leave_status = "Declined";
                break;

            case 4:
                leave_status = "Cancelled";
                break;
            }

            for (int i = 0; i < selected_leaves.Count; i++)
            {
                leave_id = Convert.ToInt32(selected_leaves[i].ToString());

                query = "select flag from ODleave where leave_id='" + leave_id + "'";

                current_leave_flag = Convert.ToInt32(db_connection.ExecuteQuery_WithReturnValueString(query));

                if (current_leave_flag == 2 && action == 3)
                {
                    return_object.status      = "error";
                    return_object.return_data = "OD is approved and cannot be declined. Please cancel the OD";
                    return(return_object);
                }
                if (current_leave_flag == 2 && action == 2)
                {
                    return_object.status      = "error";
                    return_object.return_data = "OD is approved already . ";
                    return(return_object);
                }
                if (current_leave_flag == 4)
                {
                    return_object.status      = "error";
                    return_object.return_data = "OD is already canceled";
                    return(return_object);
                }
                if (current_leave_flag == 3)
                {
                    return_object.status      = "error";
                    return_object.return_data = "OD is already Declined";
                    return(return_object);
                }


                /* STATUS MAP
                 * Submitted = 1
                 * Approved  = 2
                 * Declined  = 3
                 * Canceled  = 4
                 */


                // As the leave has been submitted further actions possible are Approving, Declining or Cancelling.
                if ((current_leave_flag == 1) && (action == 2 || action == 3 || action == 4))
                {
                    page_object.LeaveAction(leave_id, action, leave_status, comments);
                }

                // As the leave has been APPROVED, only CANCELLING the leave is possible.
                if ((current_leave_flag == 2) && (action == 4))
                {
                    page_object.LeaveAction(leave_id, action, leave_status, comments);
                }

                if (current_leave_flag == 3)
                {
                }                                // As the leave has been DECLINED, no further action is possible.

                if (current_leave_flag == 4)
                {
                }                                // As the leave has been CANCELLED, no further action is possible.
            }

            return_object.status      = "success";
            return_object.return_data = "Leave " + leave_status + " successfully!";
        }
        catch (Exception ex)
        {
            Logger.LogException(ex, page, "UPDATE_OD_APPROVAL_STATUS");

            return_object.status      = "error";
            return_object.return_data = "An error occurred while updating Leave Approval Status. Please try again. If the error persists, please contact Support.";
        }
        finally
        {
            page_object.Dispose();
        }

        return(return_object);
    }
Пример #3
0
    public static ReturnObject GetODLeavesData(int page_number, bool is_filter, string filters)
    {
        od_approve page_object = new od_approve();

        DBConnection db_connection     = new DBConnection();
        ReturnObject return_object     = new ReturnObject();
        DataTable    od_leave_data     = new DataTable();
        DataTable    branch_list_table = new DataTable();
        DataTable    CoManagerID_data  = new DataTable();

        string
            user_name   = string.Empty,
            employee_id = string.Empty,
            query       = string.Empty,
            CoManagerID = string.Empty,
            BranchList  = "'Empty',",
            branchqry   = string.Empty;

        int
            start_row = 0, number_of_record = 0,
            user_access_level   = 0,
            IsDelegationManager = 0;

        try
        {
            // getting session data for later use in the function.
            user_name         = HttpContext.Current.Session["username"].ToString();
            user_access_level = Convert.ToInt32(HttpContext.Current.Session["access_level"]);
            employee_id       = HttpContext.Current.Session["employee_id"].ToString();

            // Setting the values for pagination
            start_row        = (page_number - 1) * 30;
            number_of_record = page_number * 30 + 1;

            query = page_object.GetODLeavesBaseQuery();


            //check IsDelegationManager count
            IsDelegationManager = db_connection.GetRecordCount("Select COUNT(DelidationManagerID) from TbAsignDelegation Where DelidationManagerID='" + employee_id + "' And DeliationStatus=1 and Convert(date,Getdate())>=Convert(date,Fromdate) And Convert(date,Getdate())<=Convert(date,Todate)");

            if (IsDelegationManager > 0)
            {
                CoManagerID_data = db_connection.ReturnDataTable("Select ManagerId from TbAsignDelegation Where DelidationManagerID='" + employee_id + "' And DeliationStatus=1 and Convert(date,Getdate())>=Convert(date,Fromdate) And Convert(date,Getdate())<=Convert(date,Todate)");
                if (CoManagerID_data.Rows.Count > 0)
                {
                    foreach (DataRow dr in CoManagerID_data.Rows)
                    {
                        CoManagerID += "'" + dr["ManagerId"] + "',";
                    }

                    CoManagerID = CoManagerID.TrimEnd(',');
                }
            }

            //get list of branches assigned to logged in manager hr
            BranchList        = "'Empty',";
            branchqry         = "Select BranchCode From TbManagerHrBranchMapping Where ManagerID='" + employee_id + "'";
            branch_list_table = db_connection.ReturnDataTable(branchqry);

            //make list of Branchs
            if (branch_list_table.Rows.Count > 0)
            {
                foreach (DataRow dr in branch_list_table.Rows)
                {
                    BranchList += "'" + dr["BranchCode"] + "',";
                }
            }

            BranchList = BranchList.TrimEnd(',');

            //check CoManagerID
            if (string.IsNullOrEmpty(CoManagerID))
            {
                CoManagerID = "'Empty'";
            }

            //change query based on user_access_level
            if (user_access_level == 0)
            {
                query += " and e.Emp_Code !='" + employee_id + "'";
            }
            else if (user_access_level == 3)
            {
                query += " And e.Emp_Branch In(" + BranchList + ") ";
            }
            else if (user_access_level == 1 && !string.IsNullOrEmpty(CoManagerID) && CoManagerID != "'Empty'")
            {
                //query += " and (E.ManagerID In('" + employee_id + "'," + CoManagerID + ") ) Or (L.EmpID In(Select Emp_Code from employeemaster Where ManagerID In(" + CoManagerID + ") And L.Approvallevel=1 And L.Flag=5 And L.MFlag=1)) ";
                query += " and e.Emp_Code in (select distinct(Emp_Code) from EmployeeMaster where managerId In ('" + employee_id + "'," + CoManagerID + ") and Emp_Status=1)";
            }
            else if (user_access_level == 1 && CoManagerID == "'Empty'")
            {
                //query += " And (E.ManagerID In('" + employee_id + "')) Or (L.EmpID In(Select Emp_Code from employeemaster Where ManagerID In(" + InnerManagers + ") And L.Approvallevel=1 And L.Flag=5 And L.MFlag=1)) ";
                //query += " and e.Emp_Code in (select distinct(Emp_Code) from EmployeeMaster where managerId='" + employee_id + "' and Emp_Status=1)";
                query += " and e.Emp_Code in (select distinct(Emp_Code) from EmployeeMaster where managerId In ('" + employee_id + "') and Emp_Status=1)";
            }
            else
            {
                query += " and 1=0 ";
            }


            if (!is_filter)
            {
                query += " and L.flag=1 ";
                query += " ) a where a.Approval=1 and row > " + start_row + " and row < " + number_of_record;
            }



            if (is_filter)
            {
                query  = page_object.GetFilterQuery(filters, query);
                query += " ) a where row > " + start_row + " and row < " + number_of_record;
            }

            od_leave_data = db_connection.ReturnDataTable(query);

            return_object.status      = "success";
            return_object.return_data = JsonConvert.SerializeObject(od_leave_data, Formatting.Indented);
        }
        catch (Exception ex)
        {
            Logger.LogException(ex, page, "GET_OD_LEAVES");

            return_object.status      = "error";
            return_object.return_data = "An error occurred while performing this operation. Please try again. If the error persists, please contact Support.";
        }
        finally
        {
            page_object.Dispose();
        }

        return(return_object);
    }