예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            switch (this.RequestAction)
            {
            case RequestActionEnum.Delete:
                ent = this.GetTargetData <UsrDoubleWelfare>();
                ent.DoDelete();
                break;

            default:
                if (RequestActionString == "batchdelete")
                {
                    DoBatchDelete();
                }
                else if (RequestActionString == "ckNotice")
                {
                    CKSubmit();
                }
                else if (RequestActionString == "Submit")
                {
                    StartFlow();
                }
                else if (RequestActionString == "AutoExecuteFlow")
                {
                    AutoExecuteFlow();
                }
                else
                {
                    DoSelect();
                }
                break;
            }
        }
        //创建流程
        private void StartFlow()
        {
            if (op == "c" || op == "create")
            {
                ent           = this.GetPostedData <UsrDoubleWelfare>();
                ent.ApplyTime = DateTime.Now;
                ent.DoCreate();
                id = ent.Id;
            }
            else
            {
                ent = UsrDoubleWelfare.Find(id);
            }

            //受理人
            string UserId   = ent.ApproveUserId;
            string UserName = ent.ApproveName;

            string FlowKey = "EmpUsrWelfare";   //工作流key

            if (!string.IsNullOrEmpty(FlowKey))
            {
                string formUrl = "/EmpWelfare/UsrDoubleWelfareEdit.aspx?op=r&id=" + id;
                Guid   guid    = Aim.WorkFlow.WorkFlow.StartWorkFlow(id, formUrl, "员工配偶保险申报", FlowKey, UserInfo.UserID, UserInfo.Name);
                ent.WorkFlowState = "Start";
                ent.WorkFlowCode  = guid.ToString(); //InstanceId
                ent.DoUpdate();
                this.PageState.Add("NextInfo", guid.ToString() + "$" + UserId + "|" + UserName);
            }
        }
예제 #3
0
        private void DoBatchDelete()
        {
            IList <object> idList = RequestData.GetList <object>("IdList");

            if (idList != null && idList.Count > 0)
            {
                UsrDoubleWelfare.DoBatchDelete(idList.ToArray());
            }
        }
 /// <summary>
 /// 审批完成
 /// </summary>
 private void SubmitFinish()
 {
     if (!string.IsNullOrEmpty(id))
     {
         UsrDoubleWelfare Ent = UsrDoubleWelfare.Find(id);
         Ent.WorkFlowState = "End";
         Ent.Result        = RequestData.Get <string>("ApproveResult"); //处理结果
         Ent.DoUpdate();
     }
 }
        //获取下一节点人
        private void GetNextUsers()
        {
            //  taskName id   nextUserName
            string id       = this.RequestData.Get("id") + "";
            string taskName = this.RequestData.Get("taskName") + "";
            string nextName = this.RequestData.Get("nextName") + "";

            if (!string.IsNullOrEmpty(id))
            {
                var Ent = UsrDoubleWelfare.Find(id);
                if (nextName == "审批人")
                {
                    this.PageState.Add("NextUsers", new { nextUserId = Ent.ApproveUserId, nextUserName = Ent.ApproveName });
                }
            }
        }
        /// <summary>
        /// 发起通知 是否在通知时间范围内
        /// </summary>
        //通知范围检查
        private void CKSubmit()
        {
            string Id     = RequestData.Get("Id") + "";
            string UserId = string.Empty; //申请人ID

            if (!string.IsNullOrEmpty(Id))
            {
                var Ent = UsrDoubleWelfare.Find(Id);
                UserId = Ent.UserId;
                Ent    = null;
            }
            else
            {
                UserId = UserInfo.UserID;
            }

            ComUtility Ut    = new ComUtility();
            string     UsrId = Ut.CheckApply("员工配偶保险", UserId, "");

            this.PageState.Add("State", UsrId);
        }
