构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(45)-工作流设计-设计步骤 - ymnets - 博客园

来源: 构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(45)-工作流设计-设计步骤 – ymnets – 博客园

系列目录

步骤设计很重要,特别是规则的选择。

我这里分为几个规则

1.按自行选择(在起草时候自行选审批人,比较灵活)

2.按上级(无需指定,当时需要知道用户的上司是谁,可以在职位管理设置,或者在用户表直接设置)

3.按职位(选择职位,直接获得该职位的人员)

4.按部门(按部门,直接获得该部分的人员)

5.按人员(设置步骤时就指定人员)

以上用户必须和部门,职位,上级有所关联,只要做好一个其实全部都同理

表结构分析:Flow_FormStep中有IsAllCheck字段我设计这个的目的是批量审核,比如我选择了部门,那么这个步骤要全部门的人都审核通过才算通过否则其中一人审核即可

先创建一个新的表单,必须有新的表单才能设置步骤

OK,新建好表单的字段之后,就可以设置步骤了

步骤设置很简单,就是一个从表关系,对应了表单的ID。从表可以直接简单看出关系,但设计其实比较有复杂,当选择组织架构,按职位,按指定人。都必须弹出窗口来进行选择,所以还要设计多3个弹出窗口,我这里只设计按人员筛选为例,因为按人员之前在权限管理的角色组管理已经实现

我这里“又”设计成了一个手风琴,具体实现如下

新建步骤和修改步骤=设计步骤

核心Action

<div class="cnblogs_code_toolbar"><span class="cnblogs_code_copy"><a title="复制代码"><img src="http://www.mikel.cn/wp-content/uploads/2015/05/copycode.gif" alt="复制代码" /></a></span></div>
<pre>[SupportFilter(ActionName = "Edit")]
        public ActionResult EditStep(string id)
        {
            ViewBag.Perm = GetPermission();
            Flow_FormModel flowFormModel = m_BLL.GetById(id);
            List&lt;Flow_StepModel&gt; stepList = stepBLL.GetList(ref setNoPagerDescBySort, flowFormModel.Id);//获得全部步骤
            foreach (var r in stepList)//获取步骤下面的步骤规则
            {
                r.stepRuleList = GetStepRuleListByStepId(r.Id);
            }
            flowFormModel.stepList = stepList;//获取表单关联的步骤
            ViewBag.Form = flowFormModel;
            Flow_StepModel model = new Flow_StepModel();
            model.FormId = flowFormModel.Id;
            model.IsEditAttr = true;
            return View(model);
        }

     

        [HttpPost]
        [SupportFilter(ActionName = "Edit")]
        public JsonResult EditStep(Flow_StepModel model)
        {
            model.Id = ResultHelper.NewId;
            if (model != null &amp;&amp; ModelState.IsValid)
            {

                if (stepBLL.Create(ref errors, model))
                {
                    LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Name" + model.Name, "成功", "创建", "Flow_Step");
                    return Json(JsonHandler.CreateMessage(1, Suggestion.InsertSucceed, model.Id));
                }
                else
                {
                    string ErrorCol = errors.Error;
                    LogHandler.WriteServiceLog(GetUserId(), "Id" + model.Id + ",Name" + model.Name + "," + ErrorCol, "失败", "创建", "Flow_Step");
                    return Json(JsonHandler.CreateMessage(0, Suggestion.InsertFail + ErrorCol));
                }
            }
            else
            {
                return Json(JsonHandler.CreateMessage(0, Suggestion.InsertFail));
            }
        }

完整EditStep.cshtml代码

</pre>
<div class="cnblogs_code_toolbar"><span class="cnblogs_code_copy"><a title="复制代码"><img src="http://www.mikel.cn/wp-content/uploads/2015/05/copycode.gif" alt="复制代码" /></a></span></div>
<pre>@model App.Models.Flow.Flow_StepModel
@using App.Common;
@using App.Models.Flow;
@using App.Admin;
@using App.Models.Sys;
@{
    ViewBag.Title = "创建";
    Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
    List&lt;permModel&gt; perm = (List&lt;permModel&gt;)ViewBag.Perm;
    if (perm == null)
    {
        perm = new List&lt;permModel&gt;();
    }
    Flow_FormModel formModel = (Flow_FormModel)ViewBag.Form;
}
&lt;style&gt;
    .stepContent table td {
        padding: 3px;
    }

    .lineheight {
        line-height: 20px;
    }
