From 61695afa95cbb7d5a703339b7a4951b8ed92c53e Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期二, 24 十月 2023 14:40:05 +0800
Subject: [PATCH] 修改短信格式
---
zhengcaioa/zhengcaioa/Controllers/WorkFlow/WorkFlowTaskController.cs | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 50 insertions(+), 0 deletions(-)
diff --git a/zhengcaioa/zhengcaioa/Controllers/WorkFlow/WorkFlowTaskController.cs b/zhengcaioa/zhengcaioa/Controllers/WorkFlow/WorkFlowTaskController.cs
index d26f9b2..387c288 100644
--- a/zhengcaioa/zhengcaioa/Controllers/WorkFlow/WorkFlowTaskController.cs
+++ b/zhengcaioa/zhengcaioa/Controllers/WorkFlow/WorkFlowTaskController.cs
@@ -159,5 +159,55 @@
return new JsonResult(_wfRunProcessService.SearchByPaging(search));
}
+
+
+ public IActionResult IndexGuanLi()
+ {
+ var curentuser = JsonConvert.DeserializeObject<PltUser>(HttpContext.Session.GetString("User"));
+ ViewData["curentuser"] = curentuser;
+ List<ActionEntity> actionlist = new List<ActionEntity>();
+ ActionEntity actionEntity = new ActionEntity();
+ actionEntity.OpenType = 0;
+ actionEntity.ActionUrl = "";
+ actionEntity.ActionFun = "Search";
+ actionEntity.PageIco = "fa fa-search";
+ actionEntity.ActionName = "鏌ヨ";
+ actionlist.Add(actionEntity);
+
+
+
+
+ ViewData["ActionInfo"] = actionlist;
+
+ ViewBag.Applytiye = _wfApplytypeService.GetList().Select(x => new { code = x.Applyno, label = x.Applytiye }).ToList();
+
+
+
+ return View();
+ }
+
+ public IActionResult GetListGuanLi(WfHistoryDTOSearch search)
+ {
+ var curentuser = JsonConvert.DeserializeObject<PltUser>(HttpContext.Session.GetString("User"));
+ ViewData["curentuser"] = curentuser;
+ //search.Creater = curentuser.Id;
+ //JsonResult jsonResult = new JsonResult(_liaotianService.SearchByPaging(search), new Newtonsoft.Json.Serialization.DefaultContractResolver());
+ return new JsonResult(_wfHistoryService.SearchByPagingGuanLi(search));
+ }
+
+
+ public IActionResult Del(string id)
+ {
+ var curentuser = JsonConvert.DeserializeObject<PltUser>(HttpContext.Session.GetString("User"));
+ ViewData["curentuser"] = curentuser;
+ ResultEntity resultEntity = new ResultEntity();
+ resultEntity.Result = false;
+
+
+ resultEntity = _wfRunProcessService.ModifyStatus(id, curentuser.Id);
+
+
+ return new JsonResult(resultEntity);
+ }
}
}
--
Gitblit v1.9.1