private void updateApprove(string if_agree, string next, BasicInfo info, bool if_back) { //更新审批流程 int recordID = Convert.ToInt32(Request["RecordID"]); BusinessTripApply bi = BusinessTripApply.GetBusinessTripReiByID(recordID); bi.ApproveProcess += info.StaffName.Trim() + "-" + if_agree + ","; bi.ProjectAccount = accountList.SelectedValue; BusinessTripApply.SetBusinessTripApplyByID(bi, recordID); //更新下一审批人 int applyID = Convert.ToInt32(Request["ApplyID"]); string nextApprover = next; Apply.UpdateNextApprover(applyID, nextApprover, if_back); }
protected void Page_Load(object sender, EventArgs e) { int recordID = Convert.ToInt32(Request["RecordID"]); int applyID = Convert.ToInt32(Request["ApplyID"]); //string temp=Request["finished"]; bool rejected = Convert.ToBoolean(Request["rejected"]); Apply ap = Apply.GetApplyByID(applyID); BusinessTripApply bi = BusinessTripApply.GetBusinessTripReiByID(recordID); if (!IsPostBack) { DataSet allPro = ProjectInfo.GetAllProjects(); accountList.DataSource = allPro.Tables[0].DefaultView; accountList.DataTextField = "ProjectAccount"; accountList.DataValueField = "ProjectAccount"; accountList.DataBind(); staffName.Text = bi.StaffName; department.Text = bi.Department; applyDate.Text = bi.ApplyDate.ToShortDateString(); startDate.Text = bi.StartDate.ToShortDateString(); endDate.Text = bi.EndDate.ToShortDateString(); projectName.Text = bi.ProjectName; accountList.SelectedValue = bi.ProjectAccount; reason.Text = bi.Reason; traffic.Text = bi.Traffic; cars.Text = bi.Cars; hotel.Text = bi.Hotel; meal.Text = bi.Meal; others.Text = bi.Others; moneyEstimate.Text = bi.MoneyEstimate.ToString(); processShow.Text = bi.ApproveProcess; accountList.SelectedValue = bi.ProjectAccount; } //用户权限相关显示功能 Users usr = (Users)Session["Identify"]; BasicInfo info = BasicInfo.GetBasicInfoByID(usr.UserID); if (!rejected && ap.NextApprover == bi.StaffName) { agreeButton.Visible = false; disagreeButton.Visible = false; whyDisagree.Visible = false; accountList.Enabled = false; //可打印状态 proManager.Text = "已签字"; depManager.Text = "已签字"; financial.Text = "已签字"; printBtn.Visible = true; } else if (info.StaffName.Trim() == bi.StaffName.Trim() || info.Position.Trim() == "出纳") { processShow.Visible = true; accountList.Enabled = false; if (info.Position.Trim() != "出纳") { whyDisagree.Visible = false; agreeButton.Visible = false; disagreeButton.Visible = false; } } //测试阶段保持处理流程可见,运行阶段记得去掉 processShow.Visible = true; }