&lt;/style&gt;
&lt;script type="text/javascript"&gt;
    $(function () {
        $(".icon-delete").click(function () {
            if ($(this).next("a").attr("class") == "accordion-collapse accordion-expand") {
                $(this).next("a").trigger("click");
            }
        });
        $("#FlowRule").change(function () {
            $("#Execution").val("");
            $("#ExecutionName").val("");
            if ($("#FlowRule").val() == "上级" || $("#FlowRule").val() == "自选") {
                $("#ruleExecution").hide();
            } else if ($("#FlowRule").val() == "职位") {
                $("#selExc").html("审批职位");
                $("#ruleExecution").show();
            }
            else if ($("#FlowRule").val() == "部门") {
                $("#selExc").html("审批部门");
                $("#ruleExecution").show();
            } else if ($("#FlowRule").val() == "人员") {
                $("#selExc").html("审批人员");
                $("#ruleExecution").show();
            }
        });
        $("#selExc").click(function () {
            var html = $("#selExc").html()
            if (html == "审批人员") {
                $("#modalwindow").html("&lt;iframe width='100%' height='100%' scrolling='no' frameborder='0'' src='/SysHelper/UserLookUp'&gt;&lt;/iframe&gt;");
                $("#modalwindow").window({ title: '选择人员', width: 620, height: 388, iconCls: 'icon-add' }).window('open');
            } else if (html == "审批职位") {
                $("#modalwindow").html("&lt;iframe width='100%' height='100%' scrolling='no' frameborder='0'' src='/SysHelper/PosMulLookUp'&gt;&lt;/iframe&gt;");
                $("#modalwindow").window({ title: '选择职位', width: 620, height: 388, iconCls: 'icon-add' }).window('open');
            } else if (html == "审批部门") {
                $("#modalwindow").html("&lt;iframe width='100%' height='100%' scrolling='no' frameborder='0'' src='/SysHelper/DepMulLookUp'&gt;&lt;/iframe&gt;");
                $("#modalwindow").window({ title: '选择部门', width: 320, height: 300, iconCls: 'icon-add' }).window('open');
            }
        });
    });

    var idx = @(formModel.stepList.Count());
    function Create() {
        if ($("form").valid()) {
            $.ajax({
                url: "@Url.Action("EditStep")",
                type: "Post",
                data: $("form").serialize(),
                dataType: "json",
                success: function (data) {
                    var stepId = data.value;
                    var currentIDX = idx + 1;
                    $('#stepList').accordion('add', {
                        title: '第 ' + (idx + 1) + ' 步',
                        iconCls: 'pic_244',
                        content: '&lt;div class="stepContent" style="padding:5px"&gt;&lt;table class="wid100f"&gt;&lt;tr&gt;&lt;td style="width:100px;" class="tr"&gt;步骤名称:&lt;/td&gt;&lt;td&gt;'+$("#Name").val()+'&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr"&gt;步骤说明:&lt;/td&gt;&lt;td&gt;'+$("#Remark").val()+'&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;',
                        tools: [{
                            iconCls: 'icon-delete',
                            handler: function (i) {
                                DeleteStep(stepId);
                            }
                        }]
                    });
                    idx++;
                    $("#Sort").val(idx);
                    $(".icon-delete").click(function () {
                        if ($(this).next("a").attr("class") == "accordion-collapse accordion-expand") {
                            $(this).next("a").trigger("click");
                        }
                    });
                }
            });
        }
    }
   
    function DeleteStep(stepId)
    {
        $.messager.confirm('提示', '你要删除当前步骤及条件吗?', function (r) {
            if (r) {
                $.post("@Url.Action("DeleteStep")?id=" + stepId, function (data) {//从数据库删除
                    if (data.type == 1)
                    {
                        var pp = $('#stepList').accordion('getSelected');
                        if (pp) {
                            var index = $('#stepList').accordion('getPanelIndex', pp)
                   
                            $('#stepList').accordion('remove', index);
                            idx--;
                            //删除后需要重新设置标题
                            $("#stepList .panel .panel-title").each(function (i) {
                                $(this).html('第 ' + (i + 1) + ' 步');
                            })
                        }
                        $.messageBox5s('提示', data.message);
                    }
                }, "json");
               
            }
        });
    }

    function SetSelResult(result,resultName)
    {
        
        $("#Execution").val(result);
        $("#ExecutionName").val(resultName);
    }
    function GetSelResult()
    {
        var arrayObj = new Array()
        arrayObj[0]= $("#Execution").val();
        arrayObj[1]= $("#ExecutionName").val();
        return arrayObj;
    }
    //ifram 返回
    function frameReturnByClose() {
        $("#modalwindow").window('close');
    }
