using System;
using System.Collections.Generic;
using System.Data;
using System.Web.Mvc;
using System.Web.UI.WebControls;
using Infrastructure;
using OpenAuth.App;
using OpenAuth.App.SSO;
using OpenAuth.Mvc.Controllers;
using OpenAuth.Repository.Domain;
namespace OpenAuth.Mvc.Areas.FlowManage.Controllers
{
///
/// 流程设计
/// 李玉宝新增于2017-01-12 19:41:56
///
public class FlowDesignController :BaseController
{
public WFSchemeService WfFlowInfoBll { get; set; }
#region 视图功能
///
/// 管理
///
///
[HttpGet]
public ActionResult Index()
{
return View();
}
///
/// 预览
///
///
[HttpGet]
public ActionResult PreviewIndex()
{
return View();
}
///
/// 表单
///
///
[HttpGet]
public ActionResult Form()
{
return View();
}
///
/// 节点设置
///
///
[HttpGet]
public ActionResult FlowNodeForm()
{
return View();
}
///
/// 连接线设置
///
///
[HttpGet]
public ActionResult FlowLineForm()
{
return View();
}
///
/// 流程创建
///
///
[HttpGet]
public ActionResult FlowSchemeBuider()
{
return View();
}
#endregion
#region 获取数据
///
/// 设置流程
///
/// 主键
///
[HttpGet]
public ActionResult GetFormJson(string keyValue)
{
var schemeinfo = WfFlowInfoBll.GetEntity(keyValue);
var schemecontent = WfFlowInfoBll.GetSchemeEntity(schemeinfo.Id, schemeinfo.SchemeVersion);
var JsonData = new
{
schemeinfo = schemeinfo,
schemecontent = schemecontent
};
return Content(JsonData.ToJson());
}
///
/// 获取工作流流程模板内容
///
///
///
///
[HttpGet]
public ActionResult GetSchemeContentJson(string keyValue, string SchemeVersion)
{
var schemecontent = WfFlowInfoBll.GetSchemeEntity(keyValue, SchemeVersion);
return Content(schemecontent.ToJson());
}
#endregion
#region 提交数据
///
/// 删除表单模板
///
/// 主键值
///
[HttpPost]
public string RemoveForm(string[] ids)
{
WfFlowInfoBll.RemoveForm(ids);
return Result.ToJson();
}
///
/// 保存用户表单(新增、修改)
///
/// 主键值
/// 用户实体
///
[HttpPost]
public string SaveForm(string keyValue, string InfoEntity, string ContentEntity, string shcemeAuthorizeData)
{
WFSchemeInfo entyity = InfoEntity.ToObject();
WFSchemeContent contententity = ContentEntity.ToObject();
WfFlowInfoBll.SaveForm(keyValue, entyity, contententity);
return Result.ToJson();
}
///
/// (启用、禁用)
///
/// 主键值
/// 状态:1-启动;0-禁用
///
[HttpPost]
public ActionResult SubmitUpdateState(string keyValue, int State)
{
WfFlowInfoBll.UpdateState(keyValue, State);
return Content("操作成功。");
}
public string Load(int pageCurrent = 1, int pageSize = 30)
{
return JsonHelper.Instance.Serialize(WfFlowInfoBll.Load(pageCurrent, pageSize));
}
#endregion
}
}