Exemplo n.º 1
0
        public void DoBeforeFlow(string formObj)
        {
            var queueList = GetFlowQueue(formObj);

            db.flow_applyEntryQueue.InsertAllOnSubmit(queueList);
            db.SubmitChanges();
        }
Exemplo n.º 2
0
        /// <summary>
        /// 在维修确认环节可以转移给其他维修工
        /// </summary>
        /// <param name="formJson"></param>
        public void ShouldTransferToOther(string formJson)
        {
            o = JObject.Parse(formJson);
            string sysNo = (string)o["sys_no"];
            string transferToRepairer = (string)o["transfer_to_repairer"];

            if (!string.IsNullOrEmpty(transferToRepairer))
            {
                try {
                    var applyEntry = db.flow_applyEntry.Where(a => a.flow_apply.sys_no == sysNo && a.step_name.Contains("维修处理")).OrderByDescending(a => a.step).First();
                    var toAddEntry = new flow_applyEntryQueue();
                    toAddEntry.auditors               = transferToRepairer;
                    toAddEntry.countersign            = false;
                    toAddEntry.flow_template_entry_id = applyEntry.flow_template_entry_id;
                    toAddEntry.step      = applyEntry.step + 1;
                    toAddEntry.step_name = "转移->维修处理";
                    toAddEntry.sys_no    = sysNo;
                    db.flow_applyEntryQueue.InsertOnSubmit(toAddEntry);
                    db.SubmitChanges();
                }
                catch (Exception ex) {
                    throw new Exception("转移给其他维修人员失败:" + ex.Message);
                }
            }
        }
Exemplo n.º 3
0
        public void CancelFlow(string sysNo, string cardNumber)
        {
            var apply = db.flow_apply.Where(f => f.sys_no == sysNo).FirstOrDefault();

            if (apply == null)
            {
                throw new Exception("流水单号不存在");
            }
            //if (apply.success == null) throw new Exception("此离职申请还未完结,不能作废");
            if (apply.success == false)
            {
                throw new Exception("此离职申请已被NG,不能作废");
            }

            apply.finish_date = DateTime.Now;
            apply.success     = false;

            db.flow_applyEntry.DeleteAllOnSubmit(apply.flow_applyEntry.Where(a => a.pass == null).ToList());

            db.flow_applyEntry.InsertOnSubmit(new flow_applyEntry()
            {
                flow_apply    = apply,
                auditors      = cardNumber,
                final_auditor = cardNumber,
                pass          = false,
                audit_time    = DateTime.Now,
                opinion       = "AH部作废",
                step          = 100,
                step_name     = "AH部"
            });
            db.SubmitChanges();
        }
Exemplo n.º 4
0
        public void CancelFlow(string sysNo, string cardNumber)
        {
            FlowDBDataContext db = new FlowDBDataContext();
            var apply            = db.flow_apply.Where(f => f.sys_no == sysNo).FirstOrDefault();

            if (apply == null)
            {
                throw new Exception("流水单号不存在");
            }
            if (apply.success == null)
            {
                throw new Exception("此申请还未完结,不能作废");
            }
            if (apply.success == false)
            {
                throw new Exception("此申请已被NG,不能作废");
            }

            apply.finish_date = DateTime.Now;
            apply.success     = false;
            db.flow_applyEntry.InsertOnSubmit(new flow_applyEntry()
            {
                flow_apply    = apply,
                auditors      = cardNumber,
                final_auditor = cardNumber,
                pass          = false,
                audit_time    = DateTime.Now,
                opinion       = "作废流程",
                step          = 100,
                step_name     = "申请人"
            });
            db.SubmitChanges();
        }
Exemplo n.º 5
0
        public void DoBeforeFlow(string formObj)
        {
            o = JObject.Parse(formObj);
            string chargerNum        = (string)o["charger_num"];
            string highestChargerNum = (string)o["highest_charger_num"];

            //如果提交流程后,没有主管或最高部门负责人的,表示是由上一节点指定下一节点的流程,不使用审核队列
            if (string.IsNullOrEmpty(chargerNum) && string.IsNullOrEmpty(highestChargerNum))
            {
                return;
            }

            //一开始的流程,由申请人指定所有审核人,启用审核队列
            var queue = GetFlowQueue(formObj);

            db.flow_applyEntryQueue.InsertAllOnSubmit(queue);
            db.SubmitChanges();
        }
Exemplo n.º 6
0
        public void DoBeforeFlow(string formObj)
        {
            o = JObject.Parse(formObj);
            string auditorQueues = (string)o["auditor_queues"];

            if (string.IsNullOrEmpty(auditorQueues))
            {
                //流程开始之前,先将审核人队列准备好
                var queue = GetALAuditQueue(formObj);
                db.flow_applyEntryQueue.InsertAllOnSubmit(queue);
                db.SubmitChanges();
            }
            else
            {
                List <flow_applyEntryQueue> list = JsonConvert.DeserializeObject <List <flow_applyEntryQueue> >(auditorQueues);
                db.flow_applyEntryQueue.InsertAllOnSubmit(list);
                db.SubmitChanges();
            }
        }
