mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-18 04:33:27 +08:00
fix #IA9CGJ 流程详情里面没有已处理
This commit is contained in:
parent
763bd2ff1b
commit
c54fff5c34
@ -384,6 +384,8 @@ namespace OpenAuth.App
|
|||||||
flowInstance.MakerList = GetForkNodeMakers(wfruntime, wfruntime.currentNodeId);
|
flowInstance.MakerList = GetForkNodeMakers(wfruntime, wfruntime.currentNodeId);
|
||||||
AddTransHistory(wfruntime);
|
AddTransHistory(wfruntime);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
flowInstance.SchemeContent = JsonHelper.Instance.Serialize(wfruntime.ToSchemeObj());
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion 会签
|
#endregion 会签
|
||||||
@ -397,8 +399,6 @@ namespace OpenAuth.App
|
|||||||
|
|
||||||
#endregion 一般审核
|
#endregion 一般审核
|
||||||
|
|
||||||
flowInstance.SchemeContent = JsonHelper.Instance.Serialize(wfruntime.ToSchemeObj());
|
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(request.FrmData))
|
if (!string.IsNullOrEmpty(request.FrmData))
|
||||||
{
|
{
|
||||||
flowInstance.FrmData = request.FrmData;
|
flowInstance.FrmData = request.FrmData;
|
||||||
@ -467,6 +467,7 @@ namespace OpenAuth.App
|
|||||||
var content = $"{user.Account}-{DateTime.Now.ToString("yyyy-MM-dd HH:mm")}审批了【{wfruntime.currentNode.name}】" +
|
var content = $"{user.Account}-{DateTime.Now.ToString("yyyy-MM-dd HH:mm")}审批了【{wfruntime.currentNode.name}】" +
|
||||||
$"结果:{(tag.Taged == 1 ? "同意" : "不同意")},备注:{tag.Description}";
|
$"结果:{(tag.Taged == 1 ? "同意" : "不同意")},备注:{tag.Description}";
|
||||||
AddOperationHis(flowInstance.Id, tag, content);
|
AddOperationHis(flowInstance.Id, tag, content);
|
||||||
|
flowInstance.SchemeContent = JsonHelper.Instance.Serialize(wfruntime.ToSchemeObj());
|
||||||
|
|
||||||
//如果审批通过,且下一个审批人是自己,则自动审批
|
//如果审批通过,且下一个审批人是自己,则自动审批
|
||||||
if (tag.Taged == (int)TagState.Ok)
|
if (tag.Taged == (int)TagState.Ok)
|
||||||
|
Loading…
Reference in New Issue
Block a user