| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace WebForm.Platform.WorkFlowDesigner
- {
- public partial class Open_List : Common.BasePage
- {
- protected RoadFlow.Platform.Users busers = new RoadFlow.Platform.Users();
- protected RoadFlow.Platform.Organize borg = new RoadFlow.Platform.Organize();
- protected RoadFlow.Platform.WorkFlow bwf = new RoadFlow.Platform.WorkFlow();
- protected IEnumerable<RoadFlow.Data.Model.WorkFlow> flows;
- protected string type = string.Empty;
- protected void Page_Load(object sender, EventArgs e)
- {
- type = Request.QueryString["typeid"];
- string name = string.Empty;
- if (IsPostBack)
- {
- name = Request.Form["flow_name"];
- }
- flows = bwf.GetAll().Where(p => p.Status != 4);
- if (!name.IsNullOrEmpty())
- {
- flows = flows.Where(p => p.Name.IndexOf(name) >= 0);
- }
- }
- }
- }
|