Exemple #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Authentication.HasResource(User.Identity.Name, "Overtime"))
            {
                Response.Redirect(@"/account/logon.aspx?ReturnUrl=%2f");
            }

            if (!IsPostBack)
            {
                //進入新增頁面
                _overtimeRepo = RepositoryFactory.CreateOvertimeRepo();
                _rootRepo     = RepositoryFactory.CreateRootRepo();

                //將部門資料 與下拉式選單綁定
                ViewUtils.SetOptions(DefaultDeptName, _rootRepo.GetDepartment());
                //將支援部門資料 與下拉式選單綁定
                ViewUtils.SetOptions(DefaultSupportDeptName, _rootRepo.GetDepartment());
                //20161117 修改抓成本部門
                //ViewUtils.SetOptions(DefaultSupportDeptName, _rootRepo.GetCostDepartment());
                //將訂餐資料 與下拉式選單綁定
                ViewUtils.SetOptions(DefaultMealOrderValue, _overtimeRepo.CreateMealOrderType());
                //將報酬資料 與下拉式選單綁定
                ViewUtils.SetOptions(DefaultPayTypeValue, _overtimeRepo.CreatePayType());

                var employeeData = _rootRepo.QueryForEmployeeByADAccount(User.Identity.Name);
                ApplyID_FK.Value = employeeData != null ? employeeData["EmployeeID"].ToString() : String.Empty;
                ApplyName.Text   = employeeData != null ? employeeData["EmployeeName"].ToString() : String.Empty;

                var deptData = _rootRepo.QueryForDepartmentByDeptID(employeeData != null ? employeeData["departmentID_FK"].ToString() : String.Empty);
                ApplyDeptID_FK.Value          = deptData != null ? deptData["DepartmentID"].ToString() : String.Empty;
                ApplyDeptName.Text            = deptData != null ? deptData["DepartmentName"].ToString() : String.Empty;
                DefaultDeptName.SelectedValue = !String.IsNullOrWhiteSpace(ApplyDeptID_FK.Value) ? ApplyDeptID_FK.Value : String.Empty;
                //20161117 支援單位預設值抓成本部門(已取消此做法)
                DefaultSupportDeptName.SelectedValue = !String.IsNullOrWhiteSpace(ApplyDeptID_FK.Value) ? ApplyDeptID_FK.Value : String.Empty;
                //DefaultSupportDeptName.SelectedValue = employeeData != null ? employeeData["CostDepartmentID"].ToString() : String.Empty;
                if (employeeData["CostDepartmentID"].ToString().Substring(0, 2) == "39")
                {
                    DefaultMealOrderValue.SelectedValue = "none";
                }
                else
                {
                    DefaultMealOrderValue.SelectedValue = "Carnivore";
                }
                DefaultPayTypeValue.SelectedValue = "overtimePay";
                DefaultStartDateTime.Text         = DateTime.Now.ToString("yyyy-MM-dd 17:20:00");
                DefaultEndDateTime.Text           = DateTime.Now.ToString("yyyy-MM-dd 19:20:00");
                PageTitle.Value  = "表單新增作業 > 加班單";
                FormSeries.Value = "Overtime";
                DefaultSupportDeptName_SelectedIndexChanged(sender, e);
                string signDocID = String.IsNullOrEmpty(Request["SignDocID_FK"]) ? String.Empty : Request["SignDocID_FK"].ToString();
                if (!String.IsNullOrWhiteSpace(signDocID))
                {
                    PageTitle.Value = "表單編輯作業 > 加班單";
                    SignDocID.Value = signDocID;
                }
            }
        }
