protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { string redirectUrl = "#"; int mid =0; if (string.IsNullOrEmpty(Request.QueryString["mid"]) || !int.TryParse(Request.QueryString["mid"], out mid) || mid <= 0) Response.Redirect(redirectUrl); NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; NFMT.Common.ResultModel result = new NFMT.Common.ResultModel(); //获取模板 NFMT.WorkFlow.BLL.FlowMasterBLL fowMasterBLL = new NFMT.WorkFlow.BLL.FlowMasterBLL(); result = fowMasterBLL.Get(user, mid); if (result.ResultStatus != 0) Response.Redirect(redirectUrl); NFMT.WorkFlow.Model.FlowMaster flowMaster = result.ReturnValue as NFMT.WorkFlow.Model.FlowMaster; //模板标题 if (flowMaster != null) this.curTitle = flowMaster.ViewTitle; //模板内容 } }
public NFMT.Common.ResultModel Submit(UserModel user, IModel obj, ITaskProvider taskProvider, MasterEnum masterEnum) { ResultModel result = new ResultModel(); //提交审核 NFMT.WorkFlow.BLL.FlowMasterBLL flowMasterBLL = new NFMT.WorkFlow.BLL.FlowMasterBLL(); result = flowMasterBLL.Get(user, (int)masterEnum); if (result.ResultStatus != 0) return result; NFMT.WorkFlow.Model.FlowMaster flowMaster = result.ReturnValue as NFMT.WorkFlow.Model.FlowMaster; NFMT.WorkFlow.Model.DataSource source = new NFMT.WorkFlow.Model.DataSource() { BaseName = obj.DataBaseName, TableCode = obj.TableName, DataStatus = NFMT.Common.StatusEnum.待审核, RowId = obj.Id, ViewUrl = flowMaster.ViewUrl, EmpId = user.EmpId, ApplyTime = DateTime.Now, ApplyTitle = string.Empty, ApplyMemo = string.Empty, ApplyInfo = string.Empty, ConditionUrl = flowMaster.ConditionUrl, RefusalUrl = flowMaster.RefusalUrl, SuccessUrl = flowMaster.SuccessUrl, DalName = obj.DalName, AssName = obj.AssName }; result = taskProvider.Create(user,obj); if (result.ResultStatus != 0) return result; NFMT.WorkFlow.Model.Task task = result.ReturnValue as NFMT.WorkFlow.Model.Task; if (task == null) { result.ResultStatus = -1; result.Message = "创建任务失败"; return result; } task.MasterId = flowMaster.MasterId; NFMT.WorkFlow.FlowOperate flowOperate = new NFMT.WorkFlow.FlowOperate(); result = flowOperate.AuditAndCreateTask(user, obj, flowMaster, source, task); return result; }
public void ProcessRequest(HttpContext context) { NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; context.Response.ContentType = "text/plain"; int masterId = 0; if (string.IsNullOrEmpty(context.Request.Form["masterId"]) || !int.TryParse(context.Request.Form["masterId"], out masterId) || masterId <= 0) { context.Response.Write("流程模版序号错误"); context.Response.End(); } int id = 0; if (string.IsNullOrEmpty(context.Request.Form["id"]) || !int.TryParse(context.Request.Form["id"], out id) || id <= 0) { context.Response.Write("序号错误"); context.Response.End(); } NFMT.User.BLL.BlocBLL blocBLL = new NFMT.User.BLL.BlocBLL(); NFMT.Common.ResultModel result = blocBLL.Get(user, id); if (result.ResultStatus != 0) { context.Response.Write(result.Message); context.Response.End(); } NFMT.User.Model.Bloc bloc = result.ReturnValue as NFMT.User.Model.Bloc; NFMT.WorkFlow.BLL.FlowMasterBLL flowMasterBLL = new NFMT.WorkFlow.BLL.FlowMasterBLL(); result = flowMasterBLL.Get(user, masterId); if (result.ResultStatus != 0) { context.Response.Write(result.Message); context.Response.End(); } NFMT.WorkFlow.Model.FlowMaster flowMaster = result.ReturnValue as NFMT.WorkFlow.Model.FlowMaster; NFMT.WorkFlow.Model.DataSource source = new NFMT.WorkFlow.Model.DataSource() { //DataBaseName = "NFMT_User", TableName = "dbo.Bloc", DataStatus = NFMT.Common.StatusEnum.待审核, RowId = id,//BlocId ViewUrl = flowMaster.ViewUrl, EmpId = user.EmpId, ApplyTime = DateTime.Now, ApplyTitle = string.Empty, ApplyMemo = string.Empty, ApplyInfo = string.Empty, RefusalUrl = flowMaster.RefusalUrl, SuccessUrl = flowMaster.SuccessUrl, DalName = string.IsNullOrEmpty(bloc.DalName) ? "NFMT.User.DAL.BlocDAL" : bloc.DalName, AssName = string.IsNullOrEmpty(bloc.AssName) ? "NFMT.User" : bloc.AssName }; NFMT.WorkFlow.Model.Task task = new NFMT.WorkFlow.Model.Task() { MasterId = masterId, TaskName = string.Format("{0} 审核", bloc.BlocName) }; result = blocBLL.Submit(user, new NFMT.User.Model.Bloc() { Id = id }); if (result.ResultStatus != 0) { context.Response.Write(result.Message); context.Response.End(); } //NFMT.WorkFlow.FlowOperate flowOperate = new NFMT.WorkFlow.FlowOperate(); //result = flowOperate.CreateTask(user, flowMaster, source, task); //if (result.ResultStatus == 0) //{ // context.Response.Write("提交审核成功"); //} //else //{ // context.Response.Write(result.Message); //} }
public void ProcessRequest(HttpContext context) { System.Web.Script.Serialization.JavaScriptSerializer serializer = new System.Web.Script.Serialization.JavaScriptSerializer(); NFMT.Common.UserModel user = Utility.UserUtility.CurrentUser; context.Response.ContentType = "text/plain"; int masterId = 0; if (string.IsNullOrEmpty(context.Request.Form["mid"]) || !int.TryParse(context.Request.Form["mid"], out masterId) || masterId <= 0) { context.Response.Write("流程模版序号错误"); context.Response.End(); } if (string.IsNullOrEmpty(context.Request.Form["model"])) { context.Response.Write("实体不可为空"); context.Response.End(); } string taskName = context.Request.Form["tname"]; if (string.IsNullOrEmpty(taskName)) { context.Response.Write("任务名称不可为空"); context.Response.End(); } string taskConnext = context.Request.Form["tConnext"]; if (string.IsNullOrEmpty(taskConnext)) { context.Response.Write("任务内容不可为空"); context.Response.End(); } var obj = serializer.Deserialize<NFMT.Common.AuditModel>(context.Request.Form["model"]); if (obj == null) { context.Response.Write("实体转换出错"); context.Response.End(); } //if (obj.Status != NFMT.Common.StatusEnum.已录入) //{ // context.Response.Write("非已录入状态下不能提交审核"); // context.Response.End(); //} NFMT.WorkFlow.BLL.FlowMasterBLL flowMasterBLL = new NFMT.WorkFlow.BLL.FlowMasterBLL(); NFMT.Common.ResultModel result = flowMasterBLL.Get(user, masterId); if (result.ResultStatus != 0) { context.Response.Write(result.Message); context.Response.End(); } NFMT.WorkFlow.Model.FlowMaster flowMaster = result.ReturnValue as NFMT.WorkFlow.Model.FlowMaster; NFMT.WorkFlow.Model.DataSource source = new NFMT.WorkFlow.Model.DataSource() { BaseName = obj.DataBaseName, TableCode = obj.TableName, DataStatus = NFMT.Common.StatusEnum.待审核, RowId = obj.Id, ViewUrl = flowMaster.ViewUrl, EmpId = user.EmpId, ApplyTime = DateTime.Now, ApplyTitle = string.Empty, ApplyMemo = string.Empty, ApplyInfo = string.Empty, ConditionUrl = flowMaster.ConditionUrl, RefusalUrl = flowMaster.RefusalUrl, SuccessUrl = flowMaster.SuccessUrl, DalName = obj.DalName, AssName = obj.AssName }; NFMT.WorkFlow.Model.Task task = new NFMT.WorkFlow.Model.Task() { MasterId = masterId, TaskName = taskName, TaskConnext = taskConnext }; NFMT.WorkFlow.FlowOperate flowOperate = new NFMT.WorkFlow.FlowOperate(); result = flowOperate.AuditAndCreateTask(user, obj, flowMaster, source, task); if (result.ResultStatus == 0) context.Response.Write("提交审核成功"); else context.Response.Write(result.Message); }
//提交审核 protected void Button1_Click(object sender, EventArgs e) { NFMT.WorkFlow.BLL.FlowMasterBLL flowMasterBLL = new NFMT.WorkFlow.BLL.FlowMasterBLL(); NFMT.WorkFlow.BLL.DataSourceBLL dataSourceBLL = new NFMT.WorkFlow.BLL.DataSourceBLL(); NFMT.WorkFlow.FlowOperate flowOperate = new NFMT.WorkFlow.FlowOperate(); NFMT.WorkFlow.Model.FlowMaster flowMaster = flowMasterBLL.Get(user, 8).ReturnValue as NFMT.WorkFlow.Model.FlowMaster; NFMT.WorkFlow.Model.DataSource source = new NFMT.WorkFlow.Model.DataSource() { //DataBaseName = "NFMT", TableName = "Area", DataStatus = NFMT.Common.StatusEnum.待审核, RowId = 1, ViewUrl = string.Empty, //TaskId = taskid, EmpId = 1, ApplyTime = DateTime.Now, ApplyTitle = string.Empty, ApplyMemo = string.Empty, ApplyInfo = string.Empty, RefusalUrl = string.Format("{0}WorkFlow/Handler/SuccessHandler.ashx",NFMT.Common.DefaultValue.NfmtSiteName), SuccessUrl = string.Format("{0}WorkFlow/Handler/SuccessHandler.ashx",NFMT.Common.DefaultValue.NfmtSiteName) }; //int taskid = Convert.ToInt32(flowOperate.CreateTask(user, flowMaster, source, new NFMT.WorkFlow.Model.Task() //{ // MasterId = 8, // TaskName = "区域审核", // TaskStatus = NFMT.Common.StatusEnum.待审核 //}).ReturnValue); }