예제 #7
0
        //创建流程
        private void StartFlow()
        {
            string id = RequestData.Get("Id") + "";

            if (!string.IsNullOrEmpty(id))
            {
                ent = UsrDoubleWelfare.Find(id);
            }
            //受理人
            string UserId   = ent.ApproveUserId;
            string UserName = ent.ApproveName;

            string FlowKey = "EmpUsrWelfare";   //工作流key

            if (!string.IsNullOrEmpty(FlowKey))
            {
                string formUrl = "/EmpWelfare/UsrDoubleWelfareEdit.aspx?op=r&id=" + id;
                Guid   guid    = Aim.WorkFlow.WorkFlow.StartWorkFlow(id, formUrl, "员工配偶保险申报", FlowKey, UserInfo.UserID, UserInfo.Name);
                ent.WorkFlowState = "Start";
                ent.WorkFlowCode  = guid.ToString(); //InstanceId
                ent.DoUpdate();
                this.PageState.Add("NextInfo", guid.ToString() + "$" + UserId + "|" + UserName);
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            op   = RequestData.Get <string>("op");
            id   = RequestData.Get <string>("id");
            type = RequestData.Get <string>("type");


            switch (this.RequestAction)
            {
            case RequestActionEnum.Update:
                ent = this.GetMergedData <UsrDoubleWelfare>();
                ent.DoUpdate();
                break;

            case RequestActionEnum.Insert:
            case RequestActionEnum.Create:
                ent           = this.GetPostedData <UsrDoubleWelfare>();
                ent.ApplyTime = DateTime.Now;


                string userid = "";
                if (UserInfo != null)
                {
                    userid = UserInfo.UserID;
                }
                else
                {
                    userid = RequestData.Get <string>("userid");
                }

                ent.NoticeId = RequestData.Get <string>("noticeid");

                ent.CreateId   = userid;
                ent.CreateName = "";
                ent.CreateTime = DateTime.Now;

                ent.DoCreate();
                break;

            case RequestActionEnum.Delete:
                ent = this.GetTargetData <UsrDoubleWelfare>();
                ent.DoDelete();
                return;

            default:
                if (RequestActionString == "GetWorkNo")
                {
                    string     UserID = RequestData.Get("UserID") + "";
                    ComUtility Ut     = new ComUtility();
                    this.PageState.Add("WorkNo", Ut.GetWorkNo(UserID));
                }
                else if (RequestActionString == "ckNotice")      //通知检查
                {
                    CKSubmit();
                }
                else if (RequestActionString == "Submit")      //提交流程
                {
                    StartFlow();
                }
                else if (RequestActionString == "AutoExecuteFlow")
                {
                    AutoExecuteFlow();
                }
                else if (RequestActionString == "submitfinish")
                {
                    SubmitFinish();
                }
                else if (RequestActionString == "GetNextUsers")
                {
                    GetNextUsers();
                }
                else
                {
                    DoSelect();
                }
                break;
            }
        }
        private void DoSelect()
        {
            if (op != "c" && op != "cs")
            {
                string sql = @"select * from Task where PatIndex('%{0}%',EFormName)>0  and Status='4' order by FinishTime asc";
                sql = string.Format(sql, id);
                IList <EasyDictionary> taskDics = DataHelper.QueryDictList(sql);
                PageState.Add("Opinion", taskDics);
                string taskId = RequestData.Get <string>("TaskId");//取审批暂存时所填写的意见
                if (!string.IsNullOrEmpty(taskId))
                {
                    Task tEnt = Task.Find(taskId);
                    if (tEnt.Status != 4 && !string.IsNullOrEmpty(tEnt.Description))
                    {
                        PageState.Add("UnSubmitOpinion", tEnt.Description);
                    }
                }


                PageState.Add("AppealTypeName", SysEnumeration.GetEnumDict("EmpAppeal"));

                if (!String.IsNullOrEmpty(id))
                {
                    ent = UsrDoubleWelfare.Find(id);
                }
                this.SetFormData(ent);
            }
            if (op == "c" || op == "create")
            {
                string userid = "";
                if (UserInfo != null)
                {
                    userid = UserInfo.UserID;
                }
                else
                {
                    userid = RequestData.Get <string>("userid");
                }

                var Ent = SysUser.FindFirstByProperties("UserID", userid);


                //  string sql = "select * from UsrTravelWelfare";

                UsrDoubleWelfare[] TWEnt = UsrDoubleWelfare.FindAllByProperties(UsrDoubleWelfare.Prop_UserId, RequestData.Get <string>("userid"), UsrDoubleWelfare.Prop_NoticeId, RequestData.Get <string>("noticeid"));
                if (TWEnt.Length != 0)
                {
                    this.SetFormData(TWEnt[0]);
                }
                else
                {
                    //用来获取配置的审批人
                    string SQL = "select top 1 * from  FL_Culture..SysApproveConfig where CompanyId='{0}' and len(CoupleWelfareId)>0 ";
                    SQL = string.Format(SQL, Ent.Pk_corp);
                    DataTable Dt = DataHelper.QueryDataTable(SQL);

                    //公司与部门
                    SQL = @"select B.GroupID As CompanyId,B.Name As CompanyName,C.GroupID AS DeptId,C.Name As DeptName
                        from  sysuser As A
	                        left join sysgroup As B
	                        on A.pk_corp=B.groupID
                        left join sysgroup As C
	                        on C.GroupID=A.pk_deptdoc
                        where A.UserID='{0}'";
                    SQL = string.Format(SQL, userid);
                    DataTable Dt1 = DataHelper.QueryDataTable(SQL);

                    string CompanyName = string.Empty, CompanyId = string.Empty;
                    string DeptName = string.Empty, DeptId = string.Empty;

                    if (Dt1.Rows.Count > 0)
                    {
                        CompanyName = Dt1.Rows[0]["CompanyName"].ToString();
                        CompanyId   = Dt1.Rows[0]["CompanyId"].ToString();
                        DeptId      = Dt1.Rows[0]["DeptId"].ToString();
                        DeptName    = Dt1.Rows[0]["DeptName"].ToString();
                    }

                    if (Ent != null)
                    {
                        var Obj = new
                        {
                            UserId     = Ent.UserID,
                            UserName   = Ent.Name,
                            Sex        = Ent.Sex,
                            Age        = Ent.Wage,
                            WorkNo     = Ent.WorkNo,
                            IndutyData = Ent.Indutydate,

                            CompanyName = CompanyName,
                            CompanyId   = CompanyId,
                            DeptId      = DeptId,
                            DeptName    = DeptName,

                            ApproveName   = Dt == null ? "" : Dt.Rows.Count > 0 ? Dt.Rows[0]["CoupleWelfareName"].ToString() : "",
                            ApproveUserId = Dt == null ? "" : Dt.Rows.Count > 0 ? Dt.Rows[0]["CoupleWelfareId"].ToString() : ""
                        };
                        this.SetFormData(Obj);
                    }
                }
            }
        }
예제 #10
0
 /// <summary>
 /// 查询
 /// </summary>
 private void DoSelect()
 {
     SearchCriterion.AddSearch("UserId", UserInfo.UserID);
     ents = UsrDoubleWelfare.FindAll(SearchCriterion);
     this.PageState.Add("UsrDoubleWelfareList", ents);
 }