private void DoApprove(int State, string remark) { foreach (GridViewRow gr in gv_List.Rows) { if (((CheckBox)gr.FindControl("chk_ID")).Checked) { int taskid = (int)gv_List.DataKeys[gr.RowIndex][0]; if (taskid > 0) { int jobid = EWF_TaskBLL.StaffCanApproveTask(taskid, (int)Session["UserID"]); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid > 0) { if (State == 2) { job.Decision(decisionid, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 } else { job.Decision(decisionid, (int)Session["UserID"], 3, "汇总单批量审批不通过!"); //3:审批不通过 } } } } } } } BindGrid(); MessageBox.Show(this, "审批成功!"); }
protected void DoApprove(bool ApproveFlag) { #region 仅查看待我审批的工资申请单 string taskids = ""; if (ddl_State.SelectedValue == "1") { taskids = GetNeedMeApproveTaskIDs(); if (taskids == "") { MessageBox.Show(this, "对不起,没有需要待您审批的费用申请单!"); return; } } #endregion string[] TaskIDs = taskids.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); foreach (string taskid in TaskIDs) { int jobid = EWF_TaskBLL.StaffCanApproveTask(int.Parse(taskid), (int)Session["UserID"]); EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job.Model != null) { int decision = job.StaffCanDecide((int)Session["UserID"]); if (decision > 0) { if (ApproveFlag) { job.Decision(decision, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 } else { job.Decision(decision, (int)Session["UserID"], 3, "汇总单批量未能审批通过!"); //3:审批未通过 } } } } BindGrid(); MessageBox.Show(this, ApproveFlag ? "审批成功!" : "已成功将选择区域的申请单,设为批复未通过!"); return; }
private int DoApproveTask(int TaskID, int DessionResult, string DessionComment) { if (TaskID > 0) { int jobid = EWF_TaskBLL.StaffCanApproveTask(TaskID, (int)Session["UserID"]); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid > 0) { return(job.Decision(decisionid, (int)Session["UserID"], DessionResult, DessionComment)); } } } } return(-1); }
private void Approve(int state) { int userid = (int)Session["UserID"]; foreach (GridViewRow row in gv_List.Rows) { Object cbx = row.FindControl("chk_ID"); if (cbx != null && ((CheckBox)cbx).Checked) { Object tbx = row.FindControl("tbx_Remark"); string Remark = ""; if (tbx != null && !string.IsNullOrEmpty(((TextBox)tbx).Text)) { Remark = ((TextBox)tbx).Text; } else { Remark = state == 2 ? "汇总单批量审批通过!" : "汇总单批量审批不通过!"; } int contractid = (int)gv_List.DataKeys[row.RowIndex]["ID"]; CM_ContractBLL con = new CM_ContractBLL(contractid); int taskid = con.Model.ApproveTask; if (taskid > 0) { int jobid = EWF_TaskBLL.StaffCanApproveTask(taskid, userid); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide(userid); if (decisionid > 0) { job.Decision(decisionid, userid, state, Remark); } } } } } } }
protected int DoApprove(bool ApproveFlag) { int counts = 0; foreach (GridViewRow row in gv_DetailList.Rows) { if (row.RowType == DataControlRowType.DataRow) { CheckBox cbx = row.FindControl("cb_Selected") as CheckBox; if (cbx.Checked) { int taskid = (int)gv_DetailList.DataKeys[row.RowIndex]["FNA_FeeApply_ApproveTask"]; int jobid = EWF_TaskBLL.StaffCanApproveTask(taskid, (int)Session["UserID"]); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid > 0) { if (ApproveFlag) { job.Decision(decisionid, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 } else { job.Decision(decisionid, (int)Session["UserID"], 3, "汇总单批量审批不通过!"); //3:审批不通过 } counts++; } } } } } } return(counts); }
protected int DoApprove(bool ApproveFlag) { int counts = 0; foreach(GridViewRow row in gv_DetailList.Rows) { if (row.RowType == DataControlRowType.DataRow) { CheckBox cbx = row.FindControl("cb_Selected") as CheckBox; if (cbx.Checked) { int taskid = (int)gv_DetailList.DataKeys[row.RowIndex]["FNA_FeeApply_ApproveTask"]; int jobid = EWF_TaskBLL.StaffCanApproveTask(taskid, (int)Session["UserID"]); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid > 0) { if (ApproveFlag) job.Decision(decisionid, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 else job.Decision(decisionid, (int)Session["UserID"], 3, "汇总单批量审批不通过!"); //3:审批不通过 counts++; } } } } } } return counts; }
protected void gv_List_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName != "Approved" && e.CommandName != "UnApproved") { BindGrid(); return; } #region 仅查看待我审批的费用申请单 string taskids = ""; if (ddl_State.SelectedValue == "1") { taskids = GetNeedMeApproveTaskIDs(); if (taskids == "") { MessageBox.Show(this, "对不起,没有需要待您审批的费用申请单!"); return; } } #endregion string[] TaskIDs = taskids.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); int organizecity = int.Parse(e.CommandArgument.ToString()); string condition = " FNA_FeeWriteOff.State = 2 "; #region 组织明细记录的查询条件 //管理片区及所有下属管理片区 if (organizecity != 1) { Addr_OrganizeCityBLL orgcity = new Addr_OrganizeCityBLL(organizecity); string orgcitys = orgcity.GetAllChildNodeIDs(); if (orgcitys != "") orgcitys += ","; orgcitys += organizecity.ToString(); condition += " AND FNA_FeeWriteOff.OrganizeCity IN (" + orgcitys + ")"; } //会计月条件 condition += " AND FNA_FeeWriteOff.AccountMonth = " + ddl_Month.SelectedValue; #endregion if (e.CommandName == "Approved") { IList<FNA_FeeWriteOff> lists = FNA_FeeWriteOffBLL.GetModelList(condition); foreach (FNA_FeeWriteOff fee in lists) { if (TaskIDs.Contains(fee.ApproveTask.ToString())) { int jobid = EWF_TaskBLL.StaffCanApproveTask(fee.ApproveTask, (int)Session["UserID"]); EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job.Model != null) { int decision = job.StaffCanDecide((int)Session["UserID"]); if (decision > 0) job.Decision(decision, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 } } } BindGrid(); MessageBox.Show(this, "审批成功!"); } else if (e.CommandName == "UnApproved") { IList<FNA_FeeWriteOff> lists = FNA_FeeWriteOffBLL.GetModelList(condition); foreach (FNA_FeeWriteOff fee in lists) { if (TaskIDs.Contains(fee.ApproveTask.ToString())) { int jobid = EWF_TaskBLL.StaffCanApproveTask(fee.ApproveTask, (int)Session["UserID"]); EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job.Model != null) { int decision = job.StaffCanDecide((int)Session["UserID"]); if (decision > 0) job.Decision(decision, (int)Session["UserID"], 3, "汇总单批量未能审批通过!"); //3:审批未通过 } } } BindGrid(); MessageBox.Show(this, "已成功将选择区域的申请单,设为批复未通过!"); } }
protected void gv_List_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName != "Approved" && e.CommandName != "UnApproved") { BindGrid(); return; } #region 仅查看待我审批的费用申请单 string taskids = ""; if (ddl_State.SelectedValue == "1") { taskids = GetNeedMeApproveTaskIDs(); if (taskids == "") { MessageBox.Show(this, "对不起,没有需要待您审批的费用申请单!"); return; } } #endregion string[] TaskIDs = taskids.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); int organizecity = int.Parse(e.CommandArgument.ToString()); string condition = " FNA_FeeWriteOff.State = 2 "; #region 组织明细记录的查询条件 //管理片区及所有下属管理片区 if (organizecity != 1) { Addr_OrganizeCityBLL orgcity = new Addr_OrganizeCityBLL(organizecity); string orgcitys = orgcity.GetAllChildNodeIDs(); if (orgcitys != "") { orgcitys += ","; } orgcitys += organizecity.ToString(); condition += " AND FNA_FeeWriteOff.OrganizeCity IN (" + orgcitys + ")"; } //会计月条件 condition += " AND FNA_FeeWriteOff.AccountMonth = " + ddl_Month.SelectedValue; #endregion if (e.CommandName == "Approved") { IList <FNA_FeeWriteOff> lists = FNA_FeeWriteOffBLL.GetModelList(condition); foreach (FNA_FeeWriteOff fee in lists) { if (TaskIDs.Contains(fee.ApproveTask.ToString())) { int jobid = EWF_TaskBLL.StaffCanApproveTask(fee.ApproveTask, (int)Session["UserID"]); EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job.Model != null) { int decision = job.StaffCanDecide((int)Session["UserID"]); if (decision > 0) { job.Decision(decision, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 } } } } BindGrid(); MessageBox.Show(this, "审批成功!"); } else if (e.CommandName == "UnApproved") { IList <FNA_FeeWriteOff> lists = FNA_FeeWriteOffBLL.GetModelList(condition); foreach (FNA_FeeWriteOff fee in lists) { if (TaskIDs.Contains(fee.ApproveTask.ToString())) { int jobid = EWF_TaskBLL.StaffCanApproveTask(fee.ApproveTask, (int)Session["UserID"]); EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job.Model != null) { int decision = job.StaffCanDecide((int)Session["UserID"]); if (decision > 0) { job.Decision(decision, (int)Session["UserID"], 3, "汇总单批量未能审批通过!"); //3:审批未通过 } } } } BindGrid(); MessageBox.Show(this, "已成功将选择区域的申请单,设为批复未通过!"); } }
protected void bt_OK_Click(object sender, EventArgs e) { int ApproveCount=0, UnApproveCount=0,errcount=0; if (txt_UnApproveContractID.Text.Trim() != "") { string[] UnApproveID = Regex.Split(txt_UnApproveContractID.Text.Trim(), "\r\n", RegexOptions.IgnoreCase); if (txt_ApproveContractID.Text.Trim() != "") { string[] ApproveID = Regex.Split(txt_ApproveContractID.Text.Trim(), "\r\n", RegexOptions.IgnoreCase); foreach (string contractid in UnApproveID) { if (ApproveID.Contains(contractid)) { MessageBox.Show(this, "ID为【" + contractid + "】的返利协议同时出现在了【审批通过】与【审批不通过】编辑框中!"); return; } } } } if (txt_ApproveContractID.Text.Trim() != "") { string[] ApproveID = Regex.Split(txt_ApproveContractID.Text.Trim(), "\r\n", RegexOptions.IgnoreCase); CM_ContractBLL _bll; StringBuilder approvebuild = new StringBuilder(""); for (int i = 0; i < ApproveID.Length; i++) { int ContractID; if (!ApproveID[i].Trim().Equals("") && int.TryParse(ApproveID[i].Trim(), out ContractID)) { _bll = new CM_ContractBLL(ContractID); if (_bll.Model != null) { int jobid = EWF_TaskBLL.StaffCanApproveTask(_bll.Model.ApproveTask, 7394); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide(7394); if (decisionid > 0) { ApproveCount++; job.Decision(decisionid, (int)Session["UserID"], 2, "批量审批通过!"); //2:审批已通过 approvebuild.Append("ID为【" + ContractID.ToString() + "】的返利协议审批通过 "); } } } else { approvebuild.Append("<span style='color: Red'>ID为【" + ContractID.ToString() + "】的返利协议未到客服确认环节 </span>"); errcount++; } } else { approvebuild.Append("<span style='color: Red'>ID为【" + ContractID.ToString() + "】的返利协议未能在系统中找到 </span> "); errcount++; } } else if (!ApproveID[i].Trim().Equals("") && !int.TryParse(ApproveID[i].Trim(), out ContractID)) { approvebuild.Append("<span style='color: Red'>【" + ContractID.ToString() + "】不是一个有效的返利协议ID </span> "); errcount++; } if (i % 5 == 0&&i!=0) approvebuild.Append("<br/>"); } lb_ApproveErrorInfo.Text = approvebuild.ToString(); } if (txt_UnApproveContractID.Text.Trim() != "") { string[] UnApproveID = Regex.Split(txt_UnApproveContractID.Text.Trim(), "\r\n", RegexOptions.IgnoreCase); CM_ContractBLL _bll; StringBuilder unapprovebuild = new StringBuilder(""); for (int i = 0; i < UnApproveID.Length; i++) { int ContractID; if (!UnApproveID[i].Trim().Equals("") && int.TryParse(UnApproveID[i].Trim(), out ContractID)) { _bll = new CM_ContractBLL(ContractID); if (_bll.Model != null) { int jobid = EWF_TaskBLL.StaffCanApproveTask(_bll.Model.ApproveTask, 7394); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide(7394); if (decisionid > 0) { UnApproveCount++; job.Decision(decisionid, (int)Session["UserID"], 3, "批量审批不通过!"); //3:审批不通过 unapprovebuild.Append("ID为【" + ContractID.ToString() + "】的返利协议审批未通过 "); } } } else { unapprovebuild.Append("<span style='color: Red'>ID为【" + ContractID.ToString() + "】的返利协议未到客服确认环节 </span>"); errcount++; } } else { errcount++; unapprovebuild.Append("<span style='color: Red'>ID为【" + ContractID.ToString() + "】的返利协议未能在系统中找到 </span>"); } } else if (!UnApproveID[i].Trim().Equals("") && !int.TryParse(UnApproveID[i].Trim(), out ContractID)) { unapprovebuild.Append("<span style='color: Red'>【" + ContractID.ToString() + "】不是一个有效的返利协议ID </span>"); errcount++; } if (i % 5 == 0 && i != 0) unapprovebuild.Append("<br/>"); } lb_UnApproveErrorInfo.Text = unapprovebuild.ToString(); } MessageBox.Show(this, "审批通过协议个数:" + ApproveCount.ToString() + @"\n审批未通过协议个数:" + UnApproveCount.ToString() + @"\n未能导入协议个数:" + errcount.ToString() ); return; }
private void DoApprove(bool ApproveFlag) { int month = int.Parse(ddl_Month.SelectedValue); int organizecity = int.Parse(tr_OrganizeCity.SelectValue); int state = 1; int RTChannel = 0; DataTable dtSummary = FNA_FeeApplyBLL.GetRTChannelFLFee (month, organizecity, state, int.Parse(Session["UserID"].ToString()), RTChannel); if (dtSummary != null) { string TaskColumnName = ""; foreach (DataColumn c in dtSummary.Columns) { if (c.ColumnName.EndsWith("→审批工作流")) { TaskColumnName = c.ColumnName; break; } } if (TaskColumnName == "") { MessageBox.Show(this, "未找到列名[审批工作流]的数据列!"); return; } IList<int> TaskIDs = new List<int>(); foreach (DataRow row in dtSummary.Rows) { int taskid = (int)row[TaskColumnName]; if (TaskIDs.Contains(taskid)) continue; TaskIDs.Add(taskid); int jobid = EWF_TaskBLL.StaffCanApproveTask(taskid, (int)Session["UserID"]); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid > 0) { if (ApproveFlag) job.Decision(decisionid, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 else job.Decision(decisionid, (int)Session["UserID"], 3, "汇总单批量审批不通过!"); //3:审批不通过 } } } } } BindGrid(); }
private void DoApprove(int State, string remark) { foreach (GridViewRow gr in gv_List.Rows) { if (((CheckBox)gr.FindControl("chk_ID")).Checked) { int taskid = (int)gv_List.DataKeys[gr.RowIndex][0]; if (taskid > 0) { int jobid = EWF_TaskBLL.StaffCanApproveTask(taskid, (int)Session["UserID"]); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid > 0) { if (State == 2) job.Decision(decisionid, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 else job.Decision(decisionid, (int)Session["UserID"], 3, "汇总单批量审批不通过!"); //3:审批不通过 } } } } } } BindGrid(); MessageBox.Show(this, "审批成功!"); }
private void DoApprove(bool ApproveFlag) { foreach (GridViewRow row in gv_Summary.Rows) { CheckBox cbx = (CheckBox)row.FindControl("cbx"); if (cbx != null && cbx.Checked) { string key = gv_Summary.DataKeys[row.RowIndex]["Key"].ToString(); string[] tasks = GetApproveTaskIDsByKey(key).Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); foreach (string taskid in tasks) { int jobid = EWF_TaskBLL.StaffCanApproveTask(int.Parse(taskid), (int)Session["UserID"]); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid > 0) { if (ApproveFlag) job.Decision(decisionid, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 else job.Decision(decisionid, (int)Session["UserID"], 3, "汇总单批量审批不通过!"); //3:审批不通过 } } } } } } }
private void Approve(int state) { int userid = (int)Session["UserID"]; foreach (GridViewRow row in gv_List.Rows) { Object cbx = row.FindControl("chk_ID"); if (cbx != null && ((CheckBox)cbx).Checked) { Object tbx = row.FindControl("tbx_Remark"); string Remark = ""; if (tbx != null && !string.IsNullOrEmpty(((TextBox)tbx).Text)) Remark = ((TextBox)tbx).Text; else Remark = state == 2 ? "汇总单批量审批通过!" : "汇总单批量审批不通过!"; int contractid = (int)gv_List.DataKeys[row.RowIndex]["ID"]; CM_ContractBLL con = new CM_ContractBLL(contractid); int taskid = con.Model.ApproveTask; if (taskid > 0) { int jobid = EWF_TaskBLL.StaffCanApproveTask(taskid, userid); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide(userid); if (decisionid > 0) job.Decision(decisionid, userid, state, Remark); } } } } } }
protected void gv_List_RowDeleting(object sender, GridViewDeleteEventArgs e) { #region 仅查看待我审批的费用申请单 string taskids = ""; if (ddl_State.SelectedValue == "1") { taskids = GetNeedMeApproveTaskIDs(); if (taskids == "") { MessageBox.Show(this, "对不起,没有需要待您审批的费用申请单!"); return; } } #endregion string[] TaskIDs = taskids.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); int organizecity = (int)gv_List.DataKeys[e.RowIndex]["ID"]; string condition = " FNA_FeeApply.State = 2 "; #region 组织明细记录的查询条件 //管理片区及所有下属管理片区 if (organizecity != 1) { Addr_OrganizeCityBLL orgcity = new Addr_OrganizeCityBLL(organizecity); string orgcitys = orgcity.GetAllChildNodeIDs(); if (orgcitys != "") { orgcitys += ","; } orgcitys += organizecity.ToString(); condition += " AND FNA_FeeApply.OrganizeCity IN (" + orgcitys + ")"; } //会计月条件 condition += " AND FNA_FeeApply.AccountMonth = " + ddl_Month.SelectedValue; //费用类型 if (ddl_FeeType.SelectedValue != "0") { condition += " AND FNA_FeeApply.FeeType = " + ddl_FeeType.SelectedValue; } #endregion IList <FNA_FeeApply> lists = FNA_FeeApplyBLL.GetModelList(condition); foreach (FNA_FeeApply fee in lists) { if (TaskIDs.Contains(fee.ApproveTask.ToString())) { int jobid = EWF_TaskBLL.StaffCanApproveTask(fee.ApproveTask, (int)Session["UserID"]); EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job.Model != null) { int decision = job.StaffCanDecide((int)Session["UserID"]); if (decision > 0) { job.Decision(decision, (int)Session["UserID"], 3, "汇总单批量未能审批通过!"); //3:审批未通过 } } } } BindGrid(); MessageBox.Show(this, "已成功将选择区域的申请单,设为批复未通过!"); }
//绑定基本信息 private void BindTaskData() { #region 绑定当前工作项 EWF_Task_JobBLL job = new EWF_Task_JobBLL((int)ViewState["CurrentJobID"]); int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid <= 0) { MessageBox.ShowAndRedirect(this, "对不起,你无权审批当前工作流申请!", "../desktop.aspx"); return; } ViewState["DecisionID"] = decisionid; ViewState["TaskID"] = job.Model.Task; //绑定当前审批人相关信息 EWF_Flow_Process _CurrentProcess = new EWF_Flow_ProcessBLL(job.Model.CurrentProcess).Model; lbl_CurrentJobName.Text = _CurrentProcess.Name; if (_CurrentProcess.Type == 10) { //人员会审环节 无待处理选项 btn_WaitProcess.Visible = false; } EWF_Task_JobDecisionBLL decision = new EWF_Task_JobDecisionBLL(decisionid); if (decision.Model.ReadFlag != "Y") { decision.SetReadFlag("Y"); } lb_DecisionComment.Text = decision.Model.DecisionComment; this.lbl_RecipientStaff.Text = new Org_StaffBLL(decision.Model.RecipientStaff).Model.RealName; this.lbl_RecipientTime.Text = DateTime.Now.ToString(); if (decision.Model.RecipientStaff != (int)Session["UserID"]) { ViewState["PrincipalStaff"] = lbl_RecipientStaff.Text; MessageBox.Show(this, "请注意,当前申请是由【" + lbl_RecipientStaff.Text + "】授权您来批复!"); } #endregion #region 绑定流程信息 EWF_TaskBLL task = new EWF_TaskBLL((int)ViewState["TaskID"]); if (task.Model.Status == 5) { Response.Redirect("TaskDetail.aspx?TaskID=" + task.Model.ID.ToString()); return; } ViewState["Initiator"] = task.Model.Initiator; //绑定流程信息 lbl_Applyer.Text = new Org_StaffBLL(task.Model.Initiator).Model.RealName; lbl_AppName.Text = new EWF_Flow_AppBLL(task.Model.App).Model.Name; lbl_Title.Text = task.Model.Title; hyl_RelateURL.NavigateUrl = task.Model.RelateURL; lb_Status.Text = DictionaryBLL.GetDicCollections("EWF_Task_TaskStatus")[task.Model.Status.ToString()].Name; lb_StartTime.Text = task.Model.StartTime.ToString(); if (task.Model.EndTime != new DateTime(1900, 1, 1)) { lb_EndTime.Text = task.Model.EndTime.ToString(); } else { lb_EndTime.Text = "未结束"; } lt_Remark.Text = task.Model.Remark; //显示申请详细信息IFrame if (!string.IsNullOrEmpty(task.Model.RelateURL)) { tr_RelateUrl.Visible = true; string url = this.ResolveClientUrl(task.Model.RelateURL); if (url.IndexOf('?') >= 0) { url += "&ViewFramework=false&Decision=Y"; } else { url += "?ViewFramework=false&Decision=Y"; } frame_relateurl.Attributes.Add("src", url); } else { tr_RelateUrl.Visible = false; } //Bind the dataobject info NameValueCollection dataobjects = task.GetDataObjectValue(); pl_dataobjectinfo.BindData(dataobjects); pl_dataobjectinfo.SetPanelEnable(false); TextBox tbx_ReMark = pl_dataobjectinfo.FindControl("C_Remark") != null ? (TextBox)pl_dataobjectinfo.FindControl("C_Remark") : null; if (tbx_ReMark != null) { tbx_ReMark.Enabled = true; tbx_ReMark.ReadOnly = true; } //绑定审批历史 this.gv_List_DecisionHistory.DataSource = task.GetDecisionHistory(); this.gv_List_DecisionHistory.DataBind(); //绑定附件 gv_List_Attachment.BindGrid <EWF_Task_Attachment>(task.GetAttachmentsList()); #endregion ddl_App.SelectedValue = task.Model.App.ToString(); ViewState["PageIndex"] = 0; BindGrid_OtherTask(); BindGrid_InviteConsult(); }
protected void DoApprove(bool ApproveFlag) { #region 仅查看待我审批的工资申请单 string taskids = ""; if (ddl_State.SelectedValue == "1") { taskids = GetNeedMeApproveTaskIDs(); if (taskids == "") { MessageBox.Show(this, "对不起,没有需要待您审批的费用申请单!"); return; } } #endregion string[] TaskIDs = taskids.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); int organizecity = int.Parse(tr_OrganizeCity.SelectValue); string condition = " PM_Salary.State = 2 "; #region 组织明细记录的查询条件 //管理片区及所有下属管理片区 if (organizecity != 1) { Addr_OrganizeCityBLL orgcity = new Addr_OrganizeCityBLL(organizecity); string orgcitys = orgcity.GetAllChildNodeIDs(); if (orgcitys != "") { orgcitys += ","; } orgcitys += organizecity.ToString(); condition += " AND PM_Salary.OrganizeCity IN (" + orgcitys + ")"; } if (ddl_SalaryClassify.SelectedValue != "0") { condition += "AND MCS_SYS.dbo.UF_Spilt2('MCS_Promotor.dbo.PM_Salary',PM_Salary.ExtPropertys,'PMClassfiy')=" + ddl_SalaryClassify.SelectedValue; } //会计月条件 condition += " AND PM_Salary.AccountMonth = " + ddl_Month.SelectedValue; IList <PM_Salary> lists = PM_SalaryBLL.GetModelList(condition); #endregion foreach (PM_Salary salary in lists) { if (TaskIDs.Contains(salary["TaskID"])) { int jobid = EWF_TaskBLL.StaffCanApproveTask(int.Parse(salary["TaskID"]), (int)Session["UserID"]); EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job.Model != null) { int decision = job.StaffCanDecide((int)Session["UserID"]); if (decision > 0) { if (ApproveFlag) { job.Decision(decision, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 } else { job.Decision(decision, (int)Session["UserID"], 3, "汇总单批量未能审批通过!"); //3:审批未通过 } } } } } BindGrid(); MessageBox.Show(this, ApproveFlag ? "审批成功!" : "已成功将选择区域的申请单,设为批复未通过!"); return; }
private int DoApproveTask(int TaskID, int DessionResult, string DessionComment) { if (TaskID > 0) { int jobid = EWF_TaskBLL.StaffCanApproveTask(TaskID, (int)Session["UserID"]); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid > 0) { return job.Decision(decisionid, (int)Session["UserID"], DessionResult, DessionComment); } } } } return -1; }
protected void DoApprove(bool ApproveFlag) { #region 仅查看待我审批的工资申请单 string taskids = ""; if (ddl_State.SelectedValue == "1") { taskids = GetNeedMeApproveTaskIDs(); if (taskids == "") { MessageBox.Show(this, "对不起,没有需要待您审批的费用申请单!"); return; } } #endregion string[] TaskIDs = taskids.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); int organizecity = int.Parse(tr_OrganizeCity.SelectValue); string condition = " PM_Salary.State = 2 "; #region 组织明细记录的查询条件 //管理片区及所有下属管理片区 if (organizecity != 1) { Addr_OrganizeCityBLL orgcity = new Addr_OrganizeCityBLL(organizecity); string orgcitys = orgcity.GetAllChildNodeIDs(); if (orgcitys != "") orgcitys += ","; orgcitys += organizecity.ToString(); condition += " AND PM_Salary.OrganizeCity IN (" + orgcitys + ")"; } if (ddl_SalaryClassify.SelectedValue != "0") { condition += "AND MCS_SYS.dbo.UF_Spilt2('MCS_Promotor.dbo.PM_Salary',PM_Salary.ExtPropertys,'PMClassfiy')=" + ddl_SalaryClassify.SelectedValue; } //会计月条件 condition += " AND PM_Salary.AccountMonth = " + ddl_Month.SelectedValue; IList<PM_Salary> lists = PM_SalaryBLL.GetModelList(condition); #endregion foreach (PM_Salary salary in lists) { if (TaskIDs.Contains(salary["TaskID"])) { int jobid = EWF_TaskBLL.StaffCanApproveTask(int.Parse(salary["TaskID"]), (int)Session["UserID"]); EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job.Model != null) { int decision = job.StaffCanDecide((int)Session["UserID"]); if (decision > 0) { if (ApproveFlag) { job.Decision(decision, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 } else { job.Decision(decision, (int)Session["UserID"], 3, "汇总单批量未能审批通过!"); //3:审批未通过 } } } } } BindGrid(); MessageBox.Show(this, ApproveFlag ? "审批成功!" : "已成功将选择区域的申请单,设为批复未通过!"); return; }
protected void bt_OK_Click(object sender, EventArgs e) { int ApproveCount = 0, UnApproveCount = 0, errcount = 0; if (txt_UnApproveContractID.Text.Trim() != "") { string[] UnApproveID = Regex.Split(txt_UnApproveContractID.Text.Trim(), "\r\n", RegexOptions.IgnoreCase); if (txt_ApproveContractID.Text.Trim() != "") { string[] ApproveID = Regex.Split(txt_ApproveContractID.Text.Trim(), "\r\n", RegexOptions.IgnoreCase); foreach (string contractid in UnApproveID) { if (ApproveID.Contains(contractid)) { MessageBox.Show(this, "ID为【" + contractid + "】的返利协议同时出现在了【审批通过】与【审批不通过】编辑框中!"); return; } } } } if (txt_ApproveContractID.Text.Trim() != "") { string[] ApproveID = Regex.Split(txt_ApproveContractID.Text.Trim(), "\r\n", RegexOptions.IgnoreCase); CM_ContractBLL _bll; StringBuilder approvebuild = new StringBuilder(""); for (int i = 0; i < ApproveID.Length; i++) { int ContractID; if (!ApproveID[i].Trim().Equals("") && int.TryParse(ApproveID[i].Trim(), out ContractID)) { _bll = new CM_ContractBLL(ContractID); if (_bll.Model != null) { int jobid = EWF_TaskBLL.StaffCanApproveTask(_bll.Model.ApproveTask, 7394); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide(7394); if (decisionid > 0) { ApproveCount++; job.Decision(decisionid, (int)Session["UserID"], 2, "批量审批通过!"); //2:审批已通过 approvebuild.Append("ID为【" + ContractID.ToString() + "】的返利协议审批通过 "); } } } else { approvebuild.Append("<span style='color: Red'>ID为【" + ContractID.ToString() + "】的返利协议未到客服确认环节 </span>"); errcount++; } } else { approvebuild.Append("<span style='color: Red'>ID为【" + ContractID.ToString() + "】的返利协议未能在系统中找到 </span> "); errcount++; } } else if (!ApproveID[i].Trim().Equals("") && !int.TryParse(ApproveID[i].Trim(), out ContractID)) { approvebuild.Append("<span style='color: Red'>【" + ContractID.ToString() + "】不是一个有效的返利协议ID </span> "); errcount++; } if (i % 5 == 0 && i != 0) { approvebuild.Append("<br/>"); } } lb_ApproveErrorInfo.Text = approvebuild.ToString(); } if (txt_UnApproveContractID.Text.Trim() != "") { string[] UnApproveID = Regex.Split(txt_UnApproveContractID.Text.Trim(), "\r\n", RegexOptions.IgnoreCase); CM_ContractBLL _bll; StringBuilder unapprovebuild = new StringBuilder(""); for (int i = 0; i < UnApproveID.Length; i++) { int ContractID; if (!UnApproveID[i].Trim().Equals("") && int.TryParse(UnApproveID[i].Trim(), out ContractID)) { _bll = new CM_ContractBLL(ContractID); if (_bll.Model != null) { int jobid = EWF_TaskBLL.StaffCanApproveTask(_bll.Model.ApproveTask, 7394); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide(7394); if (decisionid > 0) { UnApproveCount++; job.Decision(decisionid, (int)Session["UserID"], 3, "批量审批不通过!"); //3:审批不通过 unapprovebuild.Append("ID为【" + ContractID.ToString() + "】的返利协议审批未通过 "); } } } else { unapprovebuild.Append("<span style='color: Red'>ID为【" + ContractID.ToString() + "】的返利协议未到客服确认环节 </span>"); errcount++; } } else { errcount++; unapprovebuild.Append("<span style='color: Red'>ID为【" + ContractID.ToString() + "】的返利协议未能在系统中找到 </span>"); } } else if (!UnApproveID[i].Trim().Equals("") && !int.TryParse(UnApproveID[i].Trim(), out ContractID)) { unapprovebuild.Append("<span style='color: Red'>【" + ContractID.ToString() + "】不是一个有效的返利协议ID </span>"); errcount++; } if (i % 5 == 0 && i != 0) { unapprovebuild.Append("<br/>"); } } lb_UnApproveErrorInfo.Text = unapprovebuild.ToString(); } MessageBox.Show(this, "审批通过协议个数:" + ApproveCount.ToString() + @"\n审批未通过协议个数:" + UnApproveCount.ToString() + @"\n未能导入协议个数:" + errcount.ToString()); return; }
protected int DoApprove(int OrganizeCity, bool ApproveFlag) { int month = int.Parse(ddl_Month.SelectedValue); int state = 1; //待我审批 int RTChannel = 0; //所有渠道 DataTable dtSummary = FNA_FeeApplyBLL.GetRTChannelDiaplayFee (month, OrganizeCity, state, int.Parse(Session["UserID"].ToString()), RTChannel); int counts = 0; if (dtSummary != null) { string TaskColumnName = ""; foreach (DataColumn c in dtSummary.Columns) { if (c.ColumnName.EndsWith("→审批工作流")) { TaskColumnName = c.ColumnName; break; } } if (TaskColumnName == "") { MessageBox.Show(this, "未找到列名[审批工作流]的数据列!"); return(-1); } IList <int> TaskIDs = new List <int>(); foreach (DataRow row in dtSummary.Rows) { int taskid = (int)row[TaskColumnName]; if (TaskIDs.Contains(taskid)) { continue; } TaskIDs.Add(taskid); int jobid = EWF_TaskBLL.StaffCanApproveTask(taskid, (int)Session["UserID"]); if (jobid > 0) { EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job != null) { int decisionid = job.StaffCanDecide((int)Session["UserID"]); if (decisionid > 0) { if (ApproveFlag) { job.Decision(decisionid, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 } else { job.Decision(decisionid, (int)Session["UserID"], 3, "汇总单批量审批不通过!"); //3:审批不通过 } counts++; } } } } } return(counts); }
protected void gv_List_SelectedIndexChanging(object sender, GridViewSelectEventArgs e) { #region 仅查看待我审批的费用申请单 string taskids = ""; if (ddl_State.SelectedValue == "1") { taskids = GetNeedMeApproveTaskIDs(); if (taskids == "") { MessageBox.Show(this, "对不起,没有需要待您审批的费用申请单!"); return; } } #endregion string[] TaskIDs = taskids.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); int organizecity = (int)gv_List.DataKeys[e.NewSelectedIndex]["ID"]; string condition = " FNA_FeeApply.State = 2 "; #region 组织明细记录的查询条件 //管理片区及所有下属管理片区 if (organizecity != 1) { Addr_OrganizeCityBLL orgcity = new Addr_OrganizeCityBLL(organizecity); string orgcitys = orgcity.GetAllChildNodeIDs(); if (orgcitys != "") orgcitys += ","; orgcitys += organizecity.ToString(); condition += " AND FNA_FeeApply.OrganizeCity IN (" + orgcitys + ")"; } //会计月条件 condition += " AND FNA_FeeApply.AccountMonth = " + ddl_Month.SelectedValue; //费用类型 if (ddl_FeeType.SelectedValue != "0") { condition += " AND FNA_FeeApply.FeeType = " + ddl_FeeType.SelectedValue; } #endregion IList<FNA_FeeApply> lists = FNA_FeeApplyBLL.GetModelList(condition); foreach (FNA_FeeApply fee in lists) { if (TaskIDs.Contains(fee.ApproveTask.ToString())) { int jobid = EWF_TaskBLL.StaffCanApproveTask(fee.ApproveTask, (int)Session["UserID"]); EWF_Task_JobBLL job = new EWF_Task_JobBLL(jobid); if (job.Model != null) { int decision = job.StaffCanDecide((int)Session["UserID"]); if (decision > 0) job.Decision(decision, (int)Session["UserID"], 2, "汇总单批量审批通过!"); //2:审批已通过 } } } BindGrid(); MessageBox.Show(this, "审批成功!"); }