&lt;/script&gt;
&lt;div id="modalwindow" class="easyui-window" data-options="modal:true,closed:true,minimizable:false,shadow:false"&gt;&lt;/div&gt;


&lt;table style="height: 393px;"&gt;
    &lt;tr&gt;
        &lt;td style="width: 480px; border-right: 1px #ccc solid; vertical-align: top"&gt;
            @using (Html.BeginForm())
            {
                @Html.HiddenFor(model =&gt; model.FormId)
                @Html.HiddenFor(model =&gt; model.Sort)
                &lt;table class="fromEditTable setTextWidth100" style="width: 100%"&gt;
                    &lt;tbody&gt;
                        &lt;tr&gt;
                            &lt;td style="width: 100px; text-align: right;"&gt;表单名称:
                            &lt;/td&gt;
                            &lt;td colspan="2"&gt;
                                @Html.DisplayFor(model =&gt; formModel.Name)
                            &lt;/td&gt;
                        &lt;/tr&gt;
                        &lt;tr&gt;
                            &lt;td style="width: 100px; text-align: right;"&gt;
                                @Html.LabelFor(model =&gt; model.Name):
                            &lt;/td&gt;
                            &lt;td&gt;
                                @Html.EditorFor(model =&gt; model.Name)
                            &lt;/td&gt;
                            &lt;td&gt;@Html.ValidationMessageFor(model =&gt; model.Name)&lt;/td&gt;
                        &lt;/tr&gt;
                        &lt;tr&gt;
                            &lt;td style="width: 100px; text-align: right;"&gt;
                                @Html.LabelFor(model =&gt; model.Remark):
                            &lt;/td&gt;
                            &lt;td colspan="2"&gt;
                                @Html.TextAreaFor(model =&gt; model.Remark, new { @style = "width:330px;height:50px" })
                            &lt;/td&gt;

                        &lt;/tr&gt;

                        &lt;tr&gt;
                            &lt;td style="width: 100px; text-align: right;"&gt;
                                @Html.LabelFor(model =&gt; model.FlowRule):
                            &lt;/td&gt;
                            &lt;td&gt;
                                &lt;select id="FlowRule" name="FlowRule"&gt;
                                    &lt;option value="自选"&gt;自行指定人&lt;/option&gt;
                                    &lt;option value="上级"&gt;按上级&lt;/option&gt;
                                    &lt;option value="职位"&gt;按职位&lt;/option&gt;
                                    &lt;option value="部门"&gt;按部门&lt;/option&gt;
                                    &lt;option value="人员"&gt;按人员&lt;/option&gt;
                                &lt;/select&gt;
                            &lt;/td&gt;
                            &lt;td&gt;@Html.ValidationMessageFor(model =&gt; model.FlowRule)&lt;/td&gt;
                        &lt;/tr&gt;
                        &lt;tr id="ruleExecution" style="display: none"&gt;
                            &lt;td style="width: 100px; text-align: right;"&gt;
                                @Html.LabelFor(model =&gt; model.Execution):
                            &lt;/td&gt;
                            &lt;td colspan="2"&gt;
                                @Html.HiddenFor(model =&gt; model.Execution)
                                &lt;input id="ExecutionName" disabled="disabled" type="text" style="width: 200px" /&gt;
                                &lt;a class="icon-add" id="selExc" href="#" &gt;&lt;/a&gt;
                            &lt;/td&gt;
                            &lt;td&gt;@Html.ValidationMessageFor(model =&gt; model.Execution)&lt;/td&gt;
                        &lt;/tr&gt;
                       
                        &lt;tr style="display:none"&gt;
                            &lt;td style="width: 100px; text-align: right;"&gt;
                                @Html.LabelFor(model =&gt; model.IsAllCheck):
                            &lt;/td&gt;
                            &lt;td colspan="2"&gt;
                                @Html.CheckBoxFor(model =&gt; model.IsAllCheck, new { @checked = "checked" })
                                &lt;span class="gray"&gt;当规则或者角色被选择为多人时候,是否启用多人审核才通过&lt;/span&gt;
                            &lt;/td&gt;

                        &lt;/tr&gt;

                        &lt;tr&gt;
                            &lt;td style="width: 100px; text-align: right;"&gt;
                                @Html.LabelFor(model =&gt; model.CompulsoryOver):
                            &lt;/td&gt;
                            &lt;td colspan="2"&gt;
                                @Html.CheckBoxFor(model =&gt; model.CompulsoryOver)
                                &lt;span class="gray"&gt;审核人是否可以强制完成整个流程&lt;/span&gt;
                            &lt;/td&gt;
                        &lt;/tr&gt;
                        &lt;tr&gt;
                            &lt;td style="width: 100px; text-align: right;"&gt;
                                @Html.LabelFor(model =&gt; model.IsEditAttr):
                            &lt;/td&gt;
                            &lt;td colspan="2"&gt;
                                @Html.CheckBoxFor(model =&gt; model.IsEditAttr)
                                &lt;span class="gray"&gt;审核者是否可以编辑发起者的附件&lt;/span&gt;
                            &lt;/td&gt;
                        &lt;/tr&gt;
                        &lt;tr&gt;
                            &lt;td style="width: 100px; text-align: right;"&gt;&lt;/td&gt;
                            &lt;td colspan="2"&gt;
                                &lt;a href="javascript:Create()" class="easyui-linkbutton" data-options="iconCls:'icon-add'"&gt;添加步骤&lt;/a&gt;
                            &lt;/td&gt;
                        &lt;/tr&gt;
                    &lt;/tbody&gt;
                &lt;/table&gt;
            }

        &lt;/td&gt;
        &lt;td style="width: 414px;"&gt;
            &lt;div id="stepList" class="easyui-accordion" data-options="animate:false" style="width: 414px; height: 393px; overflow-y: auto; border: 0px;"&gt;
                @for (int i = 0; i &lt; formModel.stepList.Count(); i++)
                {
                    &lt;div title="第 @(i + 1) 步" data-options="iconCls:'pic_244'
                        ,tools: [{
                            iconCls: 'icon-delete',
                            handler: function (i) {
                                 DeleteStep('@(@formModel.stepList[i].Id)');
                                
                            }
                        }]"&gt;
                        &lt;div class="stepContent" style="padding: 5px"&gt;
                            &lt;table class="wid100f"&gt;
                                &lt;tr&gt;
                                    &lt;td style="width: 100px;" class="tr"&gt;步骤名称:&lt;/td&gt;
                                    &lt;td&gt;@formModel.stepList[i].Name&lt;/td&gt;
                                &lt;/tr&gt;
                                &lt;tr&gt;
                                    &lt;td class="tr"&gt;步骤说明:&lt;/td&gt;
                                    &lt;td&gt;@formModel.stepList[i].Remark&lt;/td&gt;
                                &lt;/tr&gt;
                            &lt;/table&gt;
                         
                        &lt;/div&gt;
                    &lt;/div&gt;
                }
            
            &lt;/div&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;

代码分析,控制器中的删除,修改,直接复制代码生成器生成的即可。

ActionResult EditStep,返回Flow_Step模型的同时也返回了Flow_Form的模型。

我修改了Flow_FormModel,让他支持自己的从表关系,必须添加以下2段即可

public List<Flow_FormAttrModel> attrList { get; set; }
public List<Flow_StepModel> stepList { get; set; }

注:本节一点悬念和技术点都没有,就是一个主表和从表的关系,只不过我是换了另一种方式来显示罢了

 

作者:YmNets
出处:http://ymnets.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
赞(0) 打赏
分享到: 更多 (0)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