Exemple #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Authentication.HasResource(User.Identity.Name, "OvertimeList"))
            {
                Response.Redirect(@"/account/logon.aspx?ReturnUrl=%2f");
            }

            if (!IsPostBack)
            {
                _overitmeRepo = RepositoryFactory.CreateOvertimeRepo();
                _rootRepo     = RepositoryFactory.CreateRootRepo();
                _smartRepo    = RepositoryFactory.CreateSmartManRepo();

                // 取得 QueryString
                var paggerParms   = WebUtils.ParseQueryString <PaggerParms>(Page.Request);
                var signListParms = WebUtils.ParseQueryString <SignListParms>(Page.Request);
                signListParms.GridView      = OvertimeGridView;
                signListParms.PaginationBar = paginationBar;

                //根據查詢的 簽核代碼 搜尋加班單
                var pagination = _overitmeRepo.GetOvertimeListPagination(signListParms, paggerParms);

                if (pagination == null)
                {
                    return;
                }

                //設定 gridView Source
                ViewUtils.SetGridView(OvertimeGridView, pagination.Data);

                //Pagination Bar Generator
                string paginationHtml = WebUtils.GetPagerNumericString(pagination, Request);
                paginationBar.InnerHtml = paginationHtml;


                model = _overitmeRepo.GetWorkflowData(signListParms.SignDocID);
                WebUtils.PageDataBind(model, this.Page);
                Signed.NavigateUrl = "~/Area/Sign/WorkflowDetail.aspx?signDocID=" + signListParms.SignDocID;
                if (model == null)
                {
                    return;
                }
                var employeeData = _rootRepo.QueryForEmployeeByEmpID(model.EmployeeID_FK);
                ApplyName.Text = employeeData != null ? employeeData["EmployeeName"].ToString() : String.Empty;
            }
        }
        protected void SaveBtn_Click(object sender, EventArgs e)
        {
            _processwfRepo = RepositoryFactory.CreateProcessWorkflowRepo();
            _rootRepo      = RepositoryFactory.CreateRootRepo();

            //取得頁面資料

            //簽核擔當
            ProcessWorkflowDetailViewModel model   = PageDataBind();
            ProcessWorkflowViewModel       model_M = _processwfRepo.GetWorkflowDataAndCheck(Request["SignDocID"], User.Identity.Name);

            //btn處理
            ViewUtils.ButtonOff(SaveBtn, CoverBtn);

            var sectionChief = new SectionChief(null);

            #region #0012 忘刷單的時間如果不符合邏輯,在確認簽核的時候主管要看到明顯提示 (目前針對桃園所做設定)

            //判斷是否為忘刷單
            if (model_M.FormID_FK == 1)
            {
                //判斷登入者是否為桃園所的員工
                EmployeeRepository employeeRepository = RepositoryFactory.CreateEmployeeRepo();
                EmployeeViewModel  empInfo            = employeeRepository.GetEmployeeDataByADAccount(Context.User.Identity.Name);
                if (empInfo.DepartmentID_FK == "3910")
                {
                    bool isInRule = _processwfRepo.CheckFogotPunchTimeHasInRule(Request["SignDocID"]);
                    if (!isInRule)
                    {
                        ClientScriptManager cs = Page.ClientScript;
                        cs.RegisterClientScriptBlock(this.GetType(), "PopupScript", "var fpTimeIsSuccess = false;", true);
                        return;
                    }
                }
            }

            #endregion #0012 忘刷單的時間如果不符合邏輯,在確認簽核的時候主管要看到明顯提示 (目前針對桃園所做設定)

            try
            {
                if (model_M.FormID_FK == 3 && model.Status == 3)
                {
                    //txterror.Text = "123";
                    //Response.Write("未填寫單位主管意見".ToAlertFormat());
                    _trainDetaiRepo = RepositoryFactory.CreateTrainDetailRepo();
                    //取得頁面資料

                    model = PageDataBind();
                    var    QuestionDataList = _trainDetaiRepo.QueryQuestionDataByChief("02");
                    String chkString        = "";
                    String ansString        = "";
                    QuestionDataList.All(row =>
                    {
                        if (row["ANSTYPE"].ToString() == "C")//填文字
                        {
                            TextBox tmpbox = PlaceHolder1.FindControl("textbox" + row["serial_no"].ToString()) as TextBox;
                            ansString      = tmpbox.Text;
                            if (ansString == "")
                            {
                                chkString += row["CODENAME"].ToString() + " 不可空白!";
                            }
                        }
                        else if (row["ANSTYPE"].ToString() == "N")
                        {
                            //RadioButtonList tmprbl = PlaceHolder1.FindControl("rbl" + row["serial_no"].ToString()) as RadioButtonList;
                            RadioButtonList tmprbl = (RadioButtonList)PlaceHolder1.FindControl("rbl" + row["serial_no"].ToString());
                            ansString = tmprbl.SelectedValue;
                            if (ansString == "")
                            {
                                chkString += row["CODENAME"].ToString() + " 不可空白!";
                            }
                        }
                        return(true);
                    });
                    if (chkString != "")
                    {
                        Response.Write(chkString.ToAlertFormat());
                        return;
                    }
                    else
                    {
                        //儲存主管意見
                        var    successRdUrl = String.Empty;
                        string strCLID      = _trainDetaiRepo.Find_CLID(Request["SignDocID"]);
                        string strSID       = _trainDetaiRepo.Find_SID(Request["SignDocID"]);
                        //刪除記錄調查表的主管意見
                        _trainDetaiRepo.DelChiefAnswer("CHARACTER_ANSWER", strCLID, strSID, "02");
                        _trainDetaiRepo.DelChiefAnswer("NUMERIC_ANSWER", strCLID, strSID, "02");
                        QuestionDataList.All(row =>
                        {
                            if (row["ANSTYPE"].ToString() == "C")//填文字
                            {
                                //新增
                                TextBox tmpbox = PlaceHolder1.FindControl("textbox" + row["serial_no"].ToString()) as TextBox;
                                //ansString = tmpbox.Text;
                                _trainDetaiRepo.AddAnswer_C(strCLID, strSID, row["TABLE_ID"].ToString(), row["QNO"].ToString(), row["serial_no"].ToString(), tmpbox.Text, "Portal");
                            }
                            else if (row["ANSTYPE"].ToString() == "N")
                            {
                                //新增
                                RadioButtonList tmprbl = (RadioButtonList)PlaceHolder1.FindControl("rbl" + row["serial_no"].ToString());
                                //ansString = tmprbl.SelectedValue;
                                _trainDetaiRepo.AddAnswer_N(strCLID, strSID, row["TABLE_ID"].ToString(), row["QNO"].ToString(), row["serial_no"].ToString(), tmprbl.SelectedValue, "Portal");
                            }
                            return(true);
                        });
                    }
                }

                //主管簽核
                sectionChief.SignOff(model);

                MailInfo info = new MailInfo()
                {
                    AddresseeTemp = System.Web.Configuration.WebConfigurationManager.AppSettings["MailTemplate"],
                    DomainPattern = ConfigUtils.ParsePageSetting("Pattern")["DomainPattern"],
                };

                var     mainData = _processwfRepo.GetWorkflowData(model.SignDocID_FK, null);
                DataRow deptData = null;
                //送簽人AD帳號
                var signSender = (string)_rootRepo.QueryForEmployeeByEmpID(mainData.EmployeeID_FK)["ADAccount"];

                switch (mainData.FinalStatus)
                {
                //待簽核
                default:
                case 2:
                    //尋找目前待簽主管AD帳號
                    deptData = _rootRepo.QueryForDepartmentByDeptID(mainData.CurrentSignLevelDeptID_FK);
                    info.To  = (string)_rootRepo.QueryForEmployeeByEmpID((string)deptData["chiefID_FK"])["ADAccount"];

                    info.Subject = String.Format("系統提醒!簽核單號 : {0} 已經送達,請儘速處理!", model.SignDocID_FK);
                    info.Body.AppendFormat("{0}{1}", info.Subject, "此件為系統發送,請勿回覆!");
                    break;

                //駁回
                case 4:
                    info.To = signSender;

                    info.Subject = String.Format("系統提醒!簽核單號 : {0} 已被駁回,請儘速修改!", model.SignDocID_FK);
                    info.Body.AppendFormat("{0}{1}", info.Subject, "此件為系統發送,請勿回覆!");
                    break;

                //結案
                case 6:

                    #region #0013 加班時間小於結薪日,通知email給總務手動要寫入志元 直接判斷Table=>OvertimeForm的AutoInsert

                    //加班單的時候傳的參數為2,方能判斷是否送來簽核的是加班單
                    if (model_M.FormID_FK == 2)
                    {
                        string sid = Request["SignDocID"].ToString();
                        //取得結薪日
                        DateTime salaryLimit = Convert.ToDateTime(_rootRepo.GetSalaryLimit()["LimitDate"]);
                        Overtime overSev     = new Overtime();
                        List <OvertimeViewModel> overDataList   = new List <OvertimeViewModel>();
                        List <OvertimeViewModel> resultDataList = new List <OvertimeViewModel>();

                        //取得加班資料明細
                        OvertimeRepository _overtimeRepo = RepositoryFactory.CreateOvertimeRepo();
                        DataTable          tableData     = _overtimeRepo.QueryOvertimeFormData(sid);
                        var rows = tableData.Select();


                        overDataList = _overtimeRepo.dataMapping(tableData);
                        foreach (var over in overDataList)
                        {
                            if (!over.AutoInsert)
                            {
                                resultDataList.Add(over);
                            }
                            //DateTime startDate = (DateTime)over.StartDateTime;
                            //int mathDate = new TimeSpan(startDate.Ticks - salaryLimit.Ticks).Days;
                            //if (mathDate <= 0)
                            //resultDataList.Add(over);
                        }

                        //info.To = "wenhua.yu";
                        info.To = "juncheng.liu";
                        info.CC = new List <string>()
                        {
                            "juncheng.liu"
                        };
                        foreach (var ov in resultDataList)
                        {
                            info.Subject = String.Format("系統提醒!加班單號 : {0} [{1}-{2}]手動轉志元通知!", sid, ov.EmployeeID_FK, ov.EmployeeName);
                            DateTime      ovStartTime = (DateTime)ov.StartDateTime;
                            StringBuilder mailBody    = new StringBuilder();
                            mailBody.AppendLine(@"<p>[通知] 加班單 手動轉志元通知。</p>");
                            mailBody.AppendLine(@"<p>&nbsp;</p>");
                            mailBody.AppendLine(@"<p>Dear&nbsp;遇玟樺:</p>");
                            mailBody.AppendLine(@"<p>需手動轉入志元的加班單如下:</p>");
                            mailBody.AppendLine(@"<p>加班單號:<span style=""color:#0000ff;"">OT201707290010</span></p>");
                            mailBody.AppendLine(@"<p>加班日:" + ovStartTime.ToFullTaiwanDate() + "</p>");
                            //mailBody.AppendLine(@"<p>結薪日:<span style=""color:#ff0000;"">" + salaryLimit.ToFullTaiwanDate() + "</span></p>");
                            mailBody.AppendLine(@"<p>員工ID:" + ov.EmployeeID_FK + "</p>");
                            mailBody.AppendLine(@"<p>員工姓名:" + ov.EmployeeName + "</p>");
                            mailBody.AppendLine(@"<p><a href=""http://portal.rinnai.com.tw/Area/Manage/OvertimeReport.aspx"">Portal</a></p>");
                            info.Body = mailBody;
                            _mailer   = new Mailer(info);
                            //if (PublicRepository.CurrentWorkflowMode == Enums.WorkflowTypeEnum.RELEASE)
                            _mailer.SendMail();
                        }
                    }

                    #endregion #0013 加班時間小於結薪日,通知email給總務手動要寫入志元 直接判斷Table=>OvertimeForm的AutoInsert

                    //尋找歸檔人員
                    var fillingDept = (string)_rootRepo.QueryForDepartmentByFormID(mainData.FormID_FK)["DepartmentID"];
                    deptData = _rootRepo.QueryForDepartmentByDeptID(fillingDept);
                    //20170327 修改不寄給歸檔人員
                    //info.To = (string)_rootRepo.QueryForEmployeeByEmpID((string)deptData["FilingEmployeeID_FK"])["ADAccount"];
                    info.To = signSender;
                    //info.CC.Add(signSender);

                    info.Subject = String.Format("系統提醒!簽核單號 : {0} 已通過審核並結案,請儘速確認!", model.SignDocID_FK);
                    info.Body.AppendFormat("{0}{1}", info.Subject, "此件為系統發送,請勿回覆!");
                    break;
                }
                GlobalDiagnosticsContext.Set("User", User.Identity.Name);
                //mail
                _mailer = new Mailer(info);
                if (PublicRepository.CurrentWorkflowMode == Enums.WorkflowTypeEnum.RELEASE)
                {
                    _mailer.SendMail();
                }
                //log
                var cc = String.Join(",", info.CC);
                _log.Trace(String.Format("MailTo : {0}\r\ncc : {1}\r\nTitle : {2}\r\nContent : {3}\r\n", info.To, cc, info.Subject, info.Body));

                Response.Write("已送出簽核".ToAlertAndRedirect("/Area/Sign/ProcessWorkflowList.aspx?orderField=ModifyDate&descending=True"));
            }
            catch (Exception ex)
            {
                Response.Write(ex.Message.ToAlertFormat());
            }
            finally
            {
                //btn處理
                SaveBtn.ButtonOn(CoverBtn);
            }
        }