Exemplo n.º 7
0
        public string ReturnTo(string cardNumber, string sysNo, string currentStepName, string returnToStepName, string opinion = "")
        {
            //先验证
            var apply = db.flow_apply.Where(a => a.sys_no == sysNo).FirstOrDefault();

            if (apply == null)
            {
                throw new Exception("此流水号不存在");
            }
            if (apply.success != null)
            {
                throw new Exception("此流程已结束");
            }

            var applyEntrys           = apply.flow_applyEntry.ToList();
            var currentApplyEntry     = applyEntrys.Where(a => a.step_name == currentStepName && a.pass == null).FirstOrDefault();
            var returnToApplyEntry    = applyEntrys.Where(a => a.step_name == returnToStepName).OrderByDescending(a => a.step).FirstOrDefault();
            var templateEntrys        = apply.flow_template.flow_templateEntry.ToList();
            var currentTemplateEntry  = templateEntrys.Where(c => c.step_name == currentStepName).FirstOrDefault();
            var returnToTemplateEntry = templateEntrys.Where(c => c.step_name == returnToStepName).FirstOrDefault();

            if (currentApplyEntry == null)
            {
                throw new Exception("当前处理节点不是在批状态");
            }
            if (currentTemplateEntry == null)
            {
                throw new Exception("当前节点不存在于流程模板中");
            }
            if (currentTemplateEntry.countersign == true)
            {
                throw new Exception("当前属于会签节点,不能返回");
            }
            if (returnToTemplateEntry == null && !"申请人".Equals(returnToStepName))
            {
                throw new Exception("返回节点不存在于流程模板中");
            }
            if (returnToApplyEntry == null)
            {
                if ("申请人".Equals(returnToStepName))
                {
                    //返回给申请人,申请人不存在与流程模板中,需要特殊处理
                    returnToApplyEntry = new flow_applyEntry()
                    {
                        step          = 0,
                        step_name     = "申请人",
                        final_auditor = apply.create_user
                    };
                }
                else
                {
                    throw new Exception("返回节点不存在于流程中");
                }
            }

            //删除当前的流程队列
            db.flow_applyEntryQueue.DeleteAllOnSubmit(db.flow_applyEntryQueue.Where(f => f.sys_no == sysNo));

            //插入到流程队列
            int stepCount = 1; //统计插入的步数

            foreach (var te in applyEntrys.Where(t => t.step > returnToApplyEntry.step && t.step <= currentApplyEntry.step).OrderBy(t => t.step))
            {
                string auditors = "";
                var    temEntry = templateEntrys.Where(t => t.step_name == te.step_name).FirstOrDefault();
                //var appEntry = apply.flow_applyEntry.Where(f => f.step_name == te.step_name).OrderByDescending(f => f.step).FirstOrDefault();
                if (temEntry == null)
                {
                    continue;
                }

                if (temEntry.countersign == true)
                {
                    //会签
                    auditors = string.Join(";", applyEntrys.Where(f => f.step == te.step).Select(f => f.final_auditor ?? f.auditors).ToArray());
                }
                else
                {
                    auditors = te.final_auditor ?? te.auditors;
                }
                if (!string.IsNullOrEmpty(auditors))
                {
                    stepCount++;
                    db.flow_applyEntryQueue.InsertOnSubmit(new flow_applyEntryQueue()
                    {
                        sys_no                 = sysNo,
                        auditors               = auditors,
                        countersign            = temEntry.countersign,
                        flow_template_entry_id = te.flow_template_entry_id,
                        step      = currentApplyEntry.step + stepCount,
                        step_name = te.step_name
                    });
                }
            }

            //如果插入的步数大于模板中下一节点的步数,那么要更新流程模板的step值
            if (templateEntrys.Where(t => t.step > currentTemplateEntry.step && t.step <= currentApplyEntry.step + stepCount).Count() > 0)
            {
                foreach (var te in templateEntrys.Where(t => t.step > currentTemplateEntry.step))
                {
                    te.step = te.step + stepCount * 10;
                }
            }

            //更新当前节点状态
            currentApplyEntry.pass          = true;
            currentApplyEntry.opinion       = "返回到节点:" + returnToStepName + (string.IsNullOrEmpty(opinion) ? ("," + opinion) : "");
            currentApplyEntry.audit_time    = DateTime.Now;
            currentApplyEntry.final_auditor = cardNumber;

            //插入下一节点
            flow_applyEntry nextEntry = new flow_applyEntry();

            nextEntry.step               = currentApplyEntry.step + 1;
            nextEntry.step_name          = returnToStepName;
            nextEntry.flow_templateEntry = returnToTemplateEntry;
            nextEntry.apply_id           = apply.id;
            nextEntry.auditors           = returnToApplyEntry.final_auditor;
            db.flow_applyEntry.InsertOnSubmit(nextEntry);

            db.SubmitChanges();

            return(returnToApplyEntry.final_auditor